15ec532a9SColin Riley //===-- RenderScriptRuntime.cpp ---------------------------------*- C++ -*-===//
25ec532a9SColin Riley //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
65ec532a9SColin Riley //
75ec532a9SColin Riley //===----------------------------------------------------------------------===//
85ec532a9SColin Riley 
95ec532a9SColin Riley #include "RenderScriptRuntime.h"
1021fed052SAidan Dodds #include "RenderScriptScriptGroup.h"
115ec532a9SColin Riley 
12b3f7f69dSAidan Dodds #include "lldb/Breakpoint/StoppointCallbackContext.h"
135ec532a9SColin Riley #include "lldb/Core/Debugger.h"
1429cb868aSZachary Turner #include "lldb/Core/DumpDataExtractor.h"
155ec532a9SColin Riley #include "lldb/Core/PluginManager.h"
16b3f7f69dSAidan Dodds #include "lldb/Core/ValueObjectVariable.h"
178b244e21SEwan Crawford #include "lldb/DataFormatters/DumpValueObjectOptions.h"
18b3f7f69dSAidan Dodds #include "lldb/Expression/UserExpression.h"
193eb2b44dSZachary Turner #include "lldb/Host/OptionParser.h"
20a0f08674SEwan Crawford #include "lldb/Host/StringConvert.h"
21b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandInterpreter.h"
22b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandObjectMultiword.h"
23b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandReturnObject.h"
24b3f7f69dSAidan Dodds #include "lldb/Interpreter/Options.h"
2521fed052SAidan Dodds #include "lldb/Symbol/Function.h"
265ec532a9SColin Riley #include "lldb/Symbol/Symbol.h"
274640cde1SColin Riley #include "lldb/Symbol/Type.h"
28b3f7f69dSAidan Dodds #include "lldb/Symbol/VariableList.h"
295ec532a9SColin Riley #include "lldb/Target/Process.h"
30b3f7f69dSAidan Dodds #include "lldb/Target/RegisterContext.h"
3121fed052SAidan Dodds #include "lldb/Target/SectionLoadList.h"
325ec532a9SColin Riley #include "lldb/Target/Target.h"
33018f5a7eSEwan Crawford #include "lldb/Target/Thread.h"
34145d95c9SPavel Labath #include "lldb/Utility/Args.h"
35bf9a7730SZachary Turner #include "lldb/Utility/ConstString.h"
366f9e6901SZachary Turner #include "lldb/Utility/Log.h"
37d821c997SPavel Labath #include "lldb/Utility/RegisterValue.h"
38bf9a7730SZachary Turner #include "lldb/Utility/RegularExpression.h"
3997206d57SZachary Turner #include "lldb/Utility/Status.h"
405ec532a9SColin Riley 
41796ac80bSJonas Devlieghere #include "llvm/ADT/StringSwitch.h"
42796ac80bSJonas Devlieghere 
43796ac80bSJonas Devlieghere #include <memory>
44796ac80bSJonas Devlieghere 
455ec532a9SColin Riley using namespace lldb;
465ec532a9SColin Riley using namespace lldb_private;
4798156583SEwan Crawford using namespace lldb_renderscript;
485ec532a9SColin Riley 
4900f56eebSLuke Drummond #define FMT_COORD "(%" PRIu32 ", %" PRIu32 ", %" PRIu32 ")"
5000f56eebSLuke Drummond 
51056f6f18SAlex Langford char RenderScriptRuntime::ID = 0;
52056f6f18SAlex Langford 
53b9c1b51eSKate Stone namespace {
5478f339d1SEwan Crawford 
5578f339d1SEwan Crawford // The empirical_type adds a basic level of validation to arbitrary data
5680af0b9eSLuke Drummond // allowing us to track if data has been discovered and stored or not. An
5780af0b9eSLuke Drummond // empirical_type will be marked as valid only if it has been explicitly
58b9c1b51eSKate Stone // assigned to.
59b9c1b51eSKate Stone template <typename type_t> class empirical_type {
6078f339d1SEwan Crawford public:
6178f339d1SEwan Crawford   // Ctor. Contents is invalid when constructed.
62b3f7f69dSAidan Dodds   empirical_type() : valid(false) {}
6378f339d1SEwan Crawford 
6478f339d1SEwan Crawford   // Return true and copy contents to out if valid, else return false.
65b9c1b51eSKate Stone   bool get(type_t &out) const {
6678f339d1SEwan Crawford     if (valid)
6778f339d1SEwan Crawford       out = data;
6878f339d1SEwan Crawford     return valid;
6978f339d1SEwan Crawford   }
7078f339d1SEwan Crawford 
7178f339d1SEwan Crawford   // Return a pointer to the contents or nullptr if it was not valid.
72b9c1b51eSKate Stone   const type_t *get() const { return valid ? &data : nullptr; }
7378f339d1SEwan Crawford 
7478f339d1SEwan Crawford   // Assign data explicitly.
75b9c1b51eSKate Stone   void set(const type_t in) {
7678f339d1SEwan Crawford     data = in;
7778f339d1SEwan Crawford     valid = true;
7878f339d1SEwan Crawford   }
7978f339d1SEwan Crawford 
8078f339d1SEwan Crawford   // Mark contents as invalid.
81b9c1b51eSKate Stone   void invalidate() { valid = false; }
8278f339d1SEwan Crawford 
8378f339d1SEwan Crawford   // Returns true if this type contains valid data.
84b9c1b51eSKate Stone   bool isValid() const { return valid; }
8578f339d1SEwan Crawford 
8678f339d1SEwan Crawford   // Assignment operator.
87b9c1b51eSKate Stone   empirical_type<type_t> &operator=(const type_t in) {
8878f339d1SEwan Crawford     set(in);
8978f339d1SEwan Crawford     return *this;
9078f339d1SEwan Crawford   }
9178f339d1SEwan Crawford 
9278f339d1SEwan Crawford   // Dereference operator returns contents.
9378f339d1SEwan Crawford   // Warning: Will assert if not valid so use only when you know data is valid.
94b9c1b51eSKate Stone   const type_t &operator*() const {
9578f339d1SEwan Crawford     assert(valid);
9678f339d1SEwan Crawford     return data;
9778f339d1SEwan Crawford   }
9878f339d1SEwan Crawford 
9978f339d1SEwan Crawford protected:
10078f339d1SEwan Crawford   bool valid;
10178f339d1SEwan Crawford   type_t data;
10278f339d1SEwan Crawford };
10378f339d1SEwan Crawford 
104b9c1b51eSKate Stone // ArgItem is used by the GetArgs() function when reading function arguments
105b9c1b51eSKate Stone // from the target.
106b9c1b51eSKate Stone struct ArgItem {
107b9c1b51eSKate Stone   enum { ePointer, eInt32, eInt64, eLong, eBool } type;
108f4786785SAidan Dodds 
109f4786785SAidan Dodds   uint64_t value;
110f4786785SAidan Dodds 
111f4786785SAidan Dodds   explicit operator uint64_t() const { return value; }
112f4786785SAidan Dodds };
113f4786785SAidan Dodds 
114b9c1b51eSKate Stone // Context structure to be passed into GetArgsXXX(), argument reading functions
115b9c1b51eSKate Stone // below.
116b9c1b51eSKate Stone struct GetArgsCtx {
117f4786785SAidan Dodds   RegisterContext *reg_ctx;
118f4786785SAidan Dodds   Process *process;
119f4786785SAidan Dodds };
120f4786785SAidan Dodds 
121b9c1b51eSKate Stone bool GetArgsX86(const GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
122f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
123f4786785SAidan Dodds 
12497206d57SZachary Turner   Status err;
12567dc3e15SAidan Dodds 
126f4786785SAidan Dodds   // get the current stack pointer
127f4786785SAidan Dodds   uint64_t sp = ctx.reg_ctx->GetSP();
128f4786785SAidan Dodds 
129b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
130f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
131f4786785SAidan Dodds     // advance up the stack by one argument
132f4786785SAidan Dodds     sp += sizeof(uint32_t);
133f4786785SAidan Dodds     // get the argument type size
134f4786785SAidan Dodds     size_t arg_size = sizeof(uint32_t);
135f4786785SAidan Dodds     // read the argument from memory
136f4786785SAidan Dodds     arg.value = 0;
13797206d57SZachary Turner     Status err;
138b9c1b51eSKate Stone     size_t read =
13980af0b9eSLuke Drummond         ctx.process->ReadMemory(sp, &arg.value, sizeof(uint32_t), err);
14080af0b9eSLuke Drummond     if (read != arg_size || !err.Success()) {
14163e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64 " '%s'",
14280af0b9eSLuke Drummond                 __FUNCTION__, uint64_t(i), err.AsCString());
143f4786785SAidan Dodds       return false;
144f4786785SAidan Dodds     }
145f4786785SAidan Dodds   }
146f4786785SAidan Dodds   return true;
147f4786785SAidan Dodds }
148f4786785SAidan Dodds 
149b9c1b51eSKate Stone bool GetArgsX86_64(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
150f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
151f4786785SAidan Dodds 
152f4786785SAidan Dodds   // number of arguments passed in registers
15380af0b9eSLuke Drummond   static const uint32_t args_in_reg = 6;
154f4786785SAidan Dodds   // register passing order
15580af0b9eSLuke Drummond   static const std::array<const char *, args_in_reg> reg_names{
156b9c1b51eSKate Stone       {"rdi", "rsi", "rdx", "rcx", "r8", "r9"}};
157f4786785SAidan Dodds   // argument type to size mapping
1581ee07253SSaleem Abdulrasool   static const std::array<size_t, 5> arg_size{{
159f4786785SAidan Dodds       8, // ePointer,
160f4786785SAidan Dodds       4, // eInt32,
161f4786785SAidan Dodds       8, // eInt64,
162f4786785SAidan Dodds       8, // eLong,
163f4786785SAidan Dodds       4, // eBool,
1641ee07253SSaleem Abdulrasool   }};
165f4786785SAidan Dodds 
16697206d57SZachary Turner   Status err;
16717e07c0aSAidan Dodds 
168f4786785SAidan Dodds   // get the current stack pointer
169f4786785SAidan Dodds   uint64_t sp = ctx.reg_ctx->GetSP();
170f4786785SAidan Dodds   // step over the return address
171f4786785SAidan Dodds   sp += sizeof(uint64_t);
172f4786785SAidan Dodds 
173f4786785SAidan Dodds   // check the stack alignment was correct (16 byte aligned)
174b9c1b51eSKate Stone   if ((sp & 0xf) != 0x0) {
17563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - stack misaligned", __FUNCTION__);
176f4786785SAidan Dodds     return false;
177f4786785SAidan Dodds   }
178f4786785SAidan Dodds 
179f4786785SAidan Dodds   // find the start of arguments on the stack
180f4786785SAidan Dodds   uint64_t sp_offset = 0;
18180af0b9eSLuke Drummond   for (uint32_t i = args_in_reg; i < num_args; ++i) {
182f4786785SAidan Dodds     sp_offset += arg_size[arg_list[i].type];
183f4786785SAidan Dodds   }
184f4786785SAidan Dodds   // round up to multiple of 16
185f4786785SAidan Dodds   sp_offset = (sp_offset + 0xf) & 0xf;
186f4786785SAidan Dodds   sp += sp_offset;
187f4786785SAidan Dodds 
188b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
189f4786785SAidan Dodds     bool success = false;
190f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
191f4786785SAidan Dodds     // arguments passed in registers
19280af0b9eSLuke Drummond     if (i < args_in_reg) {
19380af0b9eSLuke Drummond       const RegisterInfo *reg =
19480af0b9eSLuke Drummond           ctx.reg_ctx->GetRegisterInfoByName(reg_names[i]);
19580af0b9eSLuke Drummond       RegisterValue reg_val;
19680af0b9eSLuke Drummond       if (ctx.reg_ctx->ReadRegister(reg, reg_val))
19780af0b9eSLuke Drummond         arg.value = reg_val.GetAsUInt64(0, &success);
198f4786785SAidan Dodds     }
199f4786785SAidan Dodds     // arguments passed on the stack
200b9c1b51eSKate Stone     else {
201f4786785SAidan Dodds       // get the argument type size
202f4786785SAidan Dodds       const size_t size = arg_size[arg_list[i].type];
203f4786785SAidan Dodds       // read the argument from memory
204f4786785SAidan Dodds       arg.value = 0;
205b9c1b51eSKate Stone       // note: due to little endian layout reading 4 or 8 bytes will give the
206b9c1b51eSKate Stone       // correct value.
20780af0b9eSLuke Drummond       size_t read = ctx.process->ReadMemory(sp, &arg.value, size, err);
20880af0b9eSLuke Drummond       success = (err.Success() && read == size);
209f4786785SAidan Dodds       // advance past this argument
210f4786785SAidan Dodds       sp -= size;
211f4786785SAidan Dodds     }
212f4786785SAidan Dodds     // fail if we couldn't read this argument
213b9c1b51eSKate Stone     if (!success) {
21463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64 ", reason: %s",
21580af0b9eSLuke Drummond                 __FUNCTION__, uint64_t(i), err.AsCString("n/a"));
216f4786785SAidan Dodds       return false;
217f4786785SAidan Dodds     }
218f4786785SAidan Dodds   }
219f4786785SAidan Dodds   return true;
220f4786785SAidan Dodds }
221f4786785SAidan Dodds 
222b9c1b51eSKate Stone bool GetArgsArm(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
223f4786785SAidan Dodds   // number of arguments passed in registers
22480af0b9eSLuke Drummond   static const uint32_t args_in_reg = 4;
225f4786785SAidan Dodds 
226f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
227f4786785SAidan Dodds 
22897206d57SZachary Turner   Status err;
22917e07c0aSAidan Dodds 
230f4786785SAidan Dodds   // get the current stack pointer
231f4786785SAidan Dodds   uint64_t sp = ctx.reg_ctx->GetSP();
232f4786785SAidan Dodds 
233b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
234f4786785SAidan Dodds     bool success = false;
235f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
236f4786785SAidan Dodds     // arguments passed in registers
23780af0b9eSLuke Drummond     if (i < args_in_reg) {
23880af0b9eSLuke Drummond       const RegisterInfo *reg = ctx.reg_ctx->GetRegisterInfoAtIndex(i);
23980af0b9eSLuke Drummond       RegisterValue reg_val;
24080af0b9eSLuke Drummond       if (ctx.reg_ctx->ReadRegister(reg, reg_val))
24180af0b9eSLuke Drummond         arg.value = reg_val.GetAsUInt32(0, &success);
242f4786785SAidan Dodds     }
243f4786785SAidan Dodds     // arguments passed on the stack
244b9c1b51eSKate Stone     else {
245f4786785SAidan Dodds       // get the argument type size
246f4786785SAidan Dodds       const size_t arg_size = sizeof(uint32_t);
247f4786785SAidan Dodds       // clear all 64bits
248f4786785SAidan Dodds       arg.value = 0;
249f4786785SAidan Dodds       // read this argument from memory
250b9c1b51eSKate Stone       size_t bytes_read =
25180af0b9eSLuke Drummond           ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
25280af0b9eSLuke Drummond       success = (err.Success() && bytes_read == arg_size);
253f4786785SAidan Dodds       // advance the stack pointer
254f4786785SAidan Dodds       sp += sizeof(uint32_t);
255f4786785SAidan Dodds     }
256f4786785SAidan Dodds     // fail if we couldn't read this argument
257b9c1b51eSKate Stone     if (!success) {
25863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64 ", reason: %s",
25980af0b9eSLuke Drummond                 __FUNCTION__, uint64_t(i), err.AsCString("n/a"));
260f4786785SAidan Dodds       return false;
261f4786785SAidan Dodds     }
262f4786785SAidan Dodds   }
263f4786785SAidan Dodds   return true;
264f4786785SAidan Dodds }
265f4786785SAidan Dodds 
266b9c1b51eSKate Stone bool GetArgsAarch64(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
267f4786785SAidan Dodds   // number of arguments passed in registers
26880af0b9eSLuke Drummond   static const uint32_t args_in_reg = 8;
269f4786785SAidan Dodds 
270f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
271f4786785SAidan Dodds 
272b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
273f4786785SAidan Dodds     bool success = false;
274f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
275f4786785SAidan Dodds     // arguments passed in registers
27680af0b9eSLuke Drummond     if (i < args_in_reg) {
27780af0b9eSLuke Drummond       const RegisterInfo *reg = ctx.reg_ctx->GetRegisterInfoAtIndex(i);
27880af0b9eSLuke Drummond       RegisterValue reg_val;
27980af0b9eSLuke Drummond       if (ctx.reg_ctx->ReadRegister(reg, reg_val))
28080af0b9eSLuke Drummond         arg.value = reg_val.GetAsUInt64(0, &success);
281f4786785SAidan Dodds     }
282f4786785SAidan Dodds     // arguments passed on the stack
283b9c1b51eSKate Stone     else {
28463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - reading arguments spilled to stack not implemented",
285b9c1b51eSKate Stone                 __FUNCTION__);
286f4786785SAidan Dodds     }
287f4786785SAidan Dodds     // fail if we couldn't read this argument
288b9c1b51eSKate Stone     if (!success) {
28963e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64, __FUNCTION__,
290f4786785SAidan Dodds                 uint64_t(i));
291f4786785SAidan Dodds       return false;
292f4786785SAidan Dodds     }
293f4786785SAidan Dodds   }
294f4786785SAidan Dodds   return true;
295f4786785SAidan Dodds }
296f4786785SAidan Dodds 
297b9c1b51eSKate Stone bool GetArgsMipsel(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
298f4786785SAidan Dodds   // number of arguments passed in registers
29980af0b9eSLuke Drummond   static const uint32_t args_in_reg = 4;
300f4786785SAidan Dodds   // register file offset to first argument
30180af0b9eSLuke Drummond   static const uint32_t reg_offset = 4;
302f4786785SAidan Dodds 
303f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
304f4786785SAidan Dodds 
30597206d57SZachary Turner   Status err;
30617e07c0aSAidan Dodds 
30705097246SAdrian Prantl   // find offset to arguments on the stack (+16 to skip over a0-a3 shadow
30805097246SAdrian Prantl   // space)
30917e07c0aSAidan Dodds   uint64_t sp = ctx.reg_ctx->GetSP() + 16;
31017e07c0aSAidan Dodds 
311b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
312f4786785SAidan Dodds     bool success = false;
313f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
314f4786785SAidan Dodds     // arguments passed in registers
31580af0b9eSLuke Drummond     if (i < args_in_reg) {
31680af0b9eSLuke Drummond       const RegisterInfo *reg =
31780af0b9eSLuke Drummond           ctx.reg_ctx->GetRegisterInfoAtIndex(i + reg_offset);
31880af0b9eSLuke Drummond       RegisterValue reg_val;
31980af0b9eSLuke Drummond       if (ctx.reg_ctx->ReadRegister(reg, reg_val))
32080af0b9eSLuke Drummond         arg.value = reg_val.GetAsUInt64(0, &success);
321f4786785SAidan Dodds     }
322f4786785SAidan Dodds     // arguments passed on the stack
323b9c1b51eSKate Stone     else {
3246dd4b579SAidan Dodds       const size_t arg_size = sizeof(uint32_t);
3256dd4b579SAidan Dodds       arg.value = 0;
326b9c1b51eSKate Stone       size_t bytes_read =
32780af0b9eSLuke Drummond           ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
32880af0b9eSLuke Drummond       success = (err.Success() && bytes_read == arg_size);
32967dc3e15SAidan Dodds       // advance the stack pointer
33067dc3e15SAidan Dodds       sp += arg_size;
331f4786785SAidan Dodds     }
332f4786785SAidan Dodds     // fail if we couldn't read this argument
333b9c1b51eSKate Stone     if (!success) {
33463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64 ", reason: %s",
33580af0b9eSLuke Drummond                 __FUNCTION__, uint64_t(i), err.AsCString("n/a"));
336f4786785SAidan Dodds       return false;
337f4786785SAidan Dodds     }
338f4786785SAidan Dodds   }
339f4786785SAidan Dodds   return true;
340f4786785SAidan Dodds }
341f4786785SAidan Dodds 
342b9c1b51eSKate Stone bool GetArgsMips64el(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args) {
343f4786785SAidan Dodds   // number of arguments passed in registers
34480af0b9eSLuke Drummond   static const uint32_t args_in_reg = 8;
345f4786785SAidan Dodds   // register file offset to first argument
34680af0b9eSLuke Drummond   static const uint32_t reg_offset = 4;
347f4786785SAidan Dodds 
348f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
349f4786785SAidan Dodds 
35097206d57SZachary Turner   Status err;
35117e07c0aSAidan Dodds 
352f4786785SAidan Dodds   // get the current stack pointer
353f4786785SAidan Dodds   uint64_t sp = ctx.reg_ctx->GetSP();
354f4786785SAidan Dodds 
355b9c1b51eSKate Stone   for (size_t i = 0; i < num_args; ++i) {
356f4786785SAidan Dodds     bool success = false;
357f4786785SAidan Dodds     ArgItem &arg = arg_list[i];
358f4786785SAidan Dodds     // arguments passed in registers
35980af0b9eSLuke Drummond     if (i < args_in_reg) {
36080af0b9eSLuke Drummond       const RegisterInfo *reg =
36180af0b9eSLuke Drummond           ctx.reg_ctx->GetRegisterInfoAtIndex(i + reg_offset);
36280af0b9eSLuke Drummond       RegisterValue reg_val;
36380af0b9eSLuke Drummond       if (ctx.reg_ctx->ReadRegister(reg, reg_val))
36480af0b9eSLuke Drummond         arg.value = reg_val.GetAsUInt64(0, &success);
365f4786785SAidan Dodds     }
366f4786785SAidan Dodds     // arguments passed on the stack
367b9c1b51eSKate Stone     else {
368f4786785SAidan Dodds       // get the argument type size
369f4786785SAidan Dodds       const size_t arg_size = sizeof(uint64_t);
370f4786785SAidan Dodds       // clear all 64bits
371f4786785SAidan Dodds       arg.value = 0;
372f4786785SAidan Dodds       // read this argument from memory
373b9c1b51eSKate Stone       size_t bytes_read =
37480af0b9eSLuke Drummond           ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
37580af0b9eSLuke Drummond       success = (err.Success() && bytes_read == arg_size);
376f4786785SAidan Dodds       // advance the stack pointer
377f4786785SAidan Dodds       sp += arg_size;
378f4786785SAidan Dodds     }
379f4786785SAidan Dodds     // fail if we couldn't read this argument
380b9c1b51eSKate Stone     if (!success) {
38163e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - error reading argument: %" PRIu64 ", reason: %s",
38280af0b9eSLuke Drummond                 __FUNCTION__, uint64_t(i), err.AsCString("n/a"));
383f4786785SAidan Dodds       return false;
384f4786785SAidan Dodds     }
385f4786785SAidan Dodds   }
386f4786785SAidan Dodds   return true;
387f4786785SAidan Dodds }
388f4786785SAidan Dodds 
38980af0b9eSLuke Drummond bool GetArgs(ExecutionContext &exe_ctx, ArgItem *arg_list, size_t num_args) {
390f4786785SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
391f4786785SAidan Dodds 
392f4786785SAidan Dodds   // verify that we have a target
39380af0b9eSLuke Drummond   if (!exe_ctx.GetTargetPtr()) {
39463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - invalid target", __FUNCTION__);
395f4786785SAidan Dodds     return false;
396f4786785SAidan Dodds   }
397f4786785SAidan Dodds 
39880af0b9eSLuke Drummond   GetArgsCtx ctx = {exe_ctx.GetRegisterContext(), exe_ctx.GetProcessPtr()};
399f4786785SAidan Dodds   assert(ctx.reg_ctx && ctx.process);
400f4786785SAidan Dodds 
401f4786785SAidan Dodds   // dispatch based on architecture
40280af0b9eSLuke Drummond   switch (exe_ctx.GetTargetPtr()->GetArchitecture().GetMachine()) {
403f4786785SAidan Dodds   case llvm::Triple::ArchType::x86:
404f4786785SAidan Dodds     return GetArgsX86(ctx, arg_list, num_args);
405f4786785SAidan Dodds 
406f4786785SAidan Dodds   case llvm::Triple::ArchType::x86_64:
407f4786785SAidan Dodds     return GetArgsX86_64(ctx, arg_list, num_args);
408f4786785SAidan Dodds 
409f4786785SAidan Dodds   case llvm::Triple::ArchType::arm:
410f4786785SAidan Dodds     return GetArgsArm(ctx, arg_list, num_args);
411f4786785SAidan Dodds 
412f4786785SAidan Dodds   case llvm::Triple::ArchType::aarch64:
413f4786785SAidan Dodds     return GetArgsAarch64(ctx, arg_list, num_args);
414f4786785SAidan Dodds 
415f4786785SAidan Dodds   case llvm::Triple::ArchType::mipsel:
416f4786785SAidan Dodds     return GetArgsMipsel(ctx, arg_list, num_args);
417f4786785SAidan Dodds 
418f4786785SAidan Dodds   case llvm::Triple::ArchType::mips64el:
419f4786785SAidan Dodds     return GetArgsMips64el(ctx, arg_list, num_args);
420f4786785SAidan Dodds 
421f4786785SAidan Dodds   default:
422f4786785SAidan Dodds     // unsupported architecture
423b9c1b51eSKate Stone     if (log) {
42463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - architecture not supported: '%s'", __FUNCTION__,
42580af0b9eSLuke Drummond                 exe_ctx.GetTargetRef().GetArchitecture().GetArchitectureName());
426f4786785SAidan Dodds     }
427f4786785SAidan Dodds     return false;
428f4786785SAidan Dodds   }
429f4786785SAidan Dodds }
43000f56eebSLuke Drummond 
431b3bbcb12SLuke Drummond bool IsRenderScriptScriptModule(ModuleSP module) {
432b3bbcb12SLuke Drummond   if (!module)
433b3bbcb12SLuke Drummond     return false;
434b3bbcb12SLuke Drummond   return module->FindFirstSymbolWithNameAndType(ConstString(".rs.info"),
435b3bbcb12SLuke Drummond                                                 eSymbolTypeData) != nullptr;
436b3bbcb12SLuke Drummond }
437b3bbcb12SLuke Drummond 
43800f56eebSLuke Drummond bool ParseCoordinate(llvm::StringRef coord_s, RSCoordinate &coord) {
43905097246SAdrian Prantl   // takes an argument of the form 'num[,num][,num]'. Where 'coord_s' is a
44005097246SAdrian Prantl   // comma separated 1,2 or 3-dimensional coordinate with the whitespace
44105097246SAdrian Prantl   // trimmed. Missing coordinates are defaulted to zero. If parsing of any
44205097246SAdrian Prantl   // elements fails the contents of &coord are undefined and `false` is
44305097246SAdrian Prantl   // returned, `true` otherwise
44400f56eebSLuke Drummond 
4453af3f1e8SJonas Devlieghere   llvm::SmallVector<llvm::StringRef, 4> matches;
44600f56eebSLuke Drummond 
447*f9d90bc5SJan Kratochvil   if (!RegularExpression("^([0-9]+),([0-9]+),([0-9]+)$")
448*f9d90bc5SJan Kratochvil            .Execute(coord_s, &matches) &&
449*f9d90bc5SJan Kratochvil       !RegularExpression("^([0-9]+),([0-9]+)$").Execute(coord_s, &matches) &&
450*f9d90bc5SJan Kratochvil       !RegularExpression("^([0-9]+)$").Execute(coord_s, &matches))
45100f56eebSLuke Drummond     return false;
45200f56eebSLuke Drummond 
4533af3f1e8SJonas Devlieghere   auto get_index = [&](size_t idx, uint32_t &i) -> bool {
45400f56eebSLuke Drummond     std::string group;
45500f56eebSLuke Drummond     errno = 0;
4563af3f1e8SJonas Devlieghere     if (idx + 1 < matches.size()) {
4573af3f1e8SJonas Devlieghere       return !llvm::StringRef(matches[idx + 1]).getAsInteger<uint32_t>(10, i);
4583af3f1e8SJonas Devlieghere     }
45900f56eebSLuke Drummond     return true;
46000f56eebSLuke Drummond   };
46100f56eebSLuke Drummond 
46200f56eebSLuke Drummond   return get_index(0, coord.x) && get_index(1, coord.y) &&
46300f56eebSLuke Drummond          get_index(2, coord.z);
46400f56eebSLuke Drummond }
46521fed052SAidan Dodds 
46621fed052SAidan Dodds bool SkipPrologue(lldb::ModuleSP &module, Address &addr) {
46721fed052SAidan Dodds   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
46821fed052SAidan Dodds   SymbolContext sc;
46921fed052SAidan Dodds   uint32_t resolved_flags =
47021fed052SAidan Dodds       module->ResolveSymbolContextForAddress(addr, eSymbolContextFunction, sc);
47121fed052SAidan Dodds   if (resolved_flags & eSymbolContextFunction) {
47221fed052SAidan Dodds     if (sc.function) {
47321fed052SAidan Dodds       const uint32_t offset = sc.function->GetPrologueByteSize();
47421fed052SAidan Dodds       ConstString name = sc.GetFunctionName();
47521fed052SAidan Dodds       if (offset)
47621fed052SAidan Dodds         addr.Slide(offset);
47763e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s: Prologue offset for %s is %" PRIu32, __FUNCTION__,
47821fed052SAidan Dodds                 name.AsCString(), offset);
47921fed052SAidan Dodds     }
48021fed052SAidan Dodds     return true;
48121fed052SAidan Dodds   } else
48221fed052SAidan Dodds     return false;
48321fed052SAidan Dodds }
484222b937cSEugene Zelenko } // anonymous namespace
48578f339d1SEwan Crawford 
486b9c1b51eSKate Stone // The ScriptDetails class collects data associated with a single script
487b9c1b51eSKate Stone // instance.
488b9c1b51eSKate Stone struct RenderScriptRuntime::ScriptDetails {
489222b937cSEugene Zelenko   ~ScriptDetails() = default;
49078f339d1SEwan Crawford 
491b9c1b51eSKate Stone   enum ScriptType { eScript, eScriptC };
49278f339d1SEwan Crawford 
49378f339d1SEwan Crawford   // The derived type of the script.
49478f339d1SEwan Crawford   empirical_type<ScriptType> type;
49578f339d1SEwan Crawford   // The name of the original source file.
49680af0b9eSLuke Drummond   empirical_type<std::string> res_name;
49778f339d1SEwan Crawford   // Path to script .so file on the device.
49880af0b9eSLuke Drummond   empirical_type<std::string> shared_lib;
49978f339d1SEwan Crawford   // Directory where kernel objects are cached on device.
50080af0b9eSLuke Drummond   empirical_type<std::string> cache_dir;
50178f339d1SEwan Crawford   // Pointer to the context which owns this script.
50278f339d1SEwan Crawford   empirical_type<lldb::addr_t> context;
50378f339d1SEwan Crawford   // Pointer to the script object itself.
50478f339d1SEwan Crawford   empirical_type<lldb::addr_t> script;
50578f339d1SEwan Crawford };
50678f339d1SEwan Crawford 
50780af0b9eSLuke Drummond // This Element class represents the Element object in RS, defining the type
50880af0b9eSLuke Drummond // associated with an Allocation.
509b9c1b51eSKate Stone struct RenderScriptRuntime::Element {
51015f2bd95SEwan Crawford   // Taken from rsDefines.h
511b9c1b51eSKate Stone   enum DataKind {
51215f2bd95SEwan Crawford     RS_KIND_USER,
51315f2bd95SEwan Crawford     RS_KIND_PIXEL_L = 7,
51415f2bd95SEwan Crawford     RS_KIND_PIXEL_A,
51515f2bd95SEwan Crawford     RS_KIND_PIXEL_LA,
51615f2bd95SEwan Crawford     RS_KIND_PIXEL_RGB,
51715f2bd95SEwan Crawford     RS_KIND_PIXEL_RGBA,
51815f2bd95SEwan Crawford     RS_KIND_PIXEL_DEPTH,
51915f2bd95SEwan Crawford     RS_KIND_PIXEL_YUV,
52015f2bd95SEwan Crawford     RS_KIND_INVALID = 100
52115f2bd95SEwan Crawford   };
52278f339d1SEwan Crawford 
52315f2bd95SEwan Crawford   // Taken from rsDefines.h
524b9c1b51eSKate Stone   enum DataType {
52515f2bd95SEwan Crawford     RS_TYPE_NONE = 0,
52615f2bd95SEwan Crawford     RS_TYPE_FLOAT_16,
52715f2bd95SEwan Crawford     RS_TYPE_FLOAT_32,
52815f2bd95SEwan Crawford     RS_TYPE_FLOAT_64,
52915f2bd95SEwan Crawford     RS_TYPE_SIGNED_8,
53015f2bd95SEwan Crawford     RS_TYPE_SIGNED_16,
53115f2bd95SEwan Crawford     RS_TYPE_SIGNED_32,
53215f2bd95SEwan Crawford     RS_TYPE_SIGNED_64,
53315f2bd95SEwan Crawford     RS_TYPE_UNSIGNED_8,
53415f2bd95SEwan Crawford     RS_TYPE_UNSIGNED_16,
53515f2bd95SEwan Crawford     RS_TYPE_UNSIGNED_32,
53615f2bd95SEwan Crawford     RS_TYPE_UNSIGNED_64,
5372e920715SEwan Crawford     RS_TYPE_BOOLEAN,
5382e920715SEwan Crawford 
5392e920715SEwan Crawford     RS_TYPE_UNSIGNED_5_6_5,
5402e920715SEwan Crawford     RS_TYPE_UNSIGNED_5_5_5_1,
5412e920715SEwan Crawford     RS_TYPE_UNSIGNED_4_4_4_4,
5422e920715SEwan Crawford 
5432e920715SEwan Crawford     RS_TYPE_MATRIX_4X4,
5442e920715SEwan Crawford     RS_TYPE_MATRIX_3X3,
5452e920715SEwan Crawford     RS_TYPE_MATRIX_2X2,
5462e920715SEwan Crawford 
5472e920715SEwan Crawford     RS_TYPE_ELEMENT = 1000,
5482e920715SEwan Crawford     RS_TYPE_TYPE,
5492e920715SEwan Crawford     RS_TYPE_ALLOCATION,
5502e920715SEwan Crawford     RS_TYPE_SAMPLER,
5512e920715SEwan Crawford     RS_TYPE_SCRIPT,
5522e920715SEwan Crawford     RS_TYPE_MESH,
5532e920715SEwan Crawford     RS_TYPE_PROGRAM_FRAGMENT,
5542e920715SEwan Crawford     RS_TYPE_PROGRAM_VERTEX,
5552e920715SEwan Crawford     RS_TYPE_PROGRAM_RASTER,
5562e920715SEwan Crawford     RS_TYPE_PROGRAM_STORE,
5572e920715SEwan Crawford     RS_TYPE_FONT,
5582e920715SEwan Crawford 
5592e920715SEwan Crawford     RS_TYPE_INVALID = 10000
56078f339d1SEwan Crawford   };
56178f339d1SEwan Crawford 
5628b244e21SEwan Crawford   std::vector<Element> children; // Child Element fields for structs
563b9c1b51eSKate Stone   empirical_type<lldb::addr_t>
564b9c1b51eSKate Stone       element_ptr; // Pointer to the RS Element of the Type
565b9c1b51eSKate Stone   empirical_type<DataType>
566b9c1b51eSKate Stone       type; // Type of each data pointer stored by the allocation
567b9c1b51eSKate Stone   empirical_type<DataKind>
568b9c1b51eSKate Stone       type_kind; // Defines pixel type if Allocation is created from an image
569b9c1b51eSKate Stone   empirical_type<uint32_t>
570b9c1b51eSKate Stone       type_vec_size; // Vector size of each data point, e.g '4' for uchar4
5718b244e21SEwan Crawford   empirical_type<uint32_t> field_count; // Number of Subelements
5728b244e21SEwan Crawford   empirical_type<uint32_t> datum_size;  // Size of a single Element with padding
5738b244e21SEwan Crawford   empirical_type<uint32_t> padding;     // Number of padding bytes
574b9c1b51eSKate Stone   empirical_type<uint32_t>
5754ebdee0aSBruce Mitchener       array_size;        // Number of items in array, only needed for structs
5768b244e21SEwan Crawford   ConstString type_name; // Name of type, only needed for structs
5778b244e21SEwan Crawford 
5780e4c4821SAdrian Prantl   static ConstString
579b3f7f69dSAidan Dodds   GetFallbackStructName(); // Print this as the type name of a struct Element
5808b244e21SEwan Crawford                            // If we can't resolve the actual struct name
5818b59062aSEwan Crawford 
58280af0b9eSLuke Drummond   bool ShouldRefresh() const {
5838b59062aSEwan Crawford     const bool valid_ptr = element_ptr.isValid() && *element_ptr.get() != 0x0;
584b9c1b51eSKate Stone     const bool valid_type =
585b9c1b51eSKate Stone         type.isValid() && type_vec_size.isValid() && type_kind.isValid();
5868b59062aSEwan Crawford     return !valid_ptr || !valid_type || !datum_size.isValid();
5878b59062aSEwan Crawford   }
5888b244e21SEwan Crawford };
5898b244e21SEwan Crawford 
5908b244e21SEwan Crawford // This AllocationDetails class collects data associated with a single
5918b244e21SEwan Crawford // allocation instance.
592b9c1b51eSKate Stone struct RenderScriptRuntime::AllocationDetails {
593b9c1b51eSKate Stone   struct Dimension {
59415f2bd95SEwan Crawford     uint32_t dim_1;
59515f2bd95SEwan Crawford     uint32_t dim_2;
59615f2bd95SEwan Crawford     uint32_t dim_3;
59780af0b9eSLuke Drummond     uint32_t cube_map;
59815f2bd95SEwan Crawford 
599b9c1b51eSKate Stone     Dimension() {
60015f2bd95SEwan Crawford       dim_1 = 0;
60115f2bd95SEwan Crawford       dim_2 = 0;
60215f2bd95SEwan Crawford       dim_3 = 0;
60380af0b9eSLuke Drummond       cube_map = 0;
60415f2bd95SEwan Crawford     }
60578f339d1SEwan Crawford   };
60678f339d1SEwan Crawford 
607b9c1b51eSKate Stone   // The FileHeader struct specifies the header we use for writing allocations
60880af0b9eSLuke Drummond   // to a binary file. Our format begins with the ASCII characters "RSAD",
60980af0b9eSLuke Drummond   // identifying the file as an allocation dump. Member variables dims and
61080af0b9eSLuke Drummond   // hdr_size are then written consecutively, immediately followed by an
61180af0b9eSLuke Drummond   // instance of the ElementHeader struct. Because Elements can contain
61280af0b9eSLuke Drummond   // subelements, there may be more than one instance of the ElementHeader
61380af0b9eSLuke Drummond   // struct. With this first instance being the root element, and the other
61480af0b9eSLuke Drummond   // instances being the root's descendants. To identify which instances are an
61505097246SAdrian Prantl   // ElementHeader's children, each struct is immediately followed by a
61605097246SAdrian Prantl   // sequence of consecutive offsets to the start of its child structs. These
61705097246SAdrian Prantl   // offsets are
61880af0b9eSLuke Drummond   // 4 bytes in size, and the 0 offset signifies no more children.
619b9c1b51eSKate Stone   struct FileHeader {
62055232f09SEwan Crawford     uint8_t ident[4];  // ASCII 'RSAD' identifying the file
62126e52a70SEwan Crawford     uint32_t dims[3];  // Dimensions
62226e52a70SEwan Crawford     uint16_t hdr_size; // Header size in bytes, including all element headers
62326e52a70SEwan Crawford   };
62426e52a70SEwan Crawford 
625b9c1b51eSKate Stone   struct ElementHeader {
62655232f09SEwan Crawford     uint16_t type;         // DataType enum
62755232f09SEwan Crawford     uint32_t kind;         // DataKind enum
62855232f09SEwan Crawford     uint32_t element_size; // Size of a single element, including padding
62926e52a70SEwan Crawford     uint16_t vector_size;  // Vector width
63026e52a70SEwan Crawford     uint32_t array_size;   // Number of elements in array
63155232f09SEwan Crawford   };
63255232f09SEwan Crawford 
63315f2bd95SEwan Crawford   // Monotonically increasing from 1
634b3f7f69dSAidan Dodds   static uint32_t ID;
63515f2bd95SEwan Crawford 
63605097246SAdrian Prantl   // Maps Allocation DataType enum and vector size to printable strings using
63705097246SAdrian Prantl   // mapping from RenderScript numerical types summary documentation
63815f2bd95SEwan Crawford   static const char *RsDataTypeToString[][4];
63915f2bd95SEwan Crawford 
64015f2bd95SEwan Crawford   // Maps Allocation DataKind enum to printable strings
64115f2bd95SEwan Crawford   static const char *RsDataKindToString[];
64215f2bd95SEwan Crawford 
643a0f08674SEwan Crawford   // Maps allocation types to format sizes for printing.
644b3f7f69dSAidan Dodds   static const uint32_t RSTypeToFormat[][3];
645a0f08674SEwan Crawford 
64615f2bd95SEwan Crawford   // Give each allocation an ID as a way
64715f2bd95SEwan Crawford   // for commands to reference it.
648b3f7f69dSAidan Dodds   const uint32_t id;
64915f2bd95SEwan Crawford 
65080af0b9eSLuke Drummond   // Allocation Element type
65180af0b9eSLuke Drummond   RenderScriptRuntime::Element element;
65280af0b9eSLuke Drummond   // Dimensions of the Allocation
65380af0b9eSLuke Drummond   empirical_type<Dimension> dimension;
65480af0b9eSLuke Drummond   // Pointer to address of the RS Allocation
65580af0b9eSLuke Drummond   empirical_type<lldb::addr_t> address;
65680af0b9eSLuke Drummond   // Pointer to the data held by the Allocation
65780af0b9eSLuke Drummond   empirical_type<lldb::addr_t> data_ptr;
65880af0b9eSLuke Drummond   // Pointer to the RS Type of the Allocation
65980af0b9eSLuke Drummond   empirical_type<lldb::addr_t> type_ptr;
66080af0b9eSLuke Drummond   // Pointer to the RS Context of the Allocation
66180af0b9eSLuke Drummond   empirical_type<lldb::addr_t> context;
66280af0b9eSLuke Drummond   // Size of the allocation
66380af0b9eSLuke Drummond   empirical_type<uint32_t> size;
66480af0b9eSLuke Drummond   // Stride between rows of the allocation
66580af0b9eSLuke Drummond   empirical_type<uint32_t> stride;
66615f2bd95SEwan Crawford 
66715f2bd95SEwan Crawford   // Give each allocation an id, so we can reference it in user commands.
668b3f7f69dSAidan Dodds   AllocationDetails() : id(ID++) {}
6698b59062aSEwan Crawford 
67080af0b9eSLuke Drummond   bool ShouldRefresh() const {
6718b59062aSEwan Crawford     bool valid_ptrs = data_ptr.isValid() && *data_ptr.get() != 0x0;
6728b59062aSEwan Crawford     valid_ptrs = valid_ptrs && type_ptr.isValid() && *type_ptr.get() != 0x0;
673b9c1b51eSKate Stone     return !valid_ptrs || !dimension.isValid() || !size.isValid() ||
67480af0b9eSLuke Drummond            element.ShouldRefresh();
6758b59062aSEwan Crawford   }
67615f2bd95SEwan Crawford };
67715f2bd95SEwan Crawford 
6780e4c4821SAdrian Prantl ConstString RenderScriptRuntime::Element::GetFallbackStructName() {
679fe06b5adSAdrian McCarthy   static const ConstString FallbackStructName("struct");
680fe06b5adSAdrian McCarthy   return FallbackStructName;
681fe06b5adSAdrian McCarthy }
6828b244e21SEwan Crawford 
683b3f7f69dSAidan Dodds uint32_t RenderScriptRuntime::AllocationDetails::ID = 1;
68415f2bd95SEwan Crawford 
685b3f7f69dSAidan Dodds const char *RenderScriptRuntime::AllocationDetails::RsDataKindToString[] = {
686b9c1b51eSKate Stone     "User",       "Undefined",   "Undefined", "Undefined",
687b9c1b51eSKate Stone     "Undefined",  "Undefined",   "Undefined", // Enum jumps from 0 to 7
688b3f7f69dSAidan Dodds     "L Pixel",    "A Pixel",     "LA Pixel",  "RGB Pixel",
689b3f7f69dSAidan Dodds     "RGBA Pixel", "Pixel Depth", "YUV Pixel"};
69015f2bd95SEwan Crawford 
691b3f7f69dSAidan Dodds const char *RenderScriptRuntime::AllocationDetails::RsDataTypeToString[][4] = {
69215f2bd95SEwan Crawford     {"None", "None", "None", "None"},
69315f2bd95SEwan Crawford     {"half", "half2", "half3", "half4"},
69415f2bd95SEwan Crawford     {"float", "float2", "float3", "float4"},
69515f2bd95SEwan Crawford     {"double", "double2", "double3", "double4"},
69615f2bd95SEwan Crawford     {"char", "char2", "char3", "char4"},
69715f2bd95SEwan Crawford     {"short", "short2", "short3", "short4"},
69815f2bd95SEwan Crawford     {"int", "int2", "int3", "int4"},
69915f2bd95SEwan Crawford     {"long", "long2", "long3", "long4"},
70015f2bd95SEwan Crawford     {"uchar", "uchar2", "uchar3", "uchar4"},
70115f2bd95SEwan Crawford     {"ushort", "ushort2", "ushort3", "ushort4"},
70215f2bd95SEwan Crawford     {"uint", "uint2", "uint3", "uint4"},
70315f2bd95SEwan Crawford     {"ulong", "ulong2", "ulong3", "ulong4"},
7042e920715SEwan Crawford     {"bool", "bool2", "bool3", "bool4"},
7052e920715SEwan Crawford     {"packed_565", "packed_565", "packed_565", "packed_565"},
7062e920715SEwan Crawford     {"packed_5551", "packed_5551", "packed_5551", "packed_5551"},
7072e920715SEwan Crawford     {"packed_4444", "packed_4444", "packed_4444", "packed_4444"},
7082e920715SEwan Crawford     {"rs_matrix4x4", "rs_matrix4x4", "rs_matrix4x4", "rs_matrix4x4"},
7092e920715SEwan Crawford     {"rs_matrix3x3", "rs_matrix3x3", "rs_matrix3x3", "rs_matrix3x3"},
7102e920715SEwan Crawford     {"rs_matrix2x2", "rs_matrix2x2", "rs_matrix2x2", "rs_matrix2x2"},
7112e920715SEwan Crawford 
7122e920715SEwan Crawford     // Handlers
7132e920715SEwan Crawford     {"RS Element", "RS Element", "RS Element", "RS Element"},
7142e920715SEwan Crawford     {"RS Type", "RS Type", "RS Type", "RS Type"},
7152e920715SEwan Crawford     {"RS Allocation", "RS Allocation", "RS Allocation", "RS Allocation"},
7162e920715SEwan Crawford     {"RS Sampler", "RS Sampler", "RS Sampler", "RS Sampler"},
7172e920715SEwan Crawford     {"RS Script", "RS Script", "RS Script", "RS Script"},
7182e920715SEwan Crawford 
7192e920715SEwan Crawford     // Deprecated
7202e920715SEwan Crawford     {"RS Mesh", "RS Mesh", "RS Mesh", "RS Mesh"},
721b9c1b51eSKate Stone     {"RS Program Fragment", "RS Program Fragment", "RS Program Fragment",
722b9c1b51eSKate Stone      "RS Program Fragment"},
723b9c1b51eSKate Stone     {"RS Program Vertex", "RS Program Vertex", "RS Program Vertex",
724b9c1b51eSKate Stone      "RS Program Vertex"},
725b9c1b51eSKate Stone     {"RS Program Raster", "RS Program Raster", "RS Program Raster",
726b9c1b51eSKate Stone      "RS Program Raster"},
727b9c1b51eSKate Stone     {"RS Program Store", "RS Program Store", "RS Program Store",
728b9c1b51eSKate Stone      "RS Program Store"},
729b3f7f69dSAidan Dodds     {"RS Font", "RS Font", "RS Font", "RS Font"}};
73078f339d1SEwan Crawford 
731a0f08674SEwan Crawford // Used as an index into the RSTypeToFormat array elements
732b9c1b51eSKate Stone enum TypeToFormatIndex { eFormatSingle = 0, eFormatVector, eElementSize };
733a0f08674SEwan Crawford 
734b9c1b51eSKate Stone // { format enum of single element, format enum of element vector, size of
735b9c1b51eSKate Stone // element}
736b3f7f69dSAidan Dodds const uint32_t RenderScriptRuntime::AllocationDetails::RSTypeToFormat[][3] = {
73780af0b9eSLuke Drummond     // RS_TYPE_NONE
73880af0b9eSLuke Drummond     {eFormatHex, eFormatHex, 1},
73980af0b9eSLuke Drummond     // RS_TYPE_FLOAT_16
74080af0b9eSLuke Drummond     {eFormatFloat, eFormatVectorOfFloat16, 2},
74180af0b9eSLuke Drummond     // RS_TYPE_FLOAT_32
74280af0b9eSLuke Drummond     {eFormatFloat, eFormatVectorOfFloat32, sizeof(float)},
74380af0b9eSLuke Drummond     // RS_TYPE_FLOAT_64
74480af0b9eSLuke Drummond     {eFormatFloat, eFormatVectorOfFloat64, sizeof(double)},
74580af0b9eSLuke Drummond     // RS_TYPE_SIGNED_8
74680af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfSInt8, sizeof(int8_t)},
74780af0b9eSLuke Drummond     // RS_TYPE_SIGNED_16
74880af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfSInt16, sizeof(int16_t)},
74980af0b9eSLuke Drummond     // RS_TYPE_SIGNED_32
75080af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfSInt32, sizeof(int32_t)},
75180af0b9eSLuke Drummond     // RS_TYPE_SIGNED_64
75280af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfSInt64, sizeof(int64_t)},
75380af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_8
75480af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfUInt8, sizeof(uint8_t)},
75580af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_16
75680af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfUInt16, sizeof(uint16_t)},
75780af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_32
75880af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfUInt32, sizeof(uint32_t)},
75980af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_64
76080af0b9eSLuke Drummond     {eFormatDecimal, eFormatVectorOfUInt64, sizeof(uint64_t)},
76180af0b9eSLuke Drummond     // RS_TYPE_BOOL
76280af0b9eSLuke Drummond     {eFormatBoolean, eFormatBoolean, 1},
76380af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_5_6_5
76480af0b9eSLuke Drummond     {eFormatHex, eFormatHex, sizeof(uint16_t)},
76580af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_5_5_5_1
76680af0b9eSLuke Drummond     {eFormatHex, eFormatHex, sizeof(uint16_t)},
76780af0b9eSLuke Drummond     // RS_TYPE_UNSIGNED_4_4_4_4
76880af0b9eSLuke Drummond     {eFormatHex, eFormatHex, sizeof(uint16_t)},
76980af0b9eSLuke Drummond     // RS_TYPE_MATRIX_4X4
77080af0b9eSLuke Drummond     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 16},
77180af0b9eSLuke Drummond     // RS_TYPE_MATRIX_3X3
77280af0b9eSLuke Drummond     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 9},
77380af0b9eSLuke Drummond     // RS_TYPE_MATRIX_2X2
77480af0b9eSLuke Drummond     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 4}};
775a0f08674SEwan Crawford 
7765ec532a9SColin Riley // Static Functions
7775ec532a9SColin Riley LanguageRuntime *
778b9c1b51eSKate Stone RenderScriptRuntime::CreateInstance(Process *process,
779b9c1b51eSKate Stone                                     lldb::LanguageType language) {
7805ec532a9SColin Riley 
7815ec532a9SColin Riley   if (language == eLanguageTypeExtRenderScript)
7825ec532a9SColin Riley     return new RenderScriptRuntime(process);
7835ec532a9SColin Riley   else
784b3f7f69dSAidan Dodds     return nullptr;
7855ec532a9SColin Riley }
7865ec532a9SColin Riley 
78780af0b9eSLuke Drummond // Callback with a module to search for matching symbols. We first check that
78880af0b9eSLuke Drummond // the module contains RS kernels. Then look for a symbol which matches our
78980af0b9eSLuke Drummond // kernel name. The breakpoint address is finally set using the address of this
79080af0b9eSLuke Drummond // symbol.
79198156583SEwan Crawford Searcher::CallbackReturn
792b9c1b51eSKate Stone RSBreakpointResolver::SearchCallback(SearchFilter &filter,
793b9c1b51eSKate Stone                                      SymbolContext &context, Address *, bool) {
79498156583SEwan Crawford   ModuleSP module = context.module_sp;
79598156583SEwan Crawford 
796b3bbcb12SLuke Drummond   if (!module || !IsRenderScriptScriptModule(module))
79798156583SEwan Crawford     return Searcher::eCallbackReturnContinue;
79898156583SEwan Crawford 
799b9c1b51eSKate Stone   // Attempt to set a breakpoint on the kernel name symbol within the module
80080af0b9eSLuke Drummond   // library. If it's not found, it's likely debug info is unavailable - try to
80180af0b9eSLuke Drummond   // set a breakpoint on <name>.expand.
802b9c1b51eSKate Stone   const Symbol *kernel_sym =
803b9c1b51eSKate Stone       module->FindFirstSymbolWithNameAndType(m_kernel_name, eSymbolTypeCode);
804b9c1b51eSKate Stone   if (!kernel_sym) {
80598156583SEwan Crawford     std::string kernel_name_expanded(m_kernel_name.AsCString());
80698156583SEwan Crawford     kernel_name_expanded.append(".expand");
807b9c1b51eSKate Stone     kernel_sym = module->FindFirstSymbolWithNameAndType(
808b9c1b51eSKate Stone         ConstString(kernel_name_expanded.c_str()), eSymbolTypeCode);
80998156583SEwan Crawford   }
81098156583SEwan Crawford 
811b9c1b51eSKate Stone   if (kernel_sym) {
81298156583SEwan Crawford     Address bp_addr = kernel_sym->GetAddress();
81398156583SEwan Crawford     if (filter.AddressPasses(bp_addr))
81498156583SEwan Crawford       m_breakpoint->AddLocation(bp_addr);
81598156583SEwan Crawford   }
81698156583SEwan Crawford 
81798156583SEwan Crawford   return Searcher::eCallbackReturnContinue;
81898156583SEwan Crawford }
81998156583SEwan Crawford 
820b3bbcb12SLuke Drummond Searcher::CallbackReturn
821b3bbcb12SLuke Drummond RSReduceBreakpointResolver::SearchCallback(lldb_private::SearchFilter &filter,
822b3bbcb12SLuke Drummond                                            lldb_private::SymbolContext &context,
823b3bbcb12SLuke Drummond                                            Address *, bool) {
824b3bbcb12SLuke Drummond   // We need to have access to the list of reductions currently parsed, as
82505097246SAdrian Prantl   // reduce names don't actually exist as symbols in a module. They are only
82605097246SAdrian Prantl   // identifiable by parsing the .rs.info packet, or finding the expand symbol.
82705097246SAdrian Prantl   // We therefore need access to the list of parsed rs modules to properly
82805097246SAdrian Prantl   // resolve reduction names.
829b3bbcb12SLuke Drummond   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
830b3bbcb12SLuke Drummond   ModuleSP module = context.module_sp;
831b3bbcb12SLuke Drummond 
832b3bbcb12SLuke Drummond   if (!module || !IsRenderScriptScriptModule(module))
833b3bbcb12SLuke Drummond     return Searcher::eCallbackReturnContinue;
834b3bbcb12SLuke Drummond 
835b3bbcb12SLuke Drummond   if (!m_rsmodules)
836b3bbcb12SLuke Drummond     return Searcher::eCallbackReturnContinue;
837b3bbcb12SLuke Drummond 
838b3bbcb12SLuke Drummond   for (const auto &module_desc : *m_rsmodules) {
839b3bbcb12SLuke Drummond     if (module_desc->m_module != module)
840b3bbcb12SLuke Drummond       continue;
841b3bbcb12SLuke Drummond 
842b3bbcb12SLuke Drummond     for (const auto &reduction : module_desc->m_reductions) {
843b3bbcb12SLuke Drummond       if (reduction.m_reduce_name != m_reduce_name)
844b3bbcb12SLuke Drummond         continue;
845b3bbcb12SLuke Drummond 
846b3bbcb12SLuke Drummond       std::array<std::pair<ConstString, int>, 5> funcs{
847b3bbcb12SLuke Drummond           {{reduction.m_init_name, eKernelTypeInit},
848b3bbcb12SLuke Drummond            {reduction.m_accum_name, eKernelTypeAccum},
849b3bbcb12SLuke Drummond            {reduction.m_comb_name, eKernelTypeComb},
850b3bbcb12SLuke Drummond            {reduction.m_outc_name, eKernelTypeOutC},
851b3bbcb12SLuke Drummond            {reduction.m_halter_name, eKernelTypeHalter}}};
852b3bbcb12SLuke Drummond 
853b3bbcb12SLuke Drummond       for (const auto &kernel : funcs) {
854b3bbcb12SLuke Drummond         // Skip constituent functions that don't match our spec
855b3bbcb12SLuke Drummond         if (!(m_kernel_types & kernel.second))
856b3bbcb12SLuke Drummond           continue;
857b3bbcb12SLuke Drummond 
858b3bbcb12SLuke Drummond         const auto kernel_name = kernel.first;
859b3bbcb12SLuke Drummond         const auto symbol = module->FindFirstSymbolWithNameAndType(
860b3bbcb12SLuke Drummond             kernel_name, eSymbolTypeCode);
861b3bbcb12SLuke Drummond         if (!symbol)
862b3bbcb12SLuke Drummond           continue;
863b3bbcb12SLuke Drummond 
864b3bbcb12SLuke Drummond         auto address = symbol->GetAddress();
865b3bbcb12SLuke Drummond         if (filter.AddressPasses(address)) {
866b3bbcb12SLuke Drummond           bool new_bp;
86781fc84faSLuke Drummond           if (!SkipPrologue(module, address)) {
86863e5fb76SJonas Devlieghere             LLDB_LOGF(log, "%s: Error trying to skip prologue", __FUNCTION__);
86981fc84faSLuke Drummond           }
870b3bbcb12SLuke Drummond           m_breakpoint->AddLocation(address, &new_bp);
87163e5fb76SJonas Devlieghere           LLDB_LOGF(log, "%s: %s reduction breakpoint on %s in %s",
87263e5fb76SJonas Devlieghere                     __FUNCTION__, new_bp ? "new" : "existing",
87363e5fb76SJonas Devlieghere                     kernel_name.GetCString(),
874b3bbcb12SLuke Drummond                     address.GetModule()->GetFileSpec().GetCString());
875b3bbcb12SLuke Drummond         }
876b3bbcb12SLuke Drummond       }
877b3bbcb12SLuke Drummond     }
878b3bbcb12SLuke Drummond   }
879b3bbcb12SLuke Drummond   return eCallbackReturnContinue;
880b3bbcb12SLuke Drummond }
881b3bbcb12SLuke Drummond 
88221fed052SAidan Dodds Searcher::CallbackReturn RSScriptGroupBreakpointResolver::SearchCallback(
88321fed052SAidan Dodds     SearchFilter &filter, SymbolContext &context, Address *addr,
88421fed052SAidan Dodds     bool containing) {
88521fed052SAidan Dodds 
88621fed052SAidan Dodds   if (!m_breakpoint)
88721fed052SAidan Dodds     return eCallbackReturnContinue;
88821fed052SAidan Dodds 
88921fed052SAidan Dodds   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_BREAKPOINTS));
89021fed052SAidan Dodds   ModuleSP &module = context.module_sp;
89121fed052SAidan Dodds 
89221fed052SAidan Dodds   if (!module || !IsRenderScriptScriptModule(module))
89321fed052SAidan Dodds     return Searcher::eCallbackReturnContinue;
89421fed052SAidan Dodds 
89521fed052SAidan Dodds   std::vector<std::string> names;
89621fed052SAidan Dodds   m_breakpoint->GetNames(names);
89721fed052SAidan Dodds   if (names.empty())
89821fed052SAidan Dodds     return eCallbackReturnContinue;
89921fed052SAidan Dodds 
90021fed052SAidan Dodds   for (auto &name : names) {
90121fed052SAidan Dodds     const RSScriptGroupDescriptorSP sg = FindScriptGroup(ConstString(name));
90221fed052SAidan Dodds     if (!sg) {
90363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s: could not find script group for %s", __FUNCTION__,
90421fed052SAidan Dodds                 name.c_str());
90521fed052SAidan Dodds       continue;
90621fed052SAidan Dodds     }
90721fed052SAidan Dodds 
90863e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s: Found ScriptGroup for %s", __FUNCTION__, name.c_str());
90921fed052SAidan Dodds 
91021fed052SAidan Dodds     for (const RSScriptGroupDescriptor::Kernel &k : sg->m_kernels) {
91121fed052SAidan Dodds       if (log) {
91263e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s: Adding breakpoint for %s", __FUNCTION__,
91321fed052SAidan Dodds                   k.m_name.AsCString());
91463e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s: Kernel address 0x%" PRIx64, __FUNCTION__, k.m_addr);
91521fed052SAidan Dodds       }
91621fed052SAidan Dodds 
91721fed052SAidan Dodds       const lldb_private::Symbol *sym =
91821fed052SAidan Dodds           module->FindFirstSymbolWithNameAndType(k.m_name, eSymbolTypeCode);
91921fed052SAidan Dodds       if (!sym) {
92063e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s: Unable to find symbol for %s", __FUNCTION__,
92121fed052SAidan Dodds                   k.m_name.AsCString());
92221fed052SAidan Dodds         continue;
92321fed052SAidan Dodds       }
92421fed052SAidan Dodds 
92521fed052SAidan Dodds       if (log) {
92663e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s: Found symbol name is %s", __FUNCTION__,
92721fed052SAidan Dodds                   sym->GetName().AsCString());
92821fed052SAidan Dodds       }
92921fed052SAidan Dodds 
93021fed052SAidan Dodds       auto address = sym->GetAddress();
93121fed052SAidan Dodds       if (!SkipPrologue(module, address)) {
93263e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s: Error trying to skip prologue", __FUNCTION__);
93321fed052SAidan Dodds       }
93421fed052SAidan Dodds 
93521fed052SAidan Dodds       bool new_bp;
93621fed052SAidan Dodds       m_breakpoint->AddLocation(address, &new_bp);
93721fed052SAidan Dodds 
93863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s: Placed %sbreakpoint on %s", __FUNCTION__,
93921fed052SAidan Dodds                 new_bp ? "new " : "", k.m_name.AsCString());
94021fed052SAidan Dodds 
94105097246SAdrian Prantl       // exit after placing the first breakpoint if we do not intend to stop on
94205097246SAdrian Prantl       // all kernels making up this script group
94321fed052SAidan Dodds       if (!m_stop_on_all)
94421fed052SAidan Dodds         break;
94521fed052SAidan Dodds     }
94621fed052SAidan Dodds   }
94721fed052SAidan Dodds 
94821fed052SAidan Dodds   return eCallbackReturnContinue;
94921fed052SAidan Dodds }
95021fed052SAidan Dodds 
951b9c1b51eSKate Stone void RenderScriptRuntime::Initialize() {
952b9c1b51eSKate Stone   PluginManager::RegisterPlugin(GetPluginNameStatic(),
953b9c1b51eSKate Stone                                 "RenderScript language support", CreateInstance,
954b3f7f69dSAidan Dodds                                 GetCommandObject);
9555ec532a9SColin Riley }
9565ec532a9SColin Riley 
957b9c1b51eSKate Stone void RenderScriptRuntime::Terminate() {
9585ec532a9SColin Riley   PluginManager::UnregisterPlugin(CreateInstance);
9595ec532a9SColin Riley }
9605ec532a9SColin Riley 
961b9c1b51eSKate Stone lldb_private::ConstString RenderScriptRuntime::GetPluginNameStatic() {
96280af0b9eSLuke Drummond   static ConstString plugin_name("renderscript");
96380af0b9eSLuke Drummond   return plugin_name;
9645ec532a9SColin Riley }
9655ec532a9SColin Riley 
966ef20b08fSColin Riley RenderScriptRuntime::ModuleKind
967b9c1b51eSKate Stone RenderScriptRuntime::GetModuleKind(const lldb::ModuleSP &module_sp) {
968b9c1b51eSKate Stone   if (module_sp) {
969b3bbcb12SLuke Drummond     if (IsRenderScriptScriptModule(module_sp))
970ef20b08fSColin Riley       return eModuleKindKernelObj;
9714640cde1SColin Riley 
9724640cde1SColin Riley     // Is this the main RS runtime library
9734640cde1SColin Riley     const ConstString rs_lib("libRS.so");
974b9c1b51eSKate Stone     if (module_sp->GetFileSpec().GetFilename() == rs_lib) {
9754640cde1SColin Riley       return eModuleKindLibRS;
9764640cde1SColin Riley     }
9774640cde1SColin Riley 
9784640cde1SColin Riley     const ConstString rs_driverlib("libRSDriver.so");
979b9c1b51eSKate Stone     if (module_sp->GetFileSpec().GetFilename() == rs_driverlib) {
9804640cde1SColin Riley       return eModuleKindDriver;
9814640cde1SColin Riley     }
9824640cde1SColin Riley 
98315f2bd95SEwan Crawford     const ConstString rs_cpureflib("libRSCpuRef.so");
984b9c1b51eSKate Stone     if (module_sp->GetFileSpec().GetFilename() == rs_cpureflib) {
9854640cde1SColin Riley       return eModuleKindImpl;
9864640cde1SColin Riley     }
987ef20b08fSColin Riley   }
988ef20b08fSColin Riley   return eModuleKindIgnored;
989ef20b08fSColin Riley }
990ef20b08fSColin Riley 
991b9c1b51eSKate Stone bool RenderScriptRuntime::IsRenderScriptModule(
992b9c1b51eSKate Stone     const lldb::ModuleSP &module_sp) {
993ef20b08fSColin Riley   return GetModuleKind(module_sp) != eModuleKindIgnored;
994ef20b08fSColin Riley }
995ef20b08fSColin Riley 
996b9c1b51eSKate Stone void RenderScriptRuntime::ModulesDidLoad(const ModuleList &module_list) {
997bb19a13cSSaleem Abdulrasool   std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex());
998ef20b08fSColin Riley 
999ef20b08fSColin Riley   size_t num_modules = module_list.GetSize();
1000b9c1b51eSKate Stone   for (size_t i = 0; i < num_modules; i++) {
1001ef20b08fSColin Riley     auto mod = module_list.GetModuleAtIndex(i);
1002b9c1b51eSKate Stone     if (IsRenderScriptModule(mod)) {
1003ef20b08fSColin Riley       LoadModule(mod);
1004ef20b08fSColin Riley     }
1005ef20b08fSColin Riley   }
1006ef20b08fSColin Riley }
1007ef20b08fSColin Riley 
10085ec532a9SColin Riley // PluginInterface protocol
1009b9c1b51eSKate Stone lldb_private::ConstString RenderScriptRuntime::GetPluginName() {
10105ec532a9SColin Riley   return GetPluginNameStatic();
10115ec532a9SColin Riley }
10125ec532a9SColin Riley 
1013b9c1b51eSKate Stone uint32_t RenderScriptRuntime::GetPluginVersion() { return 1; }
10145ec532a9SColin Riley 
1015b9c1b51eSKate Stone bool RenderScriptRuntime::GetDynamicTypeAndAddress(
1016b9c1b51eSKate Stone     ValueObject &in_value, lldb::DynamicValueType use_dynamic,
10175f57b6eeSEnrico Granata     TypeAndOrName &class_type_or_name, Address &address,
1018b9c1b51eSKate Stone     Value::ValueType &value_type) {
10195ec532a9SColin Riley   return false;
10205ec532a9SColin Riley }
10215ec532a9SColin Riley 
1022c74275bcSEnrico Granata TypeAndOrName
1023b9c1b51eSKate Stone RenderScriptRuntime::FixUpDynamicType(const TypeAndOrName &type_and_or_name,
1024b9c1b51eSKate Stone                                       ValueObject &static_value) {
1025c74275bcSEnrico Granata   return type_and_or_name;
1026c74275bcSEnrico Granata }
1027c74275bcSEnrico Granata 
1028b9c1b51eSKate Stone bool RenderScriptRuntime::CouldHaveDynamicValue(ValueObject &in_value) {
10295ec532a9SColin Riley   return false;
10305ec532a9SColin Riley }
10315ec532a9SColin Riley 
10325ec532a9SColin Riley lldb::BreakpointResolverSP
103380af0b9eSLuke Drummond RenderScriptRuntime::CreateExceptionResolver(Breakpoint *bp, bool catch_bp,
1034b9c1b51eSKate Stone                                              bool throw_bp) {
10355ec532a9SColin Riley   BreakpointResolverSP resolver_sp;
10365ec532a9SColin Riley   return resolver_sp;
10375ec532a9SColin Riley }
10385ec532a9SColin Riley 
1039b9c1b51eSKate Stone const RenderScriptRuntime::HookDefn RenderScriptRuntime::s_runtimeHookDefns[] =
1040b9c1b51eSKate Stone     {
10414640cde1SColin Riley         // rsdScript
1042b9c1b51eSKate Stone         {"rsdScriptInit", "_Z13rsdScriptInitPKN7android12renderscript7ContextEP"
1043b9c1b51eSKate Stone                           "NS0_7ScriptCEPKcS7_PKhjj",
1044b9c1b51eSKate Stone          "_Z13rsdScriptInitPKN7android12renderscript7ContextEPNS0_"
1045b9c1b51eSKate Stone          "7ScriptCEPKcS7_PKhmj",
1046b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver,
1047b9c1b51eSKate Stone          &lldb_private::RenderScriptRuntime::CaptureScriptInit},
1048b9c1b51eSKate Stone         {"rsdScriptInvokeForEachMulti",
1049b9c1b51eSKate Stone          "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0"
1050b9c1b51eSKate Stone          "_6ScriptEjPPKNS0_10AllocationEjPS6_PKvjPK12RsScriptCall",
1051b9c1b51eSKate Stone          "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0"
1052b9c1b51eSKate Stone          "_6ScriptEjPPKNS0_10AllocationEmPS6_PKvmPK12RsScriptCall",
1053b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver,
1054b9c1b51eSKate Stone          &lldb_private::RenderScriptRuntime::CaptureScriptInvokeForEachMulti},
1055b9c1b51eSKate Stone         {"rsdScriptSetGlobalVar", "_Z21rsdScriptSetGlobalVarPKN7android12render"
1056b9c1b51eSKate Stone                                   "script7ContextEPKNS0_6ScriptEjPvj",
1057b9c1b51eSKate Stone          "_Z21rsdScriptSetGlobalVarPKN7android12renderscript7ContextEPKNS0_"
1058b9c1b51eSKate Stone          "6ScriptEjPvm",
1059b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver,
1060b9c1b51eSKate Stone          &lldb_private::RenderScriptRuntime::CaptureSetGlobalVar},
10614640cde1SColin Riley 
10624640cde1SColin Riley         // rsdAllocation
1063b9c1b51eSKate Stone         {"rsdAllocationInit", "_Z17rsdAllocationInitPKN7android12renderscript7C"
1064b9c1b51eSKate Stone                               "ontextEPNS0_10AllocationEb",
1065b9c1b51eSKate Stone          "_Z17rsdAllocationInitPKN7android12renderscript7ContextEPNS0_"
1066b9c1b51eSKate Stone          "10AllocationEb",
1067b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver,
1068b9c1b51eSKate Stone          &lldb_private::RenderScriptRuntime::CaptureAllocationInit},
1069b9c1b51eSKate Stone         {"rsdAllocationRead2D",
1070b9c1b51eSKate Stone          "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_"
1071b9c1b51eSKate Stone          "10AllocationEjjj23RsAllocationCubemapFacejjPvjj",
1072b9c1b51eSKate Stone          "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_"
1073b9c1b51eSKate Stone          "10AllocationEjjj23RsAllocationCubemapFacejjPvmm",
1074b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver, nullptr},
1075b9c1b51eSKate Stone         {"rsdAllocationDestroy", "_Z20rsdAllocationDestroyPKN7android12rendersc"
1076b9c1b51eSKate Stone                                  "ript7ContextEPNS0_10AllocationE",
1077b9c1b51eSKate Stone          "_Z20rsdAllocationDestroyPKN7android12renderscript7ContextEPNS0_"
1078b9c1b51eSKate Stone          "10AllocationE",
1079b9c1b51eSKate Stone          0, RenderScriptRuntime::eModuleKindDriver,
1080b9c1b51eSKate Stone          &lldb_private::RenderScriptRuntime::CaptureAllocationDestroy},
108121fed052SAidan Dodds 
108221fed052SAidan Dodds         // renderscript script groups
108321fed052SAidan Dodds         {"rsdDebugHintScriptGroup2", "_ZN7android12renderscript21debugHintScrip"
108421fed052SAidan Dodds                                      "tGroup2EPKcjPKPFvPK24RsExpandKernelDriver"
108521fed052SAidan Dodds                                      "InfojjjEj",
108621fed052SAidan Dodds          "_ZN7android12renderscript21debugHintScriptGroup2EPKcjPKPFvPK24RsExpan"
108721fed052SAidan Dodds          "dKernelDriverInfojjjEj",
108821fed052SAidan Dodds          0, RenderScriptRuntime::eModuleKindImpl,
108921fed052SAidan Dodds          &lldb_private::RenderScriptRuntime::CaptureDebugHintScriptGroup2}};
10904640cde1SColin Riley 
1091b9c1b51eSKate Stone const size_t RenderScriptRuntime::s_runtimeHookCount =
1092b9c1b51eSKate Stone     sizeof(s_runtimeHookDefns) / sizeof(s_runtimeHookDefns[0]);
10934640cde1SColin Riley 
1094b9c1b51eSKate Stone bool RenderScriptRuntime::HookCallback(void *baton,
1095b9c1b51eSKate Stone                                        StoppointCallbackContext *ctx,
1096b9c1b51eSKate Stone                                        lldb::user_id_t break_id,
1097b9c1b51eSKate Stone                                        lldb::user_id_t break_loc_id) {
109880af0b9eSLuke Drummond   RuntimeHook *hook = (RuntimeHook *)baton;
109980af0b9eSLuke Drummond   ExecutionContext exe_ctx(ctx->exe_ctx_ref);
11004640cde1SColin Riley 
1101056f6f18SAlex Langford   RenderScriptRuntime *lang_rt = llvm::cast<RenderScriptRuntime>(
1102056f6f18SAlex Langford       exe_ctx.GetProcessPtr()->GetLanguageRuntime(
1103056f6f18SAlex Langford           eLanguageTypeExtRenderScript));
11044640cde1SColin Riley 
110580af0b9eSLuke Drummond   lang_rt->HookCallback(hook, exe_ctx);
11064640cde1SColin Riley 
11074640cde1SColin Riley   return false;
11084640cde1SColin Riley }
11094640cde1SColin Riley 
111080af0b9eSLuke Drummond void RenderScriptRuntime::HookCallback(RuntimeHook *hook,
111180af0b9eSLuke Drummond                                        ExecutionContext &exe_ctx) {
11124640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
11134640cde1SColin Riley 
111463e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - '%s'", __FUNCTION__, hook->defn->name);
11154640cde1SColin Riley 
111680af0b9eSLuke Drummond   if (hook->defn->grabber) {
111780af0b9eSLuke Drummond     (this->*(hook->defn->grabber))(hook, exe_ctx);
11184640cde1SColin Riley   }
11194640cde1SColin Riley }
11204640cde1SColin Riley 
112121fed052SAidan Dodds void RenderScriptRuntime::CaptureDebugHintScriptGroup2(
112221fed052SAidan Dodds     RuntimeHook *hook_info, ExecutionContext &context) {
112321fed052SAidan Dodds   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
112421fed052SAidan Dodds 
112521fed052SAidan Dodds   enum {
112621fed052SAidan Dodds     eGroupName = 0,
112721fed052SAidan Dodds     eGroupNameSize,
112821fed052SAidan Dodds     eKernel,
112921fed052SAidan Dodds     eKernelCount,
113021fed052SAidan Dodds   };
113121fed052SAidan Dodds 
113221fed052SAidan Dodds   std::array<ArgItem, 4> args{{
113321fed052SAidan Dodds       {ArgItem::ePointer, 0}, // const char         *groupName
113421fed052SAidan Dodds       {ArgItem::eInt32, 0},   // const uint32_t      groupNameSize
113521fed052SAidan Dodds       {ArgItem::ePointer, 0}, // const ExpandFuncTy *kernel
113621fed052SAidan Dodds       {ArgItem::eInt32, 0},   // const uint32_t      kernelCount
113721fed052SAidan Dodds   }};
113821fed052SAidan Dodds 
113921fed052SAidan Dodds   if (!GetArgs(context, args.data(), args.size())) {
114063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Error while reading the function parameters",
114121fed052SAidan Dodds               __FUNCTION__);
114221fed052SAidan Dodds     return;
114321fed052SAidan Dodds   } else if (log) {
114463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - groupName    : 0x%" PRIx64, __FUNCTION__,
114521fed052SAidan Dodds               addr_t(args[eGroupName]));
114663e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - groupNameSize: %" PRIu64, __FUNCTION__,
114721fed052SAidan Dodds               uint64_t(args[eGroupNameSize]));
114863e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - kernel       : 0x%" PRIx64, __FUNCTION__,
114921fed052SAidan Dodds               addr_t(args[eKernel]));
115063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - kernelCount  : %" PRIu64, __FUNCTION__,
115121fed052SAidan Dodds               uint64_t(args[eKernelCount]));
115221fed052SAidan Dodds   }
115321fed052SAidan Dodds 
115421fed052SAidan Dodds   // parse script group name
115521fed052SAidan Dodds   ConstString group_name;
115621fed052SAidan Dodds   {
115797206d57SZachary Turner     Status err;
115821fed052SAidan Dodds     const uint64_t len = uint64_t(args[eGroupNameSize]);
115921fed052SAidan Dodds     std::unique_ptr<char[]> buffer(new char[uint32_t(len + 1)]);
116021fed052SAidan Dodds     m_process->ReadMemory(addr_t(args[eGroupName]), buffer.get(), len, err);
116121fed052SAidan Dodds     buffer.get()[len] = '\0';
116221fed052SAidan Dodds     if (!err.Success()) {
116363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "Error reading scriptgroup name from target");
116421fed052SAidan Dodds       return;
116521fed052SAidan Dodds     } else {
116663e5fb76SJonas Devlieghere       LLDB_LOGF(log, "Extracted scriptgroup name %s", buffer.get());
116721fed052SAidan Dodds     }
116821fed052SAidan Dodds     // write back the script group name
116921fed052SAidan Dodds     group_name.SetCString(buffer.get());
117021fed052SAidan Dodds   }
117121fed052SAidan Dodds 
117221fed052SAidan Dodds   // create or access existing script group
117321fed052SAidan Dodds   RSScriptGroupDescriptorSP group;
117421fed052SAidan Dodds   {
117521fed052SAidan Dodds     // search for existing script group
117621fed052SAidan Dodds     for (auto sg : m_scriptGroups) {
117721fed052SAidan Dodds       if (sg->m_name == group_name) {
117821fed052SAidan Dodds         group = sg;
117921fed052SAidan Dodds         break;
118021fed052SAidan Dodds       }
118121fed052SAidan Dodds     }
118221fed052SAidan Dodds     if (!group) {
1183796ac80bSJonas Devlieghere       group = std::make_shared<RSScriptGroupDescriptor>();
118421fed052SAidan Dodds       group->m_name = group_name;
118521fed052SAidan Dodds       m_scriptGroups.push_back(group);
118621fed052SAidan Dodds     } else {
118721fed052SAidan Dodds       // already have this script group
118863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "Attempt to add duplicate script group %s",
118921fed052SAidan Dodds                 group_name.AsCString());
119021fed052SAidan Dodds       return;
119121fed052SAidan Dodds     }
119221fed052SAidan Dodds   }
119321fed052SAidan Dodds   assert(group);
119421fed052SAidan Dodds 
119521fed052SAidan Dodds   const uint32_t target_ptr_size = m_process->GetAddressByteSize();
119621fed052SAidan Dodds   std::vector<addr_t> kernels;
119721fed052SAidan Dodds   // parse kernel addresses in script group
119821fed052SAidan Dodds   for (uint64_t i = 0; i < uint64_t(args[eKernelCount]); ++i) {
119921fed052SAidan Dodds     RSScriptGroupDescriptor::Kernel kernel;
120021fed052SAidan Dodds     // extract script group kernel addresses from the target
120121fed052SAidan Dodds     const addr_t ptr_addr = addr_t(args[eKernel]) + i * target_ptr_size;
120221fed052SAidan Dodds     uint64_t kernel_addr = 0;
120397206d57SZachary Turner     Status err;
120421fed052SAidan Dodds     size_t read =
120521fed052SAidan Dodds         m_process->ReadMemory(ptr_addr, &kernel_addr, target_ptr_size, err);
120621fed052SAidan Dodds     if (!err.Success() || read != target_ptr_size) {
120763e5fb76SJonas Devlieghere       LLDB_LOGF(log, "Error parsing kernel address %" PRIu64 " in script group",
120821fed052SAidan Dodds                 i);
120921fed052SAidan Dodds       return;
121021fed052SAidan Dodds     }
121163e5fb76SJonas Devlieghere     LLDB_LOGF(log, "Extracted scriptgroup kernel address - 0x%" PRIx64,
121221fed052SAidan Dodds               kernel_addr);
121321fed052SAidan Dodds     kernel.m_addr = kernel_addr;
121421fed052SAidan Dodds 
121521fed052SAidan Dodds     // try to resolve the associated kernel name
121621fed052SAidan Dodds     if (!ResolveKernelName(kernel.m_addr, kernel.m_name)) {
121763e5fb76SJonas Devlieghere       LLDB_LOGF(log, "Parsed scriptgroup kernel %" PRIu64 " - 0x%" PRIx64, i,
121821fed052SAidan Dodds                 kernel_addr);
121921fed052SAidan Dodds       return;
122021fed052SAidan Dodds     }
122121fed052SAidan Dodds 
122221fed052SAidan Dodds     // try to find the non '.expand' function
122321fed052SAidan Dodds     {
122421fed052SAidan Dodds       const llvm::StringRef expand(".expand");
122521fed052SAidan Dodds       const llvm::StringRef name_ref = kernel.m_name.GetStringRef();
122621fed052SAidan Dodds       if (name_ref.endswith(expand)) {
122721fed052SAidan Dodds         const ConstString base_kernel(name_ref.drop_back(expand.size()));
122821fed052SAidan Dodds         // verify this function is a valid kernel
122921fed052SAidan Dodds         if (IsKnownKernel(base_kernel)) {
123021fed052SAidan Dodds           kernel.m_name = base_kernel;
123163e5fb76SJonas Devlieghere           LLDB_LOGF(log, "%s - found non expand version '%s'", __FUNCTION__,
123221fed052SAidan Dodds                     base_kernel.GetCString());
123321fed052SAidan Dodds         }
123421fed052SAidan Dodds       }
123521fed052SAidan Dodds     }
123621fed052SAidan Dodds     // add to a list of script group kernels we know about
123721fed052SAidan Dodds     group->m_kernels.push_back(kernel);
123821fed052SAidan Dodds   }
123921fed052SAidan Dodds 
124021fed052SAidan Dodds   // Resolve any pending scriptgroup breakpoints
124121fed052SAidan Dodds   {
124221fed052SAidan Dodds     Target &target = m_process->GetTarget();
124321fed052SAidan Dodds     const BreakpointList &list = target.GetBreakpointList();
124421fed052SAidan Dodds     const size_t num_breakpoints = list.GetSize();
124563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "Resolving %zu breakpoints", num_breakpoints);
124621fed052SAidan Dodds     for (size_t i = 0; i < num_breakpoints; ++i) {
124721fed052SAidan Dodds       const BreakpointSP bp = list.GetBreakpointAtIndex(i);
124821fed052SAidan Dodds       if (bp) {
124921fed052SAidan Dodds         if (bp->MatchesName(group_name.AsCString())) {
125063e5fb76SJonas Devlieghere           LLDB_LOGF(log, "Found breakpoint with name %s",
125121fed052SAidan Dodds                     group_name.AsCString());
125221fed052SAidan Dodds           bp->ResolveBreakpoint();
125321fed052SAidan Dodds         }
125421fed052SAidan Dodds       }
125521fed052SAidan Dodds     }
125621fed052SAidan Dodds   }
125721fed052SAidan Dodds }
125821fed052SAidan Dodds 
1259b9c1b51eSKate Stone void RenderScriptRuntime::CaptureScriptInvokeForEachMulti(
126080af0b9eSLuke Drummond     RuntimeHook *hook, ExecutionContext &exe_ctx) {
1261e09c44b6SAidan Dodds   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1262e09c44b6SAidan Dodds 
1263b9c1b51eSKate Stone   enum {
1264f4786785SAidan Dodds     eRsContext = 0,
1265f4786785SAidan Dodds     eRsScript,
1266f4786785SAidan Dodds     eRsSlot,
1267f4786785SAidan Dodds     eRsAIns,
1268f4786785SAidan Dodds     eRsInLen,
1269f4786785SAidan Dodds     eRsAOut,
1270f4786785SAidan Dodds     eRsUsr,
1271f4786785SAidan Dodds     eRsUsrLen,
1272f4786785SAidan Dodds     eRsSc,
1273f4786785SAidan Dodds   };
1274e09c44b6SAidan Dodds 
12751ee07253SSaleem Abdulrasool   std::array<ArgItem, 9> args{{
1276f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // const Context       *rsc
1277f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // Script              *s
1278f4786785SAidan Dodds       ArgItem{ArgItem::eInt32, 0},   // uint32_t             slot
1279f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // const Allocation   **aIns
1280f4786785SAidan Dodds       ArgItem{ArgItem::eInt32, 0},   // size_t               inLen
1281f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // Allocation          *aout
1282f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // const void          *usr
1283f4786785SAidan Dodds       ArgItem{ArgItem::eInt32, 0},   // size_t               usrLen
1284f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // const RsScriptCall  *sc
12851ee07253SSaleem Abdulrasool   }};
1286e09c44b6SAidan Dodds 
128780af0b9eSLuke Drummond   bool success = GetArgs(exe_ctx, &args[0], args.size());
1288b9c1b51eSKate Stone   if (!success) {
128963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Error while reading the function parameters",
1290b9c1b51eSKate Stone               __FUNCTION__);
1291e09c44b6SAidan Dodds     return;
1292e09c44b6SAidan Dodds   }
1293e09c44b6SAidan Dodds 
1294e09c44b6SAidan Dodds   const uint32_t target_ptr_size = m_process->GetAddressByteSize();
129597206d57SZachary Turner   Status err;
1296e09c44b6SAidan Dodds   std::vector<uint64_t> allocs;
1297e09c44b6SAidan Dodds 
1298e09c44b6SAidan Dodds   // traverse allocation list
1299b9c1b51eSKate Stone   for (uint64_t i = 0; i < uint64_t(args[eRsInLen]); ++i) {
1300e09c44b6SAidan Dodds     // calculate offest to allocation pointer
1301f4786785SAidan Dodds     const addr_t addr = addr_t(args[eRsAIns]) + i * target_ptr_size;
1302e09c44b6SAidan Dodds 
130380af0b9eSLuke Drummond     // Note: due to little endian layout, reading 32bits or 64bits into res
130480af0b9eSLuke Drummond     // will give the correct results.
130580af0b9eSLuke Drummond     uint64_t result = 0;
130680af0b9eSLuke Drummond     size_t read = m_process->ReadMemory(addr, &result, target_ptr_size, err);
130780af0b9eSLuke Drummond     if (read != target_ptr_size || !err.Success()) {
130863e5fb76SJonas Devlieghere       LLDB_LOGF(log,
1309b9c1b51eSKate Stone                 "%s - Error while reading allocation list argument %" PRIu64,
1310b9c1b51eSKate Stone                 __FUNCTION__, i);
1311b9c1b51eSKate Stone     } else {
131280af0b9eSLuke Drummond       allocs.push_back(result);
1313e09c44b6SAidan Dodds     }
1314e09c44b6SAidan Dodds   }
1315e09c44b6SAidan Dodds 
1316e09c44b6SAidan Dodds   // if there is an output allocation track it
131780af0b9eSLuke Drummond   if (uint64_t alloc_out = uint64_t(args[eRsAOut])) {
131880af0b9eSLuke Drummond     allocs.push_back(alloc_out);
1319e09c44b6SAidan Dodds   }
1320e09c44b6SAidan Dodds 
1321e09c44b6SAidan Dodds   // for all allocations we have found
1322b9c1b51eSKate Stone   for (const uint64_t alloc_addr : allocs) {
13235d057637SLuke Drummond     AllocationDetails *alloc = LookUpAllocation(alloc_addr);
13245d057637SLuke Drummond     if (!alloc)
13255d057637SLuke Drummond       alloc = CreateAllocation(alloc_addr);
13265d057637SLuke Drummond 
1327b9c1b51eSKate Stone     if (alloc) {
1328e09c44b6SAidan Dodds       // save the allocation address
1329b9c1b51eSKate Stone       if (alloc->address.isValid()) {
1330e09c44b6SAidan Dodds         // check the allocation address we already have matches
1331e09c44b6SAidan Dodds         assert(*alloc->address.get() == alloc_addr);
1332b9c1b51eSKate Stone       } else {
1333e09c44b6SAidan Dodds         alloc->address = alloc_addr;
1334e09c44b6SAidan Dodds       }
1335e09c44b6SAidan Dodds 
1336e09c44b6SAidan Dodds       // save the context
1337b9c1b51eSKate Stone       if (log) {
1338b9c1b51eSKate Stone         if (alloc->context.isValid() &&
1339b9c1b51eSKate Stone             *alloc->context.get() != addr_t(args[eRsContext]))
134063e5fb76SJonas Devlieghere           LLDB_LOGF(log, "%s - Allocation used by multiple contexts",
1341b9c1b51eSKate Stone                     __FUNCTION__);
1342e09c44b6SAidan Dodds       }
1343f4786785SAidan Dodds       alloc->context = addr_t(args[eRsContext]);
1344e09c44b6SAidan Dodds     }
1345e09c44b6SAidan Dodds   }
1346e09c44b6SAidan Dodds 
1347e09c44b6SAidan Dodds   // make sure we track this script object
1348b9c1b51eSKate Stone   if (lldb_private::RenderScriptRuntime::ScriptDetails *script =
1349b9c1b51eSKate Stone           LookUpScript(addr_t(args[eRsScript]), true)) {
1350b9c1b51eSKate Stone     if (log) {
1351b9c1b51eSKate Stone       if (script->context.isValid() &&
1352b9c1b51eSKate Stone           *script->context.get() != addr_t(args[eRsContext]))
135363e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s - Script used by multiple contexts", __FUNCTION__);
1354e09c44b6SAidan Dodds     }
1355f4786785SAidan Dodds     script->context = addr_t(args[eRsContext]);
1356e09c44b6SAidan Dodds   }
1357e09c44b6SAidan Dodds }
1358e09c44b6SAidan Dodds 
135980af0b9eSLuke Drummond void RenderScriptRuntime::CaptureSetGlobalVar(RuntimeHook *hook,
1360b9c1b51eSKate Stone                                               ExecutionContext &context) {
13614640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
13624640cde1SColin Riley 
1363b9c1b51eSKate Stone   enum {
1364f4786785SAidan Dodds     eRsContext,
1365f4786785SAidan Dodds     eRsScript,
1366f4786785SAidan Dodds     eRsId,
1367f4786785SAidan Dodds     eRsData,
1368f4786785SAidan Dodds     eRsLength,
1369f4786785SAidan Dodds   };
13704640cde1SColin Riley 
13711ee07253SSaleem Abdulrasool   std::array<ArgItem, 5> args{{
1372f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsContext
1373f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsScript
1374f4786785SAidan Dodds       ArgItem{ArgItem::eInt32, 0},   // eRsId
1375f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsData
1376f4786785SAidan Dodds       ArgItem{ArgItem::eInt32, 0},   // eRsLength
13771ee07253SSaleem Abdulrasool   }};
13784640cde1SColin Riley 
1379f4786785SAidan Dodds   bool success = GetArgs(context, &args[0], args.size());
1380b9c1b51eSKate Stone   if (!success) {
138163e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error reading the function parameters.", __FUNCTION__);
138282780287SAidan Dodds     return;
138382780287SAidan Dodds   }
13844640cde1SColin Riley 
1385b9c1b51eSKate Stone   if (log) {
138663e5fb76SJonas Devlieghere     LLDB_LOGF(log,
138763e5fb76SJonas Devlieghere               "%s - 0x%" PRIx64 ",0x%" PRIx64 " slot %" PRIu64 " = 0x%" PRIx64
1388b9c1b51eSKate Stone               ":%" PRIu64 "bytes.",
1389b9c1b51eSKate Stone               __FUNCTION__, uint64_t(args[eRsContext]),
1390b9c1b51eSKate Stone               uint64_t(args[eRsScript]), uint64_t(args[eRsId]),
1391f4786785SAidan Dodds               uint64_t(args[eRsData]), uint64_t(args[eRsLength]));
13924640cde1SColin Riley 
1393f4786785SAidan Dodds     addr_t script_addr = addr_t(args[eRsScript]);
1394b9c1b51eSKate Stone     if (m_scriptMappings.find(script_addr) != m_scriptMappings.end()) {
13954640cde1SColin Riley       auto rsm = m_scriptMappings[script_addr];
1396b9c1b51eSKate Stone       if (uint64_t(args[eRsId]) < rsm->m_globals.size()) {
1397f4786785SAidan Dodds         auto rsg = rsm->m_globals[uint64_t(args[eRsId])];
139863e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s - Setting of '%s' within '%s' inferred",
139963e5fb76SJonas Devlieghere                   __FUNCTION__, rsg.m_name.AsCString(),
1400f4786785SAidan Dodds                   rsm->m_module->GetFileSpec().GetFilename().AsCString());
14014640cde1SColin Riley       }
14024640cde1SColin Riley     }
14034640cde1SColin Riley   }
14044640cde1SColin Riley }
14054640cde1SColin Riley 
140680af0b9eSLuke Drummond void RenderScriptRuntime::CaptureAllocationInit(RuntimeHook *hook,
140780af0b9eSLuke Drummond                                                 ExecutionContext &exe_ctx) {
14084640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
14094640cde1SColin Riley 
1410b9c1b51eSKate Stone   enum { eRsContext, eRsAlloc, eRsForceZero };
14114640cde1SColin Riley 
14121ee07253SSaleem Abdulrasool   std::array<ArgItem, 3> args{{
1413f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsContext
1414f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsAlloc
1415f4786785SAidan Dodds       ArgItem{ArgItem::eBool, 0},    // eRsForceZero
14161ee07253SSaleem Abdulrasool   }};
14174640cde1SColin Riley 
141880af0b9eSLuke Drummond   bool success = GetArgs(exe_ctx, &args[0], args.size());
141980af0b9eSLuke Drummond   if (!success) {
142063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error while reading the function parameters",
1421b9c1b51eSKate Stone               __FUNCTION__);
142280af0b9eSLuke Drummond     return;
142382780287SAidan Dodds   }
14244640cde1SColin Riley 
142563e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - 0x%" PRIx64 ",0x%" PRIx64 ",0x%" PRIx64 " .",
142663e5fb76SJonas Devlieghere             __FUNCTION__, uint64_t(args[eRsContext]), uint64_t(args[eRsAlloc]),
142763e5fb76SJonas Devlieghere             uint64_t(args[eRsForceZero]));
142878f339d1SEwan Crawford 
14295d057637SLuke Drummond   AllocationDetails *alloc = CreateAllocation(uint64_t(args[eRsAlloc]));
143078f339d1SEwan Crawford   if (alloc)
1431f4786785SAidan Dodds     alloc->context = uint64_t(args[eRsContext]);
14324640cde1SColin Riley }
14334640cde1SColin Riley 
143480af0b9eSLuke Drummond void RenderScriptRuntime::CaptureAllocationDestroy(RuntimeHook *hook,
143580af0b9eSLuke Drummond                                                    ExecutionContext &exe_ctx) {
1436e69df382SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1437e69df382SEwan Crawford 
1438b9c1b51eSKate Stone   enum {
1439f4786785SAidan Dodds     eRsContext,
1440f4786785SAidan Dodds     eRsAlloc,
1441f4786785SAidan Dodds   };
1442e69df382SEwan Crawford 
14431ee07253SSaleem Abdulrasool   std::array<ArgItem, 2> args{{
1444f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsContext
1445f4786785SAidan Dodds       ArgItem{ArgItem::ePointer, 0}, // eRsAlloc
14461ee07253SSaleem Abdulrasool   }};
1447f4786785SAidan Dodds 
144880af0b9eSLuke Drummond   bool success = GetArgs(exe_ctx, &args[0], args.size());
1449b9c1b51eSKate Stone   if (!success) {
145063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error while reading the function parameters.",
1451b9c1b51eSKate Stone               __FUNCTION__);
1452b3f7f69dSAidan Dodds     return;
1453e69df382SEwan Crawford   }
1454e69df382SEwan Crawford 
145563e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - 0x%" PRIx64 ", 0x%" PRIx64 ".", __FUNCTION__,
1456b9c1b51eSKate Stone             uint64_t(args[eRsContext]), uint64_t(args[eRsAlloc]));
1457e69df382SEwan Crawford 
1458b9c1b51eSKate Stone   for (auto iter = m_allocations.begin(); iter != m_allocations.end(); ++iter) {
1459d5b44036SJonas Devlieghere     auto &allocation_up = *iter; // get the unique pointer
1460d5b44036SJonas Devlieghere     if (allocation_up->address.isValid() &&
1461d5b44036SJonas Devlieghere         *allocation_up->address.get() == addr_t(args[eRsAlloc])) {
1462e69df382SEwan Crawford       m_allocations.erase(iter);
146363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - deleted allocation entry.", __FUNCTION__);
1464e69df382SEwan Crawford       return;
1465e69df382SEwan Crawford     }
1466e69df382SEwan Crawford   }
1467e69df382SEwan Crawford 
146863e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - couldn't find destroyed allocation.", __FUNCTION__);
1469e69df382SEwan Crawford }
1470e69df382SEwan Crawford 
147180af0b9eSLuke Drummond void RenderScriptRuntime::CaptureScriptInit(RuntimeHook *hook,
147280af0b9eSLuke Drummond                                             ExecutionContext &exe_ctx) {
14734640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
14744640cde1SColin Riley 
147597206d57SZachary Turner   Status err;
147680af0b9eSLuke Drummond   Process *process = exe_ctx.GetProcessPtr();
14774640cde1SColin Riley 
1478b9c1b51eSKate Stone   enum { eRsContext, eRsScript, eRsResNamePtr, eRsCachedDirPtr };
14794640cde1SColin Riley 
1480b9c1b51eSKate Stone   std::array<ArgItem, 4> args{
1481b9c1b51eSKate Stone       {ArgItem{ArgItem::ePointer, 0}, ArgItem{ArgItem::ePointer, 0},
14821ee07253SSaleem Abdulrasool        ArgItem{ArgItem::ePointer, 0}, ArgItem{ArgItem::ePointer, 0}}};
148380af0b9eSLuke Drummond   bool success = GetArgs(exe_ctx, &args[0], args.size());
1484b9c1b51eSKate Stone   if (!success) {
148563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error while reading the function parameters.",
1486b9c1b51eSKate Stone               __FUNCTION__);
148782780287SAidan Dodds     return;
148882780287SAidan Dodds   }
148982780287SAidan Dodds 
149080af0b9eSLuke Drummond   std::string res_name;
149180af0b9eSLuke Drummond   process->ReadCStringFromMemory(addr_t(args[eRsResNamePtr]), res_name, err);
149280af0b9eSLuke Drummond   if (err.Fail()) {
149363e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error reading res_name: %s.", __FUNCTION__,
149480af0b9eSLuke Drummond               err.AsCString());
14954640cde1SColin Riley   }
14964640cde1SColin Riley 
149780af0b9eSLuke Drummond   std::string cache_dir;
149880af0b9eSLuke Drummond   process->ReadCStringFromMemory(addr_t(args[eRsCachedDirPtr]), cache_dir, err);
149980af0b9eSLuke Drummond   if (err.Fail()) {
150063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error reading cache_dir: %s.", __FUNCTION__,
150180af0b9eSLuke Drummond               err.AsCString());
15024640cde1SColin Riley   }
15034640cde1SColin Riley 
150463e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - 0x%" PRIx64 ",0x%" PRIx64 " => '%s' at '%s' .",
150563e5fb76SJonas Devlieghere             __FUNCTION__, uint64_t(args[eRsContext]), uint64_t(args[eRsScript]),
150663e5fb76SJonas Devlieghere             res_name.c_str(), cache_dir.c_str());
15074640cde1SColin Riley 
150880af0b9eSLuke Drummond   if (res_name.size() > 0) {
15094640cde1SColin Riley     StreamString strm;
151080af0b9eSLuke Drummond     strm.Printf("librs.%s.so", res_name.c_str());
15114640cde1SColin Riley 
1512f4786785SAidan Dodds     ScriptDetails *script = LookUpScript(addr_t(args[eRsScript]), true);
1513b9c1b51eSKate Stone     if (script) {
151478f339d1SEwan Crawford       script->type = ScriptDetails::eScriptC;
151580af0b9eSLuke Drummond       script->cache_dir = cache_dir;
151680af0b9eSLuke Drummond       script->res_name = res_name;
1517c156427dSZachary Turner       script->shared_lib = strm.GetString();
1518f4786785SAidan Dodds       script->context = addr_t(args[eRsContext]);
151978f339d1SEwan Crawford     }
15204640cde1SColin Riley 
152163e5fb76SJonas Devlieghere     LLDB_LOGF(log,
152263e5fb76SJonas Devlieghere               "%s - '%s' tagged with context 0x%" PRIx64
1523b9c1b51eSKate Stone               " and script 0x%" PRIx64 ".",
1524b9c1b51eSKate Stone               __FUNCTION__, strm.GetData(), uint64_t(args[eRsContext]),
1525b9c1b51eSKate Stone               uint64_t(args[eRsScript]));
1526b9c1b51eSKate Stone   } else if (log) {
152763e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - resource name invalid, Script not tagged.",
152863e5fb76SJonas Devlieghere               __FUNCTION__);
15294640cde1SColin Riley   }
15304640cde1SColin Riley }
15314640cde1SColin Riley 
1532b9c1b51eSKate Stone void RenderScriptRuntime::LoadRuntimeHooks(lldb::ModuleSP module,
1533b9c1b51eSKate Stone                                            ModuleKind kind) {
15344640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
15354640cde1SColin Riley 
1536b9c1b51eSKate Stone   if (!module) {
15374640cde1SColin Riley     return;
15384640cde1SColin Riley   }
15394640cde1SColin Riley 
154082780287SAidan Dodds   Target &target = GetProcess()->GetTarget();
154121fed052SAidan Dodds   const llvm::Triple::ArchType machine = target.GetArchitecture().GetMachine();
154282780287SAidan Dodds 
154380af0b9eSLuke Drummond   if (machine != llvm::Triple::ArchType::x86 &&
154480af0b9eSLuke Drummond       machine != llvm::Triple::ArchType::arm &&
154580af0b9eSLuke Drummond       machine != llvm::Triple::ArchType::aarch64 &&
154680af0b9eSLuke Drummond       machine != llvm::Triple::ArchType::mipsel &&
154780af0b9eSLuke Drummond       machine != llvm::Triple::ArchType::mips64el &&
154880af0b9eSLuke Drummond       machine != llvm::Triple::ArchType::x86_64) {
154963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - unable to hook runtime functions.", __FUNCTION__);
15504640cde1SColin Riley     return;
15514640cde1SColin Riley   }
15524640cde1SColin Riley 
155321fed052SAidan Dodds   const uint32_t target_ptr_size =
155421fed052SAidan Dodds       target.GetArchitecture().GetAddressByteSize();
155521fed052SAidan Dodds 
155621fed052SAidan Dodds   std::array<bool, s_runtimeHookCount> hook_placed;
155721fed052SAidan Dodds   hook_placed.fill(false);
15584640cde1SColin Riley 
1559b9c1b51eSKate Stone   for (size_t idx = 0; idx < s_runtimeHookCount; idx++) {
15604640cde1SColin Riley     const HookDefn *hook_defn = &s_runtimeHookDefns[idx];
1561b9c1b51eSKate Stone     if (hook_defn->kind != kind) {
15624640cde1SColin Riley       continue;
15634640cde1SColin Riley     }
15644640cde1SColin Riley 
156580af0b9eSLuke Drummond     const char *symbol_name = (target_ptr_size == 4)
156680af0b9eSLuke Drummond                                   ? hook_defn->symbol_name_m32
1567b9c1b51eSKate Stone                                   : hook_defn->symbol_name_m64;
156882780287SAidan Dodds 
1569b9c1b51eSKate Stone     const Symbol *sym = module->FindFirstSymbolWithNameAndType(
1570b9c1b51eSKate Stone         ConstString(symbol_name), eSymbolTypeCode);
1571b9c1b51eSKate Stone     if (!sym) {
1572b9c1b51eSKate Stone       if (log) {
157363e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s - symbol '%s' related to the function %s not found",
1574b3f7f69dSAidan Dodds                   __FUNCTION__, symbol_name, hook_defn->name);
157582780287SAidan Dodds       }
157682780287SAidan Dodds       continue;
157782780287SAidan Dodds     }
15784640cde1SColin Riley 
1579358cf1eaSGreg Clayton     addr_t addr = sym->GetLoadAddress(&target);
1580b9c1b51eSKate Stone     if (addr == LLDB_INVALID_ADDRESS) {
158163e5fb76SJonas Devlieghere       LLDB_LOGF(log,
158263e5fb76SJonas Devlieghere                 "%s - unable to resolve the address of hook function '%s' "
1583b9c1b51eSKate Stone                 "with symbol '%s'.",
1584b3f7f69dSAidan Dodds                 __FUNCTION__, hook_defn->name, symbol_name);
15854640cde1SColin Riley       continue;
1586b9c1b51eSKate Stone     } else {
158763e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - function %s, address resolved at 0x%" PRIx64,
1588b3f7f69dSAidan Dodds                 __FUNCTION__, hook_defn->name, addr);
158982780287SAidan Dodds     }
15904640cde1SColin Riley 
15914640cde1SColin Riley     RuntimeHookSP hook(new RuntimeHook());
15924640cde1SColin Riley     hook->address = addr;
15934640cde1SColin Riley     hook->defn = hook_defn;
15944640cde1SColin Riley     hook->bp_sp = target.CreateBreakpoint(addr, true, false);
15954640cde1SColin Riley     hook->bp_sp->SetCallback(HookCallback, hook.get(), true);
15964640cde1SColin Riley     m_runtimeHooks[addr] = hook;
1597b9c1b51eSKate Stone     if (log) {
159863e5fb76SJonas Devlieghere       LLDB_LOGF(log,
159963e5fb76SJonas Devlieghere                 "%s - successfully hooked '%s' in '%s' version %" PRIu64
1600b9c1b51eSKate Stone                 " at 0x%" PRIx64 ".",
1601b9c1b51eSKate Stone                 __FUNCTION__, hook_defn->name,
1602b9c1b51eSKate Stone                 module->GetFileSpec().GetFilename().AsCString(),
1603b3f7f69dSAidan Dodds                 (uint64_t)hook_defn->version, (uint64_t)addr);
16044640cde1SColin Riley     }
160521fed052SAidan Dodds     hook_placed[idx] = true;
160621fed052SAidan Dodds   }
160721fed052SAidan Dodds 
160821fed052SAidan Dodds   // log any unhooked function
160921fed052SAidan Dodds   if (log) {
161021fed052SAidan Dodds     for (size_t i = 0; i < hook_placed.size(); ++i) {
161121fed052SAidan Dodds       if (hook_placed[i])
161221fed052SAidan Dodds         continue;
161321fed052SAidan Dodds       const HookDefn &hook_defn = s_runtimeHookDefns[i];
161421fed052SAidan Dodds       if (hook_defn.kind != kind)
161521fed052SAidan Dodds         continue;
161663e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - function %s was not hooked", __FUNCTION__,
161721fed052SAidan Dodds                 hook_defn.name);
161821fed052SAidan Dodds     }
16194640cde1SColin Riley   }
16204640cde1SColin Riley }
16214640cde1SColin Riley 
1622b9c1b51eSKate Stone void RenderScriptRuntime::FixupScriptDetails(RSModuleDescriptorSP rsmodule_sp) {
16234640cde1SColin Riley   if (!rsmodule_sp)
16244640cde1SColin Riley     return;
16254640cde1SColin Riley 
16264640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
16274640cde1SColin Riley 
16284640cde1SColin Riley   const ModuleSP module = rsmodule_sp->m_module;
16294640cde1SColin Riley   const FileSpec &file = module->GetPlatformFileSpec();
16304640cde1SColin Riley 
163105097246SAdrian Prantl   // Iterate over all of the scripts that we currently know of. Note: We cant
163205097246SAdrian Prantl   // push or pop to m_scripts here or it may invalidate rs_script.
1633b9c1b51eSKate Stone   for (const auto &rs_script : m_scripts) {
163478f339d1SEwan Crawford     // Extract the expected .so file path for this script.
163580af0b9eSLuke Drummond     std::string shared_lib;
163680af0b9eSLuke Drummond     if (!rs_script->shared_lib.get(shared_lib))
163778f339d1SEwan Crawford       continue;
163878f339d1SEwan Crawford 
163978f339d1SEwan Crawford     // Only proceed if the module that has loaded corresponds to this script.
164080af0b9eSLuke Drummond     if (file.GetFilename() != ConstString(shared_lib.c_str()))
164178f339d1SEwan Crawford       continue;
164278f339d1SEwan Crawford 
164378f339d1SEwan Crawford     // Obtain the script address which we use as a key.
164478f339d1SEwan Crawford     lldb::addr_t script;
164578f339d1SEwan Crawford     if (!rs_script->script.get(script))
164678f339d1SEwan Crawford       continue;
164778f339d1SEwan Crawford 
164878f339d1SEwan Crawford     // If we have a script mapping for the current script.
1649b9c1b51eSKate Stone     if (m_scriptMappings.find(script) != m_scriptMappings.end()) {
165078f339d1SEwan Crawford       // if the module we have stored is different to the one we just received.
1651b9c1b51eSKate Stone       if (m_scriptMappings[script] != rsmodule_sp) {
165263e5fb76SJonas Devlieghere         LLDB_LOGF(
165363e5fb76SJonas Devlieghere             log,
1654b9c1b51eSKate Stone             "%s - script %" PRIx64 " wants reassigned to new rsmodule '%s'.",
1655b9c1b51eSKate Stone             __FUNCTION__, (uint64_t)script,
1656b9c1b51eSKate Stone             rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
16574640cde1SColin Riley       }
16584640cde1SColin Riley     }
165978f339d1SEwan Crawford     // We don't have a script mapping for the current script.
1660b9c1b51eSKate Stone     else {
166178f339d1SEwan Crawford       // Obtain the script resource name.
166280af0b9eSLuke Drummond       std::string res_name;
166380af0b9eSLuke Drummond       if (rs_script->res_name.get(res_name))
166478f339d1SEwan Crawford         // Set the modules resource name.
166580af0b9eSLuke Drummond         rsmodule_sp->m_resname = res_name;
166678f339d1SEwan Crawford       // Add Script/Module pair to map.
166778f339d1SEwan Crawford       m_scriptMappings[script] = rsmodule_sp;
166863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - script %" PRIx64 " associated with rsmodule '%s'.",
1669b9c1b51eSKate Stone                 __FUNCTION__, (uint64_t)script,
1670b9c1b51eSKate Stone                 rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
16714640cde1SColin Riley     }
16724640cde1SColin Riley   }
16734640cde1SColin Riley }
16744640cde1SColin Riley 
1675b9c1b51eSKate Stone // Uses the Target API to evaluate the expression passed as a parameter to the
167680af0b9eSLuke Drummond // function The result of that expression is returned an unsigned 64 bit int,
167780af0b9eSLuke Drummond // via the result* parameter. Function returns true on success, and false on
167880af0b9eSLuke Drummond // failure
167980af0b9eSLuke Drummond bool RenderScriptRuntime::EvalRSExpression(const char *expr,
1680b9c1b51eSKate Stone                                            StackFrame *frame_ptr,
1681b9c1b51eSKate Stone                                            uint64_t *result) {
168215f2bd95SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
168363e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s(%s)", __FUNCTION__, expr);
168415f2bd95SEwan Crawford 
168515f2bd95SEwan Crawford   ValueObjectSP expr_result;
16868433fdbeSAidan Dodds   EvaluateExpressionOptions options;
16878433fdbeSAidan Dodds   options.SetLanguage(lldb::eLanguageTypeC_plus_plus);
168815f2bd95SEwan Crawford   // Perform the actual expression evaluation
168980af0b9eSLuke Drummond   auto &target = GetProcess()->GetTarget();
169080af0b9eSLuke Drummond   target.EvaluateExpression(expr, frame_ptr, expr_result, options);
169115f2bd95SEwan Crawford 
1692b9c1b51eSKate Stone   if (!expr_result) {
169363e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s: couldn't evaluate expression.", __FUNCTION__);
169415f2bd95SEwan Crawford     return false;
169515f2bd95SEwan Crawford   }
169615f2bd95SEwan Crawford 
169715f2bd95SEwan Crawford   // The result of the expression is invalid
1698b9c1b51eSKate Stone   if (!expr_result->GetError().Success()) {
169997206d57SZachary Turner     Status err = expr_result->GetError();
170080af0b9eSLuke Drummond     // Expression returned is void, so this is actually a success
1701a35912daSKrasimir Georgiev     if (err.GetError() == UserExpression::kNoResult) {
170263e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - expression returned void.", __FUNCTION__);
170315f2bd95SEwan Crawford 
170415f2bd95SEwan Crawford       result = nullptr;
170515f2bd95SEwan Crawford       return true;
170615f2bd95SEwan Crawford     }
170715f2bd95SEwan Crawford 
170863e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error evaluating expression result: %s", __FUNCTION__,
1709b3f7f69dSAidan Dodds               err.AsCString());
171015f2bd95SEwan Crawford     return false;
171115f2bd95SEwan Crawford   }
171215f2bd95SEwan Crawford 
171315f2bd95SEwan Crawford   bool success = false;
171480af0b9eSLuke Drummond   // We only read the result as an uint32_t.
171580af0b9eSLuke Drummond   *result = expr_result->GetValueAsUnsigned(0, &success);
171615f2bd95SEwan Crawford 
1717b9c1b51eSKate Stone   if (!success) {
171863e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - couldn't convert expression result to uint32_t",
1719b9c1b51eSKate Stone               __FUNCTION__);
172015f2bd95SEwan Crawford     return false;
172115f2bd95SEwan Crawford   }
172215f2bd95SEwan Crawford 
172315f2bd95SEwan Crawford   return true;
172415f2bd95SEwan Crawford }
172515f2bd95SEwan Crawford 
1726b9c1b51eSKate Stone namespace {
1727836d9651SEwan Crawford // Used to index expression format strings
1728b9c1b51eSKate Stone enum ExpressionStrings {
1729836d9651SEwan Crawford   eExprGetOffsetPtr = 0,
1730836d9651SEwan Crawford   eExprAllocGetType,
1731836d9651SEwan Crawford   eExprTypeDimX,
1732836d9651SEwan Crawford   eExprTypeDimY,
1733836d9651SEwan Crawford   eExprTypeDimZ,
1734836d9651SEwan Crawford   eExprTypeElemPtr,
1735836d9651SEwan Crawford   eExprElementType,
1736836d9651SEwan Crawford   eExprElementKind,
1737836d9651SEwan Crawford   eExprElementVec,
1738836d9651SEwan Crawford   eExprElementFieldCount,
1739836d9651SEwan Crawford   eExprSubelementsId,
1740836d9651SEwan Crawford   eExprSubelementsName,
1741ea0636b5SEwan Crawford   eExprSubelementsArrSize,
1742ea0636b5SEwan Crawford 
174380af0b9eSLuke Drummond   _eExprLast // keep at the end, implicit size of the array runtime_expressions
1744836d9651SEwan Crawford };
174515f2bd95SEwan Crawford 
1746ea0636b5SEwan Crawford // max length of an expanded expression
1747ea0636b5SEwan Crawford const int jit_max_expr_size = 512;
1748ea0636b5SEwan Crawford 
1749ea0636b5SEwan Crawford // Retrieve the string to JIT for the given expression
175036d783ebSDavid Gross #define JIT_TEMPLATE_CONTEXT "void* ctxt = (void*)rsDebugGetContextWrapper(0x%" PRIx64 "); "
1751b9c1b51eSKate Stone const char *JITTemplate(ExpressionStrings e) {
1752ea0636b5SEwan Crawford   // Format strings containing the expressions we may need to evaluate.
175380af0b9eSLuke Drummond   static std::array<const char *, _eExprLast> runtime_expressions = {
1754b9c1b51eSKate Stone       {// Mangled GetOffsetPointer(Allocation*, xoff, yoff, zoff, lod, cubemap)
1755b9c1b51eSKate Stone        "(int*)_"
1756b9c1b51eSKate Stone        "Z12GetOffsetPtrPKN7android12renderscript10AllocationEjjjj23RsAllocation"
1757b9c1b51eSKate Stone        "CubemapFace"
175836d783ebSDavid Gross        "(0x%" PRIx64 ", %" PRIu32 ", %" PRIu32 ", %" PRIu32 ", 0, 0)", // eExprGetOffsetPtr
175915f2bd95SEwan Crawford 
176015f2bd95SEwan Crawford        // Type* rsaAllocationGetType(Context*, Allocation*)
176136d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT "(void*)rsaAllocationGetType(ctxt, 0x%" PRIx64 ")", // eExprAllocGetType
176215f2bd95SEwan Crawford 
176380af0b9eSLuke Drummond        // rsaTypeGetNativeData(Context*, Type*, void* typeData, size) Pack the
176480af0b9eSLuke Drummond        // data in the following way mHal.state.dimX; mHal.state.dimY;
176505097246SAdrian Prantl        // mHal.state.dimZ; mHal.state.lodCount; mHal.state.faces; mElement;
176605097246SAdrian Prantl        // into typeData Need to specify 32 or 64 bit for uint_t since this
176705097246SAdrian Prantl        // differs between devices
176836d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
176936d783ebSDavid Gross        "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(ctxt"
177036d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 6); data[0]", // eExprTypeDimX
177136d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
177236d783ebSDavid Gross        "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(ctxt"
177336d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 6); data[1]", // eExprTypeDimY
177436d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
177536d783ebSDavid Gross        "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(ctxt"
177636d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 6); data[2]", // eExprTypeDimZ
177736d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
177836d783ebSDavid Gross        "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(ctxt"
177936d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 6); data[5]", // eExprTypeElemPtr
178015f2bd95SEwan Crawford 
178115f2bd95SEwan Crawford        // rsaElementGetNativeData(Context*, Element*, uint32_t* elemData,size)
1782b9c1b51eSKate Stone        // Pack mType; mKind; mNormalized; mVectorSize; NumSubElements into
1783b9c1b51eSKate Stone        // elemData
178436d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
178536d783ebSDavid Gross        "uint32_t data[5]; (void*)rsaElementGetNativeData(ctxt"
178636d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 5); data[0]", // eExprElementType
178736d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
178836d783ebSDavid Gross        "uint32_t data[5]; (void*)rsaElementGetNativeData(ctxt"
178936d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 5); data[1]", // eExprElementKind
179036d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
179136d783ebSDavid Gross        "uint32_t data[5]; (void*)rsaElementGetNativeData(ctxt"
179236d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 5); data[3]", // eExprElementVec
179336d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT
179436d783ebSDavid Gross        "uint32_t data[5]; (void*)rsaElementGetNativeData(ctxt"
179536d783ebSDavid Gross        ", 0x%" PRIx64 ", data, 5); data[4]", // eExprElementFieldCount
17968b244e21SEwan Crawford 
1797b9c1b51eSKate Stone        // rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t
179880af0b9eSLuke Drummond        // *ids, const char **names, size_t *arraySizes, uint32_t dataSize)
1799b9c1b51eSKate Stone        // Needed for Allocations of structs to gather details about
180080af0b9eSLuke Drummond        // fields/Subelements Element* of field
180136d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT "void* ids[%" PRIu32 "]; const char* names[%" PRIu32
1802b9c1b51eSKate Stone        "]; size_t arr_size[%" PRIu32 "];"
180336d783ebSDavid Gross        "(void*)rsaElementGetSubElements(ctxt, 0x%" PRIx64
180436d783ebSDavid Gross        ", ids, names, arr_size, %" PRIu32 "); ids[%" PRIu32 "]", // eExprSubelementsId
18058b244e21SEwan Crawford 
1806577570b4SAidan Dodds        // Name of field
180736d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT "void* ids[%" PRIu32 "]; const char* names[%" PRIu32
1808b9c1b51eSKate Stone        "]; size_t arr_size[%" PRIu32 "];"
180936d783ebSDavid Gross        "(void*)rsaElementGetSubElements(ctxt, 0x%" PRIx64
181036d783ebSDavid Gross        ", ids, names, arr_size, %" PRIu32 "); names[%" PRIu32 "]", // eExprSubelementsName
18118b244e21SEwan Crawford 
1812577570b4SAidan Dodds        // Array size of field
181336d783ebSDavid Gross        JIT_TEMPLATE_CONTEXT "void* ids[%" PRIu32 "]; const char* names[%" PRIu32
1814b9c1b51eSKate Stone        "]; size_t arr_size[%" PRIu32 "];"
181536d783ebSDavid Gross        "(void*)rsaElementGetSubElements(ctxt, 0x%" PRIx64
181636d783ebSDavid Gross        ", ids, names, arr_size, %" PRIu32 "); arr_size[%" PRIu32 "]"}}; // eExprSubelementsArrSize
1817ea0636b5SEwan Crawford 
181880af0b9eSLuke Drummond   return runtime_expressions[e];
1819ea0636b5SEwan Crawford }
1820ea0636b5SEwan Crawford } // end of the anonymous namespace
1821ea0636b5SEwan Crawford 
182205097246SAdrian Prantl // JITs the RS runtime for the internal data pointer of an allocation. Is
182305097246SAdrian Prantl // passed x,y,z coordinates for the pointer to a specific element. Then sets
182405097246SAdrian Prantl // the data_ptr member in Allocation with the result. Returns true on success,
182505097246SAdrian Prantl // false otherwise
182680af0b9eSLuke Drummond bool RenderScriptRuntime::JITDataPointer(AllocationDetails *alloc,
1827b9c1b51eSKate Stone                                          StackFrame *frame_ptr, uint32_t x,
1828b9c1b51eSKate Stone                                          uint32_t y, uint32_t z) {
182915f2bd95SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
183015f2bd95SEwan Crawford 
183180af0b9eSLuke Drummond   if (!alloc->address.isValid()) {
183263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
183315f2bd95SEwan Crawford     return false;
183415f2bd95SEwan Crawford   }
183515f2bd95SEwan Crawford 
183680af0b9eSLuke Drummond   const char *fmt_str = JITTemplate(eExprGetOffsetPtr);
183780af0b9eSLuke Drummond   char expr_buf[jit_max_expr_size];
183815f2bd95SEwan Crawford 
183980af0b9eSLuke Drummond   int written = snprintf(expr_buf, jit_max_expr_size, fmt_str,
184080af0b9eSLuke Drummond                          *alloc->address.get(), x, y, z);
184180af0b9eSLuke Drummond   if (written < 0) {
184263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
184315f2bd95SEwan Crawford     return false;
184480af0b9eSLuke Drummond   } else if (written >= jit_max_expr_size) {
184563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
184615f2bd95SEwan Crawford     return false;
184715f2bd95SEwan Crawford   }
184815f2bd95SEwan Crawford 
184915f2bd95SEwan Crawford   uint64_t result = 0;
185080af0b9eSLuke Drummond   if (!EvalRSExpression(expr_buf, frame_ptr, &result))
185115f2bd95SEwan Crawford     return false;
185215f2bd95SEwan Crawford 
185380af0b9eSLuke Drummond   addr_t data_ptr = static_cast<lldb::addr_t>(result);
185480af0b9eSLuke Drummond   alloc->data_ptr = data_ptr;
185515f2bd95SEwan Crawford 
185615f2bd95SEwan Crawford   return true;
185715f2bd95SEwan Crawford }
185815f2bd95SEwan Crawford 
185915f2bd95SEwan Crawford // JITs the RS runtime for the internal pointer to the RS Type of an allocation
186080af0b9eSLuke Drummond // Then sets the type_ptr member in Allocation with the result. Returns true on
186180af0b9eSLuke Drummond // success, false otherwise
186280af0b9eSLuke Drummond bool RenderScriptRuntime::JITTypePointer(AllocationDetails *alloc,
1863b9c1b51eSKate Stone                                          StackFrame *frame_ptr) {
186415f2bd95SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
186515f2bd95SEwan Crawford 
186680af0b9eSLuke Drummond   if (!alloc->address.isValid() || !alloc->context.isValid()) {
186763e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
186815f2bd95SEwan Crawford     return false;
186915f2bd95SEwan Crawford   }
187015f2bd95SEwan Crawford 
187180af0b9eSLuke Drummond   const char *fmt_str = JITTemplate(eExprAllocGetType);
187280af0b9eSLuke Drummond   char expr_buf[jit_max_expr_size];
187315f2bd95SEwan Crawford 
187480af0b9eSLuke Drummond   int written = snprintf(expr_buf, jit_max_expr_size, fmt_str,
187580af0b9eSLuke Drummond                          *alloc->context.get(), *alloc->address.get());
187680af0b9eSLuke Drummond   if (written < 0) {
187763e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
187815f2bd95SEwan Crawford     return false;
187980af0b9eSLuke Drummond   } else if (written >= jit_max_expr_size) {
188063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
188115f2bd95SEwan Crawford     return false;
188215f2bd95SEwan Crawford   }
188315f2bd95SEwan Crawford 
188415f2bd95SEwan Crawford   uint64_t result = 0;
188580af0b9eSLuke Drummond   if (!EvalRSExpression(expr_buf, frame_ptr, &result))
188615f2bd95SEwan Crawford     return false;
188715f2bd95SEwan Crawford 
188815f2bd95SEwan Crawford   addr_t type_ptr = static_cast<lldb::addr_t>(result);
188980af0b9eSLuke Drummond   alloc->type_ptr = type_ptr;
189015f2bd95SEwan Crawford 
189115f2bd95SEwan Crawford   return true;
189215f2bd95SEwan Crawford }
189315f2bd95SEwan Crawford 
1894b9c1b51eSKate Stone // JITs the RS runtime for information about the dimensions and type of an
189505097246SAdrian Prantl // allocation Then sets dimension and element_ptr members in Allocation with
189605097246SAdrian Prantl // the result. Returns true on success, false otherwise
189780af0b9eSLuke Drummond bool RenderScriptRuntime::JITTypePacked(AllocationDetails *alloc,
1898b9c1b51eSKate Stone                                         StackFrame *frame_ptr) {
189915f2bd95SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
190015f2bd95SEwan Crawford 
190180af0b9eSLuke Drummond   if (!alloc->type_ptr.isValid() || !alloc->context.isValid()) {
190263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Failed to find allocation details.", __FUNCTION__);
190315f2bd95SEwan Crawford     return false;
190415f2bd95SEwan Crawford   }
190515f2bd95SEwan Crawford 
190615f2bd95SEwan Crawford   // Expression is different depending on if device is 32 or 64 bit
190780af0b9eSLuke Drummond   uint32_t target_ptr_size =
1908b9c1b51eSKate Stone       GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
190980af0b9eSLuke Drummond   const uint32_t bits = target_ptr_size == 4 ? 32 : 64;
191015f2bd95SEwan Crawford 
191115f2bd95SEwan Crawford   // We want 4 elements from packed data
1912b3f7f69dSAidan Dodds   const uint32_t num_exprs = 4;
19134c1d6ee8SJonas Devlieghere   static_assert(num_exprs == (eExprTypeElemPtr - eExprTypeDimX + 1),
1914b9c1b51eSKate Stone                 "Invalid number of expressions");
191515f2bd95SEwan Crawford 
191680af0b9eSLuke Drummond   char expr_bufs[num_exprs][jit_max_expr_size];
191715f2bd95SEwan Crawford   uint64_t results[num_exprs];
191815f2bd95SEwan Crawford 
1919b9c1b51eSKate Stone   for (uint32_t i = 0; i < num_exprs; ++i) {
192080af0b9eSLuke Drummond     const char *fmt_str = JITTemplate(ExpressionStrings(eExprTypeDimX + i));
192136d783ebSDavid Gross     int written = snprintf(expr_bufs[i], jit_max_expr_size, fmt_str,
192236d783ebSDavid Gross                            *alloc->context.get(), bits, *alloc->type_ptr.get());
192380af0b9eSLuke Drummond     if (written < 0) {
192463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
192515f2bd95SEwan Crawford       return false;
192680af0b9eSLuke Drummond     } else if (written >= jit_max_expr_size) {
192763e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
192815f2bd95SEwan Crawford       return false;
192915f2bd95SEwan Crawford     }
193015f2bd95SEwan Crawford 
193115f2bd95SEwan Crawford     // Perform expression evaluation
193280af0b9eSLuke Drummond     if (!EvalRSExpression(expr_bufs[i], frame_ptr, &results[i]))
193315f2bd95SEwan Crawford       return false;
193415f2bd95SEwan Crawford   }
193515f2bd95SEwan Crawford 
193615f2bd95SEwan Crawford   // Assign results to allocation members
193715f2bd95SEwan Crawford   AllocationDetails::Dimension dims;
193815f2bd95SEwan Crawford   dims.dim_1 = static_cast<uint32_t>(results[0]);
193915f2bd95SEwan Crawford   dims.dim_2 = static_cast<uint32_t>(results[1]);
194015f2bd95SEwan Crawford   dims.dim_3 = static_cast<uint32_t>(results[2]);
194180af0b9eSLuke Drummond   alloc->dimension = dims;
194215f2bd95SEwan Crawford 
194380af0b9eSLuke Drummond   addr_t element_ptr = static_cast<lldb::addr_t>(results[3]);
194480af0b9eSLuke Drummond   alloc->element.element_ptr = element_ptr;
194515f2bd95SEwan Crawford 
194663e5fb76SJonas Devlieghere   LLDB_LOGF(log,
194763e5fb76SJonas Devlieghere             "%s - dims (%" PRIu32 ", %" PRIu32 ", %" PRIu32
1948b9c1b51eSKate Stone             ") Element*: 0x%" PRIx64 ".",
194980af0b9eSLuke Drummond             __FUNCTION__, dims.dim_1, dims.dim_2, dims.dim_3, element_ptr);
195015f2bd95SEwan Crawford 
195115f2bd95SEwan Crawford   return true;
195215f2bd95SEwan Crawford }
195315f2bd95SEwan Crawford 
195480af0b9eSLuke Drummond // JITs the RS runtime for information about the Element of an allocation Then
195580af0b9eSLuke Drummond // sets type, type_vec_size, field_count and type_kind members in Element with
195680af0b9eSLuke Drummond // the result. Returns true on success, false otherwise
1957b9c1b51eSKate Stone bool RenderScriptRuntime::JITElementPacked(Element &elem,
1958b9c1b51eSKate Stone                                            const lldb::addr_t context,
1959b9c1b51eSKate Stone                                            StackFrame *frame_ptr) {
196015f2bd95SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
196115f2bd95SEwan Crawford 
1962b9c1b51eSKate Stone   if (!elem.element_ptr.isValid()) {
196363e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
196415f2bd95SEwan Crawford     return false;
196515f2bd95SEwan Crawford   }
196615f2bd95SEwan Crawford 
19678b244e21SEwan Crawford   // We want 4 elements from packed data
1968b3f7f69dSAidan Dodds   const uint32_t num_exprs = 4;
19694c1d6ee8SJonas Devlieghere   static_assert(num_exprs == (eExprElementFieldCount - eExprElementType + 1),
1970b9c1b51eSKate Stone                 "Invalid number of expressions");
197115f2bd95SEwan Crawford 
197280af0b9eSLuke Drummond   char expr_bufs[num_exprs][jit_max_expr_size];
197315f2bd95SEwan Crawford   uint64_t results[num_exprs];
197415f2bd95SEwan Crawford 
1975b9c1b51eSKate Stone   for (uint32_t i = 0; i < num_exprs; i++) {
197680af0b9eSLuke Drummond     const char *fmt_str = JITTemplate(ExpressionStrings(eExprElementType + i));
197780af0b9eSLuke Drummond     int written = snprintf(expr_bufs[i], jit_max_expr_size, fmt_str, context,
197880af0b9eSLuke Drummond                            *elem.element_ptr.get());
197980af0b9eSLuke Drummond     if (written < 0) {
198063e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
198115f2bd95SEwan Crawford       return false;
198280af0b9eSLuke Drummond     } else if (written >= jit_max_expr_size) {
198363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
198415f2bd95SEwan Crawford       return false;
198515f2bd95SEwan Crawford     }
198615f2bd95SEwan Crawford 
198715f2bd95SEwan Crawford     // Perform expression evaluation
198880af0b9eSLuke Drummond     if (!EvalRSExpression(expr_bufs[i], frame_ptr, &results[i]))
198915f2bd95SEwan Crawford       return false;
199015f2bd95SEwan Crawford   }
199115f2bd95SEwan Crawford 
199215f2bd95SEwan Crawford   // Assign results to allocation members
19938b244e21SEwan Crawford   elem.type = static_cast<RenderScriptRuntime::Element::DataType>(results[0]);
1994b9c1b51eSKate Stone   elem.type_kind =
1995b9c1b51eSKate Stone       static_cast<RenderScriptRuntime::Element::DataKind>(results[1]);
19968b244e21SEwan Crawford   elem.type_vec_size = static_cast<uint32_t>(results[2]);
19978b244e21SEwan Crawford   elem.field_count = static_cast<uint32_t>(results[3]);
199815f2bd95SEwan Crawford 
199963e5fb76SJonas Devlieghere   LLDB_LOGF(log,
200063e5fb76SJonas Devlieghere             "%s - data type %" PRIu32 ", pixel type %" PRIu32
2001b9c1b51eSKate Stone             ", vector size %" PRIu32 ", field count %" PRIu32,
2002b9c1b51eSKate Stone             __FUNCTION__, *elem.type.get(), *elem.type_kind.get(),
2003b9c1b51eSKate Stone             *elem.type_vec_size.get(), *elem.field_count.get());
20048b244e21SEwan Crawford 
2005b9c1b51eSKate Stone   // If this Element has subelements then JIT rsaElementGetSubElements() for
2006b9c1b51eSKate Stone   // details about its fields
2007a6682a41SJonas Devlieghere   return !(*elem.field_count.get() > 0 &&
2008a6682a41SJonas Devlieghere            !JITSubelements(elem, context, frame_ptr));
20098b244e21SEwan Crawford }
20108b244e21SEwan Crawford 
2011b9c1b51eSKate Stone // JITs the RS runtime for information about the subelements/fields of a struct
201280af0b9eSLuke Drummond // allocation This is necessary for infering the struct type so we can pretty
201380af0b9eSLuke Drummond // print the allocation's contents. Returns true on success, false otherwise
2014b9c1b51eSKate Stone bool RenderScriptRuntime::JITSubelements(Element &elem,
2015b9c1b51eSKate Stone                                          const lldb::addr_t context,
2016b9c1b51eSKate Stone                                          StackFrame *frame_ptr) {
20178b244e21SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
20188b244e21SEwan Crawford 
2019b9c1b51eSKate Stone   if (!elem.element_ptr.isValid() || !elem.field_count.isValid()) {
202063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
20218b244e21SEwan Crawford     return false;
20228b244e21SEwan Crawford   }
20238b244e21SEwan Crawford 
20248b244e21SEwan Crawford   const short num_exprs = 3;
20254c1d6ee8SJonas Devlieghere   static_assert(num_exprs == (eExprSubelementsArrSize - eExprSubelementsId + 1),
2026b9c1b51eSKate Stone                 "Invalid number of expressions");
20278b244e21SEwan Crawford 
2028ea0636b5SEwan Crawford   char expr_buffer[jit_max_expr_size];
20298b244e21SEwan Crawford   uint64_t results;
20308b244e21SEwan Crawford 
20318b244e21SEwan Crawford   // Iterate over struct fields.
20328b244e21SEwan Crawford   const uint32_t field_count = *elem.field_count.get();
2033b9c1b51eSKate Stone   for (uint32_t field_index = 0; field_index < field_count; ++field_index) {
20348b244e21SEwan Crawford     Element child;
2035b9c1b51eSKate Stone     for (uint32_t expr_index = 0; expr_index < num_exprs; ++expr_index) {
203680af0b9eSLuke Drummond       const char *fmt_str =
2037b9c1b51eSKate Stone           JITTemplate(ExpressionStrings(eExprSubelementsId + expr_index));
203880af0b9eSLuke Drummond       int written = snprintf(expr_buffer, jit_max_expr_size, fmt_str,
203936d783ebSDavid Gross                              context, field_count, field_count, field_count,
204080af0b9eSLuke Drummond                              *elem.element_ptr.get(), field_count, field_index);
204180af0b9eSLuke Drummond       if (written < 0) {
204263e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
20438b244e21SEwan Crawford         return false;
204480af0b9eSLuke Drummond       } else if (written >= jit_max_expr_size) {
204563e5fb76SJonas Devlieghere         LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
20468b244e21SEwan Crawford         return false;
20478b244e21SEwan Crawford       }
20488b244e21SEwan Crawford 
20498b244e21SEwan Crawford       // Perform expression evaluation
20508b244e21SEwan Crawford       if (!EvalRSExpression(expr_buffer, frame_ptr, &results))
20518b244e21SEwan Crawford         return false;
20528b244e21SEwan Crawford 
205363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - expr result 0x%" PRIx64 ".", __FUNCTION__, results);
20548b244e21SEwan Crawford 
2055b9c1b51eSKate Stone       switch (expr_index) {
20568b244e21SEwan Crawford       case 0: // Element* of child
20578b244e21SEwan Crawford         child.element_ptr = static_cast<addr_t>(results);
20588b244e21SEwan Crawford         break;
20598b244e21SEwan Crawford       case 1: // Name of child
20608b244e21SEwan Crawford       {
20618b244e21SEwan Crawford         lldb::addr_t address = static_cast<addr_t>(results);
206297206d57SZachary Turner         Status err;
20638b244e21SEwan Crawford         std::string name;
20648b244e21SEwan Crawford         GetProcess()->ReadCStringFromMemory(address, name, err);
20658b244e21SEwan Crawford         if (!err.Fail())
20668b244e21SEwan Crawford           child.type_name = ConstString(name);
2067b9c1b51eSKate Stone         else {
206863e5fb76SJonas Devlieghere           LLDB_LOGF(log, "%s - warning: Couldn't read field name.",
2069b9c1b51eSKate Stone                     __FUNCTION__);
20708b244e21SEwan Crawford         }
20718b244e21SEwan Crawford         break;
20728b244e21SEwan Crawford       }
20738b244e21SEwan Crawford       case 2: // Array size of child
20748b244e21SEwan Crawford         child.array_size = static_cast<uint32_t>(results);
20758b244e21SEwan Crawford         break;
20768b244e21SEwan Crawford       }
20778b244e21SEwan Crawford     }
20788b244e21SEwan Crawford 
20798b244e21SEwan Crawford     // We need to recursively JIT each Element field of the struct since
20808b244e21SEwan Crawford     // structs can be nested inside structs.
20818b244e21SEwan Crawford     if (!JITElementPacked(child, context, frame_ptr))
20828b244e21SEwan Crawford       return false;
20838b244e21SEwan Crawford     elem.children.push_back(child);
20848b244e21SEwan Crawford   }
20858b244e21SEwan Crawford 
2086b9c1b51eSKate Stone   // Try to infer the name of the struct type so we can pretty print the
2087b9c1b51eSKate Stone   // allocation contents.
20888b244e21SEwan Crawford   FindStructTypeName(elem, frame_ptr);
208915f2bd95SEwan Crawford 
209015f2bd95SEwan Crawford   return true;
209115f2bd95SEwan Crawford }
209215f2bd95SEwan Crawford 
2093a0f08674SEwan Crawford // JITs the RS runtime for the address of the last element in the allocation.
2094b9c1b51eSKate Stone // The `elem_size` parameter represents the size of a single element, including
209580af0b9eSLuke Drummond // padding. Which is needed as an offset from the last element pointer. Using
209680af0b9eSLuke Drummond // this offset minus the starting address we can calculate the size of the
209780af0b9eSLuke Drummond // allocation. Returns true on success, false otherwise
209880af0b9eSLuke Drummond bool RenderScriptRuntime::JITAllocationSize(AllocationDetails *alloc,
2099b9c1b51eSKate Stone                                             StackFrame *frame_ptr) {
2100a0f08674SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2101a0f08674SEwan Crawford 
210280af0b9eSLuke Drummond   if (!alloc->address.isValid() || !alloc->dimension.isValid() ||
210380af0b9eSLuke Drummond       !alloc->data_ptr.isValid() || !alloc->element.datum_size.isValid()) {
210463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
2105a0f08674SEwan Crawford     return false;
2106a0f08674SEwan Crawford   }
2107a0f08674SEwan Crawford 
2108a0f08674SEwan Crawford   // Find dimensions
210980af0b9eSLuke Drummond   uint32_t dim_x = alloc->dimension.get()->dim_1;
211080af0b9eSLuke Drummond   uint32_t dim_y = alloc->dimension.get()->dim_2;
211180af0b9eSLuke Drummond   uint32_t dim_z = alloc->dimension.get()->dim_3;
2112a0f08674SEwan Crawford 
2113b9c1b51eSKate Stone   // Our plan of jitting the last element address doesn't seem to work for
211480af0b9eSLuke Drummond   // struct Allocations` Instead try to infer the size ourselves without any
211580af0b9eSLuke Drummond   // inter element padding.
211680af0b9eSLuke Drummond   if (alloc->element.children.size() > 0) {
2117b9c1b51eSKate Stone     if (dim_x == 0)
2118b9c1b51eSKate Stone       dim_x = 1;
2119b9c1b51eSKate Stone     if (dim_y == 0)
2120b9c1b51eSKate Stone       dim_y = 1;
2121b9c1b51eSKate Stone     if (dim_z == 0)
2122b9c1b51eSKate Stone       dim_z = 1;
21238b244e21SEwan Crawford 
212480af0b9eSLuke Drummond     alloc->size = dim_x * dim_y * dim_z * *alloc->element.datum_size.get();
21258b244e21SEwan Crawford 
212663e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - inferred size of struct allocation %" PRIu32 ".",
212780af0b9eSLuke Drummond               __FUNCTION__, *alloc->size.get());
21288b244e21SEwan Crawford     return true;
21298b244e21SEwan Crawford   }
21308b244e21SEwan Crawford 
213180af0b9eSLuke Drummond   const char *fmt_str = JITTemplate(eExprGetOffsetPtr);
213280af0b9eSLuke Drummond   char expr_buf[jit_max_expr_size];
21338b244e21SEwan Crawford 
2134a0f08674SEwan Crawford   // Calculate last element
2135a0f08674SEwan Crawford   dim_x = dim_x == 0 ? 0 : dim_x - 1;
2136a0f08674SEwan Crawford   dim_y = dim_y == 0 ? 0 : dim_y - 1;
2137a0f08674SEwan Crawford   dim_z = dim_z == 0 ? 0 : dim_z - 1;
2138a0f08674SEwan Crawford 
213980af0b9eSLuke Drummond   int written = snprintf(expr_buf, jit_max_expr_size, fmt_str,
214080af0b9eSLuke Drummond                          *alloc->address.get(), dim_x, dim_y, dim_z);
214180af0b9eSLuke Drummond   if (written < 0) {
214263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
2143a0f08674SEwan Crawford     return false;
214480af0b9eSLuke Drummond   } else if (written >= jit_max_expr_size) {
214563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
2146a0f08674SEwan Crawford     return false;
2147a0f08674SEwan Crawford   }
2148a0f08674SEwan Crawford 
2149a0f08674SEwan Crawford   uint64_t result = 0;
215080af0b9eSLuke Drummond   if (!EvalRSExpression(expr_buf, frame_ptr, &result))
2151a0f08674SEwan Crawford     return false;
2152a0f08674SEwan Crawford 
2153a0f08674SEwan Crawford   addr_t mem_ptr = static_cast<lldb::addr_t>(result);
2154a0f08674SEwan Crawford   // Find pointer to last element and add on size of an element
215580af0b9eSLuke Drummond   alloc->size = static_cast<uint32_t>(mem_ptr - *alloc->data_ptr.get()) +
215680af0b9eSLuke Drummond                 *alloc->element.datum_size.get();
2157a0f08674SEwan Crawford 
2158a0f08674SEwan Crawford   return true;
2159a0f08674SEwan Crawford }
2160a0f08674SEwan Crawford 
2161b9c1b51eSKate Stone // JITs the RS runtime for information about the stride between rows in the
216205097246SAdrian Prantl // allocation. This is done to detect padding, since allocated memory is
216305097246SAdrian Prantl // 16-byte aligned. Returns true on success, false otherwise
216480af0b9eSLuke Drummond bool RenderScriptRuntime::JITAllocationStride(AllocationDetails *alloc,
2165b9c1b51eSKate Stone                                               StackFrame *frame_ptr) {
2166a0f08674SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2167a0f08674SEwan Crawford 
216880af0b9eSLuke Drummond   if (!alloc->address.isValid() || !alloc->data_ptr.isValid()) {
216963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - failed to find allocation details.", __FUNCTION__);
2170a0f08674SEwan Crawford     return false;
2171a0f08674SEwan Crawford   }
2172a0f08674SEwan Crawford 
217380af0b9eSLuke Drummond   const char *fmt_str = JITTemplate(eExprGetOffsetPtr);
217480af0b9eSLuke Drummond   char expr_buf[jit_max_expr_size];
2175a0f08674SEwan Crawford 
217680af0b9eSLuke Drummond   int written = snprintf(expr_buf, jit_max_expr_size, fmt_str,
217780af0b9eSLuke Drummond                          *alloc->address.get(), 0, 1, 0);
217880af0b9eSLuke Drummond   if (written < 0) {
217963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - encoding error in snprintf().", __FUNCTION__);
2180a0f08674SEwan Crawford     return false;
218180af0b9eSLuke Drummond   } else if (written >= jit_max_expr_size) {
218263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - expression too long.", __FUNCTION__);
2183a0f08674SEwan Crawford     return false;
2184a0f08674SEwan Crawford   }
2185a0f08674SEwan Crawford 
2186a0f08674SEwan Crawford   uint64_t result = 0;
218780af0b9eSLuke Drummond   if (!EvalRSExpression(expr_buf, frame_ptr, &result))
2188a0f08674SEwan Crawford     return false;
2189a0f08674SEwan Crawford 
2190a0f08674SEwan Crawford   addr_t mem_ptr = static_cast<lldb::addr_t>(result);
219180af0b9eSLuke Drummond   alloc->stride = static_cast<uint32_t>(mem_ptr - *alloc->data_ptr.get());
2192a0f08674SEwan Crawford 
2193a0f08674SEwan Crawford   return true;
2194a0f08674SEwan Crawford }
2195a0f08674SEwan Crawford 
219615f2bd95SEwan Crawford // JIT all the current runtime info regarding an allocation
219780af0b9eSLuke Drummond bool RenderScriptRuntime::RefreshAllocation(AllocationDetails *alloc,
2198b9c1b51eSKate Stone                                             StackFrame *frame_ptr) {
219915f2bd95SEwan Crawford   // GetOffsetPointer()
220080af0b9eSLuke Drummond   if (!JITDataPointer(alloc, frame_ptr))
220115f2bd95SEwan Crawford     return false;
220215f2bd95SEwan Crawford 
220315f2bd95SEwan Crawford   // rsaAllocationGetType()
220480af0b9eSLuke Drummond   if (!JITTypePointer(alloc, frame_ptr))
220515f2bd95SEwan Crawford     return false;
220615f2bd95SEwan Crawford 
220715f2bd95SEwan Crawford   // rsaTypeGetNativeData()
220880af0b9eSLuke Drummond   if (!JITTypePacked(alloc, frame_ptr))
220915f2bd95SEwan Crawford     return false;
221015f2bd95SEwan Crawford 
221115f2bd95SEwan Crawford   // rsaElementGetNativeData()
221280af0b9eSLuke Drummond   if (!JITElementPacked(alloc->element, *alloc->context.get(), frame_ptr))
221315f2bd95SEwan Crawford     return false;
221415f2bd95SEwan Crawford 
22158b244e21SEwan Crawford   // Sets the datum_size member in Element
221680af0b9eSLuke Drummond   SetElementSize(alloc->element);
22178b244e21SEwan Crawford 
221855232f09SEwan Crawford   // Use GetOffsetPointer() to infer size of the allocation
2219a6682a41SJonas Devlieghere   return JITAllocationSize(alloc, frame_ptr);
222055232f09SEwan Crawford }
222155232f09SEwan Crawford 
2222b9c1b51eSKate Stone // Function attempts to set the type_name member of the paramaterised Element
222305097246SAdrian Prantl // object. This string should be the name of the struct type the Element
222405097246SAdrian Prantl // represents. We need this string for pretty printing the Element to users.
2225b9c1b51eSKate Stone void RenderScriptRuntime::FindStructTypeName(Element &elem,
2226b9c1b51eSKate Stone                                              StackFrame *frame_ptr) {
22278b244e21SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
22288b244e21SEwan Crawford 
22298b244e21SEwan Crawford   if (!elem.type_name.IsEmpty()) // Name already set
22308b244e21SEwan Crawford     return;
22318b244e21SEwan Crawford   else
2232b9c1b51eSKate Stone     elem.type_name = Element::GetFallbackStructName(); // Default type name if
2233b9c1b51eSKate Stone                                                        // we don't succeed
22348b244e21SEwan Crawford 
22358b244e21SEwan Crawford   // Find all the global variables from the script rs modules
223680af0b9eSLuke Drummond   VariableList var_list;
22378b244e21SEwan Crawford   for (auto module_sp : m_rsmodules)
223895eae423SZachary Turner     module_sp->m_module->FindGlobalVariables(
223934cda14bSPavel Labath         RegularExpression(llvm::StringRef(".")), UINT32_MAX, var_list);
22408b244e21SEwan Crawford 
2241b9c1b51eSKate Stone   // Iterate over all the global variables looking for one with a matching type
224205097246SAdrian Prantl   // to the Element. We make the assumption a match exists since there needs to
224305097246SAdrian Prantl   // be a global variable to reflect the struct type back into java host code.
224480af0b9eSLuke Drummond   for (uint32_t i = 0; i < var_list.GetSize(); ++i) {
224580af0b9eSLuke Drummond     const VariableSP var_sp(var_list.GetVariableAtIndex(i));
22468b244e21SEwan Crawford     if (!var_sp)
22478b244e21SEwan Crawford       continue;
22488b244e21SEwan Crawford 
22498b244e21SEwan Crawford     ValueObjectSP valobj_sp = ValueObjectVariable::Create(frame_ptr, var_sp);
22508b244e21SEwan Crawford     if (!valobj_sp)
22518b244e21SEwan Crawford       continue;
22528b244e21SEwan Crawford 
22538b244e21SEwan Crawford     // Find the number of variable fields.
2254b9c1b51eSKate Stone     // If it has no fields, or more fields than our Element, then it can't be
225505097246SAdrian Prantl     // the struct we're looking for. Don't check for equality since RS can add
225605097246SAdrian Prantl     // extra struct members for padding.
22578b244e21SEwan Crawford     size_t num_children = valobj_sp->GetNumChildren();
22588b244e21SEwan Crawford     if (num_children > elem.children.size() || num_children == 0)
22598b244e21SEwan Crawford       continue;
22608b244e21SEwan Crawford 
226105097246SAdrian Prantl     // Iterate over children looking for members with matching field names. If
226205097246SAdrian Prantl     // all the field names match, this is likely the struct we want.
2263b9c1b51eSKate Stone     //   TODO: This could be made more robust by also checking children data
2264b9c1b51eSKate Stone     //   sizes, or array size
22658b244e21SEwan Crawford     bool found = true;
226680af0b9eSLuke Drummond     for (size_t i = 0; i < num_children; ++i) {
226780af0b9eSLuke Drummond       ValueObjectSP child = valobj_sp->GetChildAtIndex(i, true);
226880af0b9eSLuke Drummond       if (!child || (child->GetName() != elem.children[i].type_name)) {
22698b244e21SEwan Crawford         found = false;
22708b244e21SEwan Crawford         break;
22718b244e21SEwan Crawford       }
22728b244e21SEwan Crawford     }
22738b244e21SEwan Crawford 
2274b9c1b51eSKate Stone     // RS can add extra struct members for padding in the format
2275b9c1b51eSKate Stone     // '#rs_padding_[0-9]+'
2276b9c1b51eSKate Stone     if (found && num_children < elem.children.size()) {
2277b3f7f69dSAidan Dodds       const uint32_t size_diff = elem.children.size() - num_children;
227863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - %" PRIu32 " padding struct entries", __FUNCTION__,
2279b9c1b51eSKate Stone                 size_diff);
22808b244e21SEwan Crawford 
228180af0b9eSLuke Drummond       for (uint32_t i = 0; i < size_diff; ++i) {
22820e4c4821SAdrian Prantl         ConstString name = elem.children[num_children + i].type_name;
22838b244e21SEwan Crawford         if (strcmp(name.AsCString(), "#rs_padding") < 0)
22848b244e21SEwan Crawford           found = false;
22858b244e21SEwan Crawford       }
22868b244e21SEwan Crawford     }
22878b244e21SEwan Crawford 
228880af0b9eSLuke Drummond     // We've found a global variable with matching type
2289b9c1b51eSKate Stone     if (found) {
22908b244e21SEwan Crawford       // Dereference since our Element type isn't a pointer.
2291b9c1b51eSKate Stone       if (valobj_sp->IsPointerType()) {
229297206d57SZachary Turner         Status err;
22938b244e21SEwan Crawford         ValueObjectSP deref_valobj = valobj_sp->Dereference(err);
22948b244e21SEwan Crawford         if (!err.Fail())
22958b244e21SEwan Crawford           valobj_sp = deref_valobj;
22968b244e21SEwan Crawford       }
22978b244e21SEwan Crawford 
22988b244e21SEwan Crawford       // Save name of variable in Element.
22998b244e21SEwan Crawford       elem.type_name = valobj_sp->GetTypeName();
230063e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - element name set to %s", __FUNCTION__,
2301b9c1b51eSKate Stone                 elem.type_name.AsCString());
23028b244e21SEwan Crawford 
23038b244e21SEwan Crawford       return;
23048b244e21SEwan Crawford     }
23058b244e21SEwan Crawford   }
23068b244e21SEwan Crawford }
23078b244e21SEwan Crawford 
2308b9c1b51eSKate Stone // Function sets the datum_size member of Element. Representing the size of a
230905097246SAdrian Prantl // single instance including padding. Assumes the relevant allocation
231005097246SAdrian Prantl // information has already been jitted.
2311b9c1b51eSKate Stone void RenderScriptRuntime::SetElementSize(Element &elem) {
23128b244e21SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
23138b244e21SEwan Crawford   const Element::DataType type = *elem.type.get();
2314b9c1b51eSKate Stone   assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_FONT &&
2315b9c1b51eSKate Stone          "Invalid allocation type");
231655232f09SEwan Crawford 
2317b3f7f69dSAidan Dodds   const uint32_t vec_size = *elem.type_vec_size.get();
2318b3f7f69dSAidan Dodds   uint32_t data_size = 0;
2319b3f7f69dSAidan Dodds   uint32_t padding = 0;
232055232f09SEwan Crawford 
23218b244e21SEwan Crawford   // Element is of a struct type, calculate size recursively.
2322b9c1b51eSKate Stone   if ((type == Element::RS_TYPE_NONE) && (elem.children.size() > 0)) {
2323b9c1b51eSKate Stone     for (Element &child : elem.children) {
23248b244e21SEwan Crawford       SetElementSize(child);
2325b9c1b51eSKate Stone       const uint32_t array_size =
2326b9c1b51eSKate Stone           child.array_size.isValid() ? *child.array_size.get() : 1;
23278b244e21SEwan Crawford       data_size += *child.datum_size.get() * array_size;
23288b244e21SEwan Crawford     }
23298b244e21SEwan Crawford   }
2330b3f7f69dSAidan Dodds   // These have been packed already
2331b3f7f69dSAidan Dodds   else if (type == Element::RS_TYPE_UNSIGNED_5_6_5 ||
2332b3f7f69dSAidan Dodds            type == Element::RS_TYPE_UNSIGNED_5_5_5_1 ||
2333b9c1b51eSKate Stone            type == Element::RS_TYPE_UNSIGNED_4_4_4_4) {
23342e920715SEwan Crawford     data_size = AllocationDetails::RSTypeToFormat[type][eElementSize];
2335b9c1b51eSKate Stone   } else if (type < Element::RS_TYPE_ELEMENT) {
2336b9c1b51eSKate Stone     data_size =
2337b9c1b51eSKate Stone         vec_size * AllocationDetails::RSTypeToFormat[type][eElementSize];
23382e920715SEwan Crawford     if (vec_size == 3)
23392e920715SEwan Crawford       padding = AllocationDetails::RSTypeToFormat[type][eElementSize];
2340b9c1b51eSKate Stone   } else
2341b9c1b51eSKate Stone     data_size =
2342b9c1b51eSKate Stone         GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
23438b244e21SEwan Crawford 
23448b244e21SEwan Crawford   elem.padding = padding;
23458b244e21SEwan Crawford   elem.datum_size = data_size + padding;
234663e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - element size set to %" PRIu32, __FUNCTION__,
2347b9c1b51eSKate Stone             data_size + padding);
234855232f09SEwan Crawford }
234955232f09SEwan Crawford 
235005097246SAdrian Prantl // Given an allocation, this function copies the allocation contents from
235105097246SAdrian Prantl // device into a buffer on the heap. Returning a shared pointer to the buffer
235205097246SAdrian Prantl // containing the data.
235355232f09SEwan Crawford std::shared_ptr<uint8_t>
235480af0b9eSLuke Drummond RenderScriptRuntime::GetAllocationData(AllocationDetails *alloc,
2355b9c1b51eSKate Stone                                        StackFrame *frame_ptr) {
235655232f09SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
235755232f09SEwan Crawford 
235855232f09SEwan Crawford   // JIT all the allocation details
235980af0b9eSLuke Drummond   if (alloc->ShouldRefresh()) {
236063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - allocation details not calculated yet, jitting info",
2361b9c1b51eSKate Stone               __FUNCTION__);
236255232f09SEwan Crawford 
236380af0b9eSLuke Drummond     if (!RefreshAllocation(alloc, frame_ptr)) {
236463e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - couldn't JIT allocation details", __FUNCTION__);
236555232f09SEwan Crawford       return nullptr;
236655232f09SEwan Crawford     }
236755232f09SEwan Crawford   }
236855232f09SEwan Crawford 
236980af0b9eSLuke Drummond   assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() &&
237080af0b9eSLuke Drummond          alloc->element.type_vec_size.isValid() && alloc->size.isValid() &&
237180af0b9eSLuke Drummond          "Allocation information not available");
237255232f09SEwan Crawford 
237355232f09SEwan Crawford   // Allocate a buffer to copy data into
237480af0b9eSLuke Drummond   const uint32_t size = *alloc->size.get();
237555232f09SEwan Crawford   std::shared_ptr<uint8_t> buffer(new uint8_t[size]);
2376b9c1b51eSKate Stone   if (!buffer) {
237763e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - couldn't allocate a %" PRIu32 " byte buffer",
2378b9c1b51eSKate Stone               __FUNCTION__, size);
237955232f09SEwan Crawford     return nullptr;
238055232f09SEwan Crawford   }
238155232f09SEwan Crawford 
238255232f09SEwan Crawford   // Read the inferior memory
238397206d57SZachary Turner   Status err;
238480af0b9eSLuke Drummond   lldb::addr_t data_ptr = *alloc->data_ptr.get();
238580af0b9eSLuke Drummond   GetProcess()->ReadMemory(data_ptr, buffer.get(), size, err);
238680af0b9eSLuke Drummond   if (err.Fail()) {
238763e5fb76SJonas Devlieghere     LLDB_LOGF(log,
238863e5fb76SJonas Devlieghere               "%s - '%s' Couldn't read %" PRIu32
2389b9c1b51eSKate Stone               " bytes of allocation data from 0x%" PRIx64,
239080af0b9eSLuke Drummond               __FUNCTION__, err.AsCString(), size, data_ptr);
239155232f09SEwan Crawford     return nullptr;
239255232f09SEwan Crawford   }
239355232f09SEwan Crawford 
239455232f09SEwan Crawford   return buffer;
239555232f09SEwan Crawford }
239655232f09SEwan Crawford 
239705097246SAdrian Prantl // Function copies data from a binary file into an allocation. There is a
239805097246SAdrian Prantl // header at the start of the file, FileHeader, before the data content itself.
2399b9c1b51eSKate Stone // Information from this header is used to display warnings to the user about
2400b9c1b51eSKate Stone // incompatibilities
2401b9c1b51eSKate Stone bool RenderScriptRuntime::LoadAllocation(Stream &strm, const uint32_t alloc_id,
240280af0b9eSLuke Drummond                                          const char *path,
2403b9c1b51eSKate Stone                                          StackFrame *frame_ptr) {
240455232f09SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
240555232f09SEwan Crawford 
240655232f09SEwan Crawford   // Find allocation with the given id
240755232f09SEwan Crawford   AllocationDetails *alloc = FindAllocByID(strm, alloc_id);
240855232f09SEwan Crawford   if (!alloc)
240955232f09SEwan Crawford     return false;
241055232f09SEwan Crawford 
241163e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - found allocation 0x%" PRIx64, __FUNCTION__,
2412b9c1b51eSKate Stone             *alloc->address.get());
241355232f09SEwan Crawford 
241455232f09SEwan Crawford   // JIT all the allocation details
241580af0b9eSLuke Drummond   if (alloc->ShouldRefresh()) {
241663e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - allocation details not calculated yet, jitting info.",
2417b9c1b51eSKate Stone               __FUNCTION__);
241855232f09SEwan Crawford 
2419b9c1b51eSKate Stone     if (!RefreshAllocation(alloc, frame_ptr)) {
242063e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - couldn't JIT allocation details", __FUNCTION__);
24214cfc9198SSylvestre Ledru       return false;
242255232f09SEwan Crawford     }
242355232f09SEwan Crawford   }
242455232f09SEwan Crawford 
2425b9c1b51eSKate Stone   assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() &&
2426b9c1b51eSKate Stone          alloc->element.type_vec_size.isValid() && alloc->size.isValid() &&
2427b9c1b51eSKate Stone          alloc->element.datum_size.isValid() &&
2428b9c1b51eSKate Stone          "Allocation information not available");
242955232f09SEwan Crawford 
243055232f09SEwan Crawford   // Check we can read from file
24318f3be7a3SJonas Devlieghere   FileSpec file(path);
24328f3be7a3SJonas Devlieghere   FileSystem::Instance().Resolve(file);
2433dbd7fabaSJonas Devlieghere   if (!FileSystem::Instance().Exists(file)) {
243480af0b9eSLuke Drummond     strm.Printf("Error: File %s does not exist", path);
243555232f09SEwan Crawford     strm.EOL();
243655232f09SEwan Crawford     return false;
243755232f09SEwan Crawford   }
243855232f09SEwan Crawford 
24397c5310bbSJonas Devlieghere   if (!FileSystem::Instance().Readable(file)) {
244080af0b9eSLuke Drummond     strm.Printf("Error: File %s does not have readable permissions", path);
244155232f09SEwan Crawford     strm.EOL();
244255232f09SEwan Crawford     return false;
244355232f09SEwan Crawford   }
244455232f09SEwan Crawford 
244555232f09SEwan Crawford   // Read file into data buffer
244687e403aaSJonas Devlieghere   auto data_sp = FileSystem::Instance().CreateDataBuffer(file.GetPath());
244755232f09SEwan Crawford 
244855232f09SEwan Crawford   // Cast start of buffer to FileHeader and use pointer to read metadata
244980af0b9eSLuke Drummond   void *file_buf = data_sp->GetBytes();
245080af0b9eSLuke Drummond   if (file_buf == nullptr ||
2451b9c1b51eSKate Stone       data_sp->GetByteSize() < (sizeof(AllocationDetails::FileHeader) +
2452b9c1b51eSKate Stone                                 sizeof(AllocationDetails::ElementHeader))) {
245380af0b9eSLuke Drummond     strm.Printf("Error: File %s does not contain enough data for header", path);
245426e52a70SEwan Crawford     strm.EOL();
245526e52a70SEwan Crawford     return false;
245626e52a70SEwan Crawford   }
2457b9c1b51eSKate Stone   const AllocationDetails::FileHeader *file_header =
245880af0b9eSLuke Drummond       static_cast<AllocationDetails::FileHeader *>(file_buf);
245955232f09SEwan Crawford 
246026e52a70SEwan Crawford   // Check file starts with ascii characters "RSAD"
2461b9c1b51eSKate Stone   if (memcmp(file_header->ident, "RSAD", 4)) {
2462b9c1b51eSKate Stone     strm.Printf("Error: File doesn't contain identifier for an RS allocation "
2463b9c1b51eSKate Stone                 "dump. Are you sure this is the correct file?");
246426e52a70SEwan Crawford     strm.EOL();
246526e52a70SEwan Crawford     return false;
246626e52a70SEwan Crawford   }
246726e52a70SEwan Crawford 
246826e52a70SEwan Crawford   // Look at the type of the root element in the header
246980af0b9eSLuke Drummond   AllocationDetails::ElementHeader root_el_hdr;
247080af0b9eSLuke Drummond   memcpy(&root_el_hdr, static_cast<uint8_t *>(file_buf) +
2471b9c1b51eSKate Stone                            sizeof(AllocationDetails::FileHeader),
247226e52a70SEwan Crawford          sizeof(AllocationDetails::ElementHeader));
247355232f09SEwan Crawford 
247463e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - header type %" PRIu32 ", element size %" PRIu32,
247580af0b9eSLuke Drummond             __FUNCTION__, root_el_hdr.type, root_el_hdr.element_size);
247655232f09SEwan Crawford 
2477b9c1b51eSKate Stone   // Check if the target allocation and file both have the same number of bytes
2478b9c1b51eSKate Stone   // for an Element
247980af0b9eSLuke Drummond   if (*alloc->element.datum_size.get() != root_el_hdr.element_size) {
2480b9c1b51eSKate Stone     strm.Printf("Warning: Mismatched Element sizes - file %" PRIu32
2481b9c1b51eSKate Stone                 " bytes, allocation %" PRIu32 " bytes",
248280af0b9eSLuke Drummond                 root_el_hdr.element_size, *alloc->element.datum_size.get());
248355232f09SEwan Crawford     strm.EOL();
248455232f09SEwan Crawford   }
248555232f09SEwan Crawford 
248626e52a70SEwan Crawford   // Check if the target allocation and file both have the same type
2487b3f7f69dSAidan Dodds   const uint32_t alloc_type = static_cast<uint32_t>(*alloc->element.type.get());
248880af0b9eSLuke Drummond   const uint32_t file_type = root_el_hdr.type;
248926e52a70SEwan Crawford 
2490b9c1b51eSKate Stone   if (file_type > Element::RS_TYPE_FONT) {
249126e52a70SEwan Crawford     strm.Printf("Warning: File has unknown allocation type");
249226e52a70SEwan Crawford     strm.EOL();
2493b9c1b51eSKate Stone   } else if (alloc_type != file_type) {
2494b9c1b51eSKate Stone     // Enum value isn't monotonous, so doesn't always index RsDataTypeToString
2495b9c1b51eSKate Stone     // array
249680af0b9eSLuke Drummond     uint32_t target_type_name_idx = alloc_type;
249780af0b9eSLuke Drummond     uint32_t head_type_name_idx = file_type;
2498b9c1b51eSKate Stone     if (alloc_type >= Element::RS_TYPE_ELEMENT &&
2499b9c1b51eSKate Stone         alloc_type <= Element::RS_TYPE_FONT)
250080af0b9eSLuke Drummond       target_type_name_idx = static_cast<Element::DataType>(
2501b9c1b51eSKate Stone           (alloc_type - Element::RS_TYPE_ELEMENT) +
2502b3f7f69dSAidan Dodds           Element::RS_TYPE_MATRIX_2X2 + 1);
25032e920715SEwan Crawford 
2504b9c1b51eSKate Stone     if (file_type >= Element::RS_TYPE_ELEMENT &&
2505b9c1b51eSKate Stone         file_type <= Element::RS_TYPE_FONT)
250680af0b9eSLuke Drummond       head_type_name_idx = static_cast<Element::DataType>(
2507b9c1b51eSKate Stone           (file_type - Element::RS_TYPE_ELEMENT) + Element::RS_TYPE_MATRIX_2X2 +
2508b9c1b51eSKate Stone           1);
25092e920715SEwan Crawford 
251080af0b9eSLuke Drummond     const char *head_type_name =
251180af0b9eSLuke Drummond         AllocationDetails::RsDataTypeToString[head_type_name_idx][0];
251280af0b9eSLuke Drummond     const char *target_type_name =
251380af0b9eSLuke Drummond         AllocationDetails::RsDataTypeToString[target_type_name_idx][0];
251455232f09SEwan Crawford 
2515b9c1b51eSKate Stone     strm.Printf(
2516b9c1b51eSKate Stone         "Warning: Mismatched Types - file '%s' type, allocation '%s' type",
251780af0b9eSLuke Drummond         head_type_name, target_type_name);
251855232f09SEwan Crawford     strm.EOL();
251955232f09SEwan Crawford   }
252055232f09SEwan Crawford 
252126e52a70SEwan Crawford   // Advance buffer past header
252280af0b9eSLuke Drummond   file_buf = static_cast<uint8_t *>(file_buf) + file_header->hdr_size;
252326e52a70SEwan Crawford 
252455232f09SEwan Crawford   // Calculate size of allocation data in file
252580af0b9eSLuke Drummond   size_t size = data_sp->GetByteSize() - file_header->hdr_size;
252655232f09SEwan Crawford 
252705097246SAdrian Prantl   // Check if the target allocation and file both have the same total data
252805097246SAdrian Prantl   // size.
2529b3f7f69dSAidan Dodds   const uint32_t alloc_size = *alloc->size.get();
253080af0b9eSLuke Drummond   if (alloc_size != size) {
2531b9c1b51eSKate Stone     strm.Printf("Warning: Mismatched allocation sizes - file 0x%" PRIx64
2532b9c1b51eSKate Stone                 " bytes, allocation 0x%" PRIx32 " bytes",
253380af0b9eSLuke Drummond                 (uint64_t)size, alloc_size);
253455232f09SEwan Crawford     strm.EOL();
253580af0b9eSLuke Drummond     // Set length to copy to minimum
253680af0b9eSLuke Drummond     size = alloc_size < size ? alloc_size : size;
253755232f09SEwan Crawford   }
253855232f09SEwan Crawford 
253955232f09SEwan Crawford   // Copy file data from our buffer into the target allocation.
254055232f09SEwan Crawford   lldb::addr_t alloc_data = *alloc->data_ptr.get();
254197206d57SZachary Turner   Status err;
254280af0b9eSLuke Drummond   size_t written = GetProcess()->WriteMemory(alloc_data, file_buf, size, err);
254380af0b9eSLuke Drummond   if (!err.Success() || written != size) {
254480af0b9eSLuke Drummond     strm.Printf("Error: Couldn't write data to allocation %s", err.AsCString());
254555232f09SEwan Crawford     strm.EOL();
254655232f09SEwan Crawford     return false;
254755232f09SEwan Crawford   }
254855232f09SEwan Crawford 
254980af0b9eSLuke Drummond   strm.Printf("Contents of file '%s' read into allocation %" PRIu32, path,
2550b9c1b51eSKate Stone               alloc->id);
255155232f09SEwan Crawford   strm.EOL();
255255232f09SEwan Crawford 
255355232f09SEwan Crawford   return true;
255455232f09SEwan Crawford }
255555232f09SEwan Crawford 
2556b9c1b51eSKate Stone // Function takes as parameters a byte buffer, which will eventually be written
255780af0b9eSLuke Drummond // to file as the element header, an offset into that buffer, and an Element
255805097246SAdrian Prantl // that will be saved into the buffer at the parametrised offset. Return value
255905097246SAdrian Prantl // is the new offset after writing the element into the buffer. Elements are
256005097246SAdrian Prantl // saved to the file as the ElementHeader struct followed by offsets to the
256105097246SAdrian Prantl // structs of all the element's children.
2562b9c1b51eSKate Stone size_t RenderScriptRuntime::PopulateElementHeaders(
2563b9c1b51eSKate Stone     const std::shared_ptr<uint8_t> header_buffer, size_t offset,
2564b9c1b51eSKate Stone     const Element &elem) {
256505097246SAdrian Prantl   // File struct for an element header with all the relevant details copied
256605097246SAdrian Prantl   // from elem. We assume members are valid already.
256726e52a70SEwan Crawford   AllocationDetails::ElementHeader elem_header;
256826e52a70SEwan Crawford   elem_header.type = *elem.type.get();
256926e52a70SEwan Crawford   elem_header.kind = *elem.type_kind.get();
257026e52a70SEwan Crawford   elem_header.element_size = *elem.datum_size.get();
257126e52a70SEwan Crawford   elem_header.vector_size = *elem.type_vec_size.get();
2572b9c1b51eSKate Stone   elem_header.array_size =
2573b9c1b51eSKate Stone       elem.array_size.isValid() ? *elem.array_size.get() : 0;
257426e52a70SEwan Crawford   const size_t elem_header_size = sizeof(AllocationDetails::ElementHeader);
257526e52a70SEwan Crawford 
257605097246SAdrian Prantl   // Copy struct into buffer and advance offset We assume that header_buffer
257705097246SAdrian Prantl   // has been checked for nullptr before this method is called
257826e52a70SEwan Crawford   memcpy(header_buffer.get() + offset, &elem_header, elem_header_size);
257926e52a70SEwan Crawford   offset += elem_header_size;
258026e52a70SEwan Crawford 
258126e52a70SEwan Crawford   // Starting offset of child ElementHeader struct
2582b9c1b51eSKate Stone   size_t child_offset =
2583b9c1b51eSKate Stone       offset + ((elem.children.size() + 1) * sizeof(uint32_t));
2584b9c1b51eSKate Stone   for (const RenderScriptRuntime::Element &child : elem.children) {
2585b9c1b51eSKate Stone     // Recursively populate the buffer with the element header structs of
258680af0b9eSLuke Drummond     // children. Then save the offsets where they were set after the parent
258780af0b9eSLuke Drummond     // element header.
258826e52a70SEwan Crawford     memcpy(header_buffer.get() + offset, &child_offset, sizeof(uint32_t));
258926e52a70SEwan Crawford     offset += sizeof(uint32_t);
259026e52a70SEwan Crawford 
259126e52a70SEwan Crawford     child_offset = PopulateElementHeaders(header_buffer, child_offset, child);
259226e52a70SEwan Crawford   }
259326e52a70SEwan Crawford 
259426e52a70SEwan Crawford   // Zero indicates no more children
259526e52a70SEwan Crawford   memset(header_buffer.get() + offset, 0, sizeof(uint32_t));
259626e52a70SEwan Crawford 
259726e52a70SEwan Crawford   return child_offset;
259826e52a70SEwan Crawford }
259926e52a70SEwan Crawford 
2600b9c1b51eSKate Stone // Given an Element object this function returns the total size needed in the
260180af0b9eSLuke Drummond // file header to store the element's details. Taking into account the size of
260280af0b9eSLuke Drummond // the element header struct, plus the offsets to all the element's children.
2603b9c1b51eSKate Stone // Function is recursive so that the size of all ancestors is taken into
2604b9c1b51eSKate Stone // account.
2605b9c1b51eSKate Stone size_t RenderScriptRuntime::CalculateElementHeaderSize(const Element &elem) {
260680af0b9eSLuke Drummond   // Offsets to children plus zero terminator
260780af0b9eSLuke Drummond   size_t size = (elem.children.size() + 1) * sizeof(uint32_t);
260880af0b9eSLuke Drummond   // Size of header struct with type details
260980af0b9eSLuke Drummond   size += sizeof(AllocationDetails::ElementHeader);
261026e52a70SEwan Crawford 
261126e52a70SEwan Crawford   // Calculate recursively for all descendants
261226e52a70SEwan Crawford   for (const Element &child : elem.children)
261326e52a70SEwan Crawford     size += CalculateElementHeaderSize(child);
261426e52a70SEwan Crawford 
261526e52a70SEwan Crawford   return size;
261626e52a70SEwan Crawford }
261726e52a70SEwan Crawford 
261805097246SAdrian Prantl // Function copies allocation contents into a binary file. This file can then
261905097246SAdrian Prantl // be loaded later into a different allocation. There is a header, FileHeader,
262080af0b9eSLuke Drummond // before the allocation data containing meta-data.
2621b9c1b51eSKate Stone bool RenderScriptRuntime::SaveAllocation(Stream &strm, const uint32_t alloc_id,
262280af0b9eSLuke Drummond                                          const char *path,
2623b9c1b51eSKate Stone                                          StackFrame *frame_ptr) {
262455232f09SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
262555232f09SEwan Crawford 
262655232f09SEwan Crawford   // Find allocation with the given id
262755232f09SEwan Crawford   AllocationDetails *alloc = FindAllocByID(strm, alloc_id);
262855232f09SEwan Crawford   if (!alloc)
262955232f09SEwan Crawford     return false;
263055232f09SEwan Crawford 
263163e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - found allocation 0x%" PRIx64 ".", __FUNCTION__,
2632b9c1b51eSKate Stone             *alloc->address.get());
263355232f09SEwan Crawford 
263455232f09SEwan Crawford   // JIT all the allocation details
263580af0b9eSLuke Drummond   if (alloc->ShouldRefresh()) {
263663e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - allocation details not calculated yet, jitting info.",
2637b9c1b51eSKate Stone               __FUNCTION__);
263855232f09SEwan Crawford 
2639b9c1b51eSKate Stone     if (!RefreshAllocation(alloc, frame_ptr)) {
264063e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - couldn't JIT allocation details.", __FUNCTION__);
26414cfc9198SSylvestre Ledru       return false;
264255232f09SEwan Crawford     }
264355232f09SEwan Crawford   }
264455232f09SEwan Crawford 
2645b9c1b51eSKate Stone   assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() &&
2646b9c1b51eSKate Stone          alloc->element.type_vec_size.isValid() &&
2647b9c1b51eSKate Stone          alloc->element.datum_size.get() &&
2648b9c1b51eSKate Stone          alloc->element.type_kind.isValid() && alloc->dimension.isValid() &&
2649b3f7f69dSAidan Dodds          "Allocation information not available");
265055232f09SEwan Crawford 
265155232f09SEwan Crawford   // Check we can create writable file
26528f3be7a3SJonas Devlieghere   FileSpec file_spec(path);
26538f3be7a3SJonas Devlieghere   FileSystem::Instance().Resolve(file_spec);
265450bc1ed2SJonas Devlieghere   File file;
265550bc1ed2SJonas Devlieghere   FileSystem::Instance().Open(file, file_spec,
265650bc1ed2SJonas Devlieghere                               File::eOpenOptionWrite |
265750bc1ed2SJonas Devlieghere                                   File::eOpenOptionCanCreate |
2658b9c1b51eSKate Stone                                   File::eOpenOptionTruncate);
265950bc1ed2SJonas Devlieghere 
2660b9c1b51eSKate Stone   if (!file) {
266180af0b9eSLuke Drummond     strm.Printf("Error: Failed to open '%s' for writing", path);
266255232f09SEwan Crawford     strm.EOL();
266355232f09SEwan Crawford     return false;
266455232f09SEwan Crawford   }
266555232f09SEwan Crawford 
266655232f09SEwan Crawford   // Read allocation into buffer of heap memory
266755232f09SEwan Crawford   const std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
2668b9c1b51eSKate Stone   if (!buffer) {
266955232f09SEwan Crawford     strm.Printf("Error: Couldn't read allocation data into buffer");
267055232f09SEwan Crawford     strm.EOL();
267155232f09SEwan Crawford     return false;
267255232f09SEwan Crawford   }
267355232f09SEwan Crawford 
267455232f09SEwan Crawford   // Create the file header
267555232f09SEwan Crawford   AllocationDetails::FileHeader head;
2676b3f7f69dSAidan Dodds   memcpy(head.ident, "RSAD", 4);
26772d62328aSEwan Crawford   head.dims[0] = static_cast<uint32_t>(alloc->dimension.get()->dim_1);
26782d62328aSEwan Crawford   head.dims[1] = static_cast<uint32_t>(alloc->dimension.get()->dim_2);
26792d62328aSEwan Crawford   head.dims[2] = static_cast<uint32_t>(alloc->dimension.get()->dim_3);
268026e52a70SEwan Crawford 
268126e52a70SEwan Crawford   const size_t element_header_size = CalculateElementHeaderSize(alloc->element);
2682b9c1b51eSKate Stone   assert((sizeof(AllocationDetails::FileHeader) + element_header_size) <
2683b9c1b51eSKate Stone              UINT16_MAX &&
2684b9c1b51eSKate Stone          "Element header too large");
2685b9c1b51eSKate Stone   head.hdr_size = static_cast<uint16_t>(sizeof(AllocationDetails::FileHeader) +
2686b9c1b51eSKate Stone                                         element_header_size);
268755232f09SEwan Crawford 
268855232f09SEwan Crawford   // Write the file header
268955232f09SEwan Crawford   size_t num_bytes = sizeof(AllocationDetails::FileHeader);
269063e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - writing File Header, 0x%" PRIx64 " bytes", __FUNCTION__,
2691b9c1b51eSKate Stone             (uint64_t)num_bytes);
269226e52a70SEwan Crawford 
269397206d57SZachary Turner   Status err = file.Write(&head, num_bytes);
2694b9c1b51eSKate Stone   if (!err.Success()) {
269580af0b9eSLuke Drummond     strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), path);
269626e52a70SEwan Crawford     strm.EOL();
269726e52a70SEwan Crawford     return false;
269826e52a70SEwan Crawford   }
269926e52a70SEwan Crawford 
270026e52a70SEwan Crawford   // Create the headers describing the element type of the allocation.
2701b9c1b51eSKate Stone   std::shared_ptr<uint8_t> element_header_buffer(
2702b9c1b51eSKate Stone       new uint8_t[element_header_size]);
2703b9c1b51eSKate Stone   if (element_header_buffer == nullptr) {
2704b9c1b51eSKate Stone     strm.Printf("Internal Error: Couldn't allocate %" PRIu64
2705b9c1b51eSKate Stone                 " bytes on the heap",
2706b9c1b51eSKate Stone                 (uint64_t)element_header_size);
270726e52a70SEwan Crawford     strm.EOL();
270826e52a70SEwan Crawford     return false;
270926e52a70SEwan Crawford   }
271026e52a70SEwan Crawford 
271126e52a70SEwan Crawford   PopulateElementHeaders(element_header_buffer, 0, alloc->element);
271226e52a70SEwan Crawford 
271326e52a70SEwan Crawford   // Write headers for allocation element type to file
271426e52a70SEwan Crawford   num_bytes = element_header_size;
271563e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - writing element headers, 0x%" PRIx64 " bytes.",
2716b9c1b51eSKate Stone             __FUNCTION__, (uint64_t)num_bytes);
271726e52a70SEwan Crawford 
271826e52a70SEwan Crawford   err = file.Write(element_header_buffer.get(), num_bytes);
2719b9c1b51eSKate Stone   if (!err.Success()) {
272080af0b9eSLuke Drummond     strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), path);
272155232f09SEwan Crawford     strm.EOL();
272255232f09SEwan Crawford     return false;
272355232f09SEwan Crawford   }
272455232f09SEwan Crawford 
272555232f09SEwan Crawford   // Write allocation data to file
272655232f09SEwan Crawford   num_bytes = static_cast<size_t>(*alloc->size.get());
272763e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - writing 0x%" PRIx64 " bytes", __FUNCTION__,
2728b9c1b51eSKate Stone             (uint64_t)num_bytes);
272955232f09SEwan Crawford 
273055232f09SEwan Crawford   err = file.Write(buffer.get(), num_bytes);
2731b9c1b51eSKate Stone   if (!err.Success()) {
273280af0b9eSLuke Drummond     strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), path);
273355232f09SEwan Crawford     strm.EOL();
273455232f09SEwan Crawford     return false;
273555232f09SEwan Crawford   }
273655232f09SEwan Crawford 
273780af0b9eSLuke Drummond   strm.Printf("Allocation written to file '%s'", path);
273855232f09SEwan Crawford   strm.EOL();
273915f2bd95SEwan Crawford   return true;
274015f2bd95SEwan Crawford }
274115f2bd95SEwan Crawford 
2742b9c1b51eSKate Stone bool RenderScriptRuntime::LoadModule(const lldb::ModuleSP &module_sp) {
27434640cde1SColin Riley   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
27444640cde1SColin Riley 
2745b9c1b51eSKate Stone   if (module_sp) {
2746b9c1b51eSKate Stone     for (const auto &rs_module : m_rsmodules) {
2747b9c1b51eSKate Stone       if (rs_module->m_module == module_sp) {
274805097246SAdrian Prantl         // Check if the user has enabled automatically breaking on all RS
274905097246SAdrian Prantl         // kernels.
27507dc7771cSEwan Crawford         if (m_breakAllKernels)
27517dc7771cSEwan Crawford           BreakOnModuleKernels(rs_module);
27527dc7771cSEwan Crawford 
27535ec532a9SColin Riley         return false;
27545ec532a9SColin Riley       }
27557dc7771cSEwan Crawford     }
2756ef20b08fSColin Riley     bool module_loaded = false;
2757b9c1b51eSKate Stone     switch (GetModuleKind(module_sp)) {
2758b9c1b51eSKate Stone     case eModuleKindKernelObj: {
27594640cde1SColin Riley       RSModuleDescriptorSP module_desc;
2760796ac80bSJonas Devlieghere       module_desc = std::make_shared<RSModuleDescriptor>(module_sp);
2761b9c1b51eSKate Stone       if (module_desc->ParseRSInfo()) {
27625ec532a9SColin Riley         m_rsmodules.push_back(module_desc);
276347d64161SLuke Drummond         module_desc->WarnIfVersionMismatch(GetProcess()
276447d64161SLuke Drummond                                                ->GetTarget()
276547d64161SLuke Drummond                                                .GetDebugger()
276647d64161SLuke Drummond                                                .GetAsyncOutputStream()
276747d64161SLuke Drummond                                                .get());
2768ef20b08fSColin Riley         module_loaded = true;
27695ec532a9SColin Riley       }
2770b9c1b51eSKate Stone       if (module_loaded) {
27714640cde1SColin Riley         FixupScriptDetails(module_desc);
27724640cde1SColin Riley       }
2773ef20b08fSColin Riley       break;
2774ef20b08fSColin Riley     }
2775b9c1b51eSKate Stone     case eModuleKindDriver: {
2776b9c1b51eSKate Stone       if (!m_libRSDriver) {
27774640cde1SColin Riley         m_libRSDriver = module_sp;
27784640cde1SColin Riley         LoadRuntimeHooks(m_libRSDriver, RenderScriptRuntime::eModuleKindDriver);
27794640cde1SColin Riley       }
27804640cde1SColin Riley       break;
27814640cde1SColin Riley     }
2782b9c1b51eSKate Stone     case eModuleKindImpl: {
278321fed052SAidan Dodds       if (!m_libRSCpuRef) {
27844640cde1SColin Riley         m_libRSCpuRef = module_sp;
278521fed052SAidan Dodds         LoadRuntimeHooks(m_libRSCpuRef, RenderScriptRuntime::eModuleKindImpl);
278621fed052SAidan Dodds       }
27874640cde1SColin Riley       break;
27884640cde1SColin Riley     }
2789b9c1b51eSKate Stone     case eModuleKindLibRS: {
2790b9c1b51eSKate Stone       if (!m_libRS) {
27914640cde1SColin Riley         m_libRS = module_sp;
27924640cde1SColin Riley         static ConstString gDbgPresentStr("gDebuggerPresent");
2793b9c1b51eSKate Stone         const Symbol *debug_present = m_libRS->FindFirstSymbolWithNameAndType(
2794b9c1b51eSKate Stone             gDbgPresentStr, eSymbolTypeData);
2795b9c1b51eSKate Stone         if (debug_present) {
279697206d57SZachary Turner           Status err;
27974640cde1SColin Riley           uint32_t flag = 0x00000001U;
27984640cde1SColin Riley           Target &target = GetProcess()->GetTarget();
2799358cf1eaSGreg Clayton           addr_t addr = debug_present->GetLoadAddress(&target);
280080af0b9eSLuke Drummond           GetProcess()->WriteMemory(addr, &flag, sizeof(flag), err);
280180af0b9eSLuke Drummond           if (err.Success()) {
280263e5fb76SJonas Devlieghere             LLDB_LOGF(log, "%s - debugger present flag set on debugee.",
2803b9c1b51eSKate Stone                       __FUNCTION__);
28044640cde1SColin Riley 
28054640cde1SColin Riley             m_debuggerPresentFlagged = true;
2806b9c1b51eSKate Stone           } else if (log) {
280763e5fb76SJonas Devlieghere             LLDB_LOGF(log, "%s - error writing debugger present flags '%s' ",
280880af0b9eSLuke Drummond                       __FUNCTION__, err.AsCString());
28094640cde1SColin Riley           }
2810b9c1b51eSKate Stone         } else if (log) {
281163e5fb76SJonas Devlieghere           LLDB_LOGF(
281263e5fb76SJonas Devlieghere               log,
2813b9c1b51eSKate Stone               "%s - error writing debugger present flags - symbol not found",
2814b9c1b51eSKate Stone               __FUNCTION__);
28154640cde1SColin Riley         }
28164640cde1SColin Riley       }
28174640cde1SColin Riley       break;
28184640cde1SColin Riley     }
2819ef20b08fSColin Riley     default:
2820ef20b08fSColin Riley       break;
2821ef20b08fSColin Riley     }
2822ef20b08fSColin Riley     if (module_loaded)
2823ef20b08fSColin Riley       Update();
2824ef20b08fSColin Riley     return module_loaded;
28255ec532a9SColin Riley   }
28265ec532a9SColin Riley   return false;
28275ec532a9SColin Riley }
28285ec532a9SColin Riley 
2829b9c1b51eSKate Stone void RenderScriptRuntime::Update() {
2830b9c1b51eSKate Stone   if (m_rsmodules.size() > 0) {
2831b9c1b51eSKate Stone     if (!m_initiated) {
2832ef20b08fSColin Riley       Initiate();
2833ef20b08fSColin Riley     }
2834ef20b08fSColin Riley   }
2835ef20b08fSColin Riley }
2836ef20b08fSColin Riley 
283747d64161SLuke Drummond void RSModuleDescriptor::WarnIfVersionMismatch(lldb_private::Stream *s) const {
283847d64161SLuke Drummond   if (!s)
283947d64161SLuke Drummond     return;
284047d64161SLuke Drummond 
284147d64161SLuke Drummond   if (m_slang_version.empty() || m_bcc_version.empty()) {
284247d64161SLuke Drummond     s->PutCString("WARNING: Unknown bcc or slang (llvm-rs-cc) version; debug "
284347d64161SLuke Drummond                   "experience may be unreliable");
284447d64161SLuke Drummond     s->EOL();
284547d64161SLuke Drummond   } else if (m_slang_version != m_bcc_version) {
284647d64161SLuke Drummond     s->Printf("WARNING: The debug info emitted by the slang frontend "
284747d64161SLuke Drummond               "(llvm-rs-cc) used to build this module (%s) does not match the "
284847d64161SLuke Drummond               "version of bcc used to generate the debug information (%s). "
284947d64161SLuke Drummond               "This is an unsupported configuration and may result in a poor "
285047d64161SLuke Drummond               "debugging experience; proceed with caution",
285147d64161SLuke Drummond               m_slang_version.c_str(), m_bcc_version.c_str());
285247d64161SLuke Drummond     s->EOL();
285347d64161SLuke Drummond   }
285447d64161SLuke Drummond }
285547d64161SLuke Drummond 
28567f193d69SLuke Drummond bool RSModuleDescriptor::ParsePragmaCount(llvm::StringRef *lines,
28577f193d69SLuke Drummond                                           size_t n_lines) {
28587f193d69SLuke Drummond   // Skip the pragma prototype line
28597f193d69SLuke Drummond   ++lines;
28607f193d69SLuke Drummond   for (; n_lines--; ++lines) {
28617f193d69SLuke Drummond     const auto kv_pair = lines->split(" - ");
28627f193d69SLuke Drummond     m_pragmas[kv_pair.first.trim().str()] = kv_pair.second.trim().str();
28637f193d69SLuke Drummond   }
28647f193d69SLuke Drummond   return true;
28657f193d69SLuke Drummond }
28667f193d69SLuke Drummond 
28677f193d69SLuke Drummond bool RSModuleDescriptor::ParseExportReduceCount(llvm::StringRef *lines,
28687f193d69SLuke Drummond                                                 size_t n_lines) {
28697f193d69SLuke Drummond   // The list of reduction kernels in the `.rs.info` symbol is of the form
28707f193d69SLuke Drummond   // "signature - accumulatordatasize - reduction_name - initializer_name -
287105097246SAdrian Prantl   // accumulator_name - combiner_name - outconverter_name - halter_name" Where
287205097246SAdrian Prantl   // a function is not explicitly named by the user, or is not generated by the
287305097246SAdrian Prantl   // compiler, it is named "." so the dash separated list should always be 8
287405097246SAdrian Prantl   // items long
28757f193d69SLuke Drummond   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
28767f193d69SLuke Drummond   // Skip the exportReduceCount line
28777f193d69SLuke Drummond   ++lines;
28787f193d69SLuke Drummond   for (; n_lines--; ++lines) {
28797f193d69SLuke Drummond     llvm::SmallVector<llvm::StringRef, 8> spec;
28807f193d69SLuke Drummond     lines->split(spec, " - ");
28817f193d69SLuke Drummond     if (spec.size() != 8) {
28827f193d69SLuke Drummond       if (spec.size() < 8) {
28837f193d69SLuke Drummond         if (log)
28847f193d69SLuke Drummond           log->Error("Error parsing RenderScript reduction spec. wrong number "
28857f193d69SLuke Drummond                      "of fields");
28867f193d69SLuke Drummond         return false;
28877f193d69SLuke Drummond       } else if (log)
28887f193d69SLuke Drummond         log->Warning("Extraneous members in reduction spec: '%s'",
28897f193d69SLuke Drummond                      lines->str().c_str());
28907f193d69SLuke Drummond     }
28917f193d69SLuke Drummond 
28927f193d69SLuke Drummond     const auto sig_s = spec[0];
28937f193d69SLuke Drummond     uint32_t sig;
28947f193d69SLuke Drummond     if (sig_s.getAsInteger(10, sig)) {
28957f193d69SLuke Drummond       if (log)
28967f193d69SLuke Drummond         log->Error("Error parsing Renderscript reduction spec: invalid kernel "
28977f193d69SLuke Drummond                    "signature: '%s'",
28987f193d69SLuke Drummond                    sig_s.str().c_str());
28997f193d69SLuke Drummond       return false;
29007f193d69SLuke Drummond     }
29017f193d69SLuke Drummond 
29027f193d69SLuke Drummond     const auto accum_data_size_s = spec[1];
29037f193d69SLuke Drummond     uint32_t accum_data_size;
29047f193d69SLuke Drummond     if (accum_data_size_s.getAsInteger(10, accum_data_size)) {
29057f193d69SLuke Drummond       if (log)
29067f193d69SLuke Drummond         log->Error("Error parsing Renderscript reduction spec: invalid "
29077f193d69SLuke Drummond                    "accumulator data size %s",
29087f193d69SLuke Drummond                    accum_data_size_s.str().c_str());
29097f193d69SLuke Drummond       return false;
29107f193d69SLuke Drummond     }
29117f193d69SLuke Drummond 
291263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "Found RenderScript reduction '%s'", spec[2].str().c_str());
29137f193d69SLuke Drummond 
29147f193d69SLuke Drummond     m_reductions.push_back(RSReductionDescriptor(this, sig, accum_data_size,
29157f193d69SLuke Drummond                                                  spec[2], spec[3], spec[4],
29167f193d69SLuke Drummond                                                  spec[5], spec[6], spec[7]));
29177f193d69SLuke Drummond   }
29187f193d69SLuke Drummond   return true;
29197f193d69SLuke Drummond }
29207f193d69SLuke Drummond 
292147d64161SLuke Drummond bool RSModuleDescriptor::ParseVersionInfo(llvm::StringRef *lines,
292247d64161SLuke Drummond                                           size_t n_lines) {
292347d64161SLuke Drummond   // Skip the versionInfo line
292447d64161SLuke Drummond   ++lines;
292547d64161SLuke Drummond   for (; n_lines--; ++lines) {
292647d64161SLuke Drummond     // We're only interested in bcc and slang versions, and ignore all other
292747d64161SLuke Drummond     // versionInfo lines
292847d64161SLuke Drummond     const auto kv_pair = lines->split(" - ");
292947d64161SLuke Drummond     if (kv_pair.first == "slang")
293047d64161SLuke Drummond       m_slang_version = kv_pair.second.str();
293147d64161SLuke Drummond     else if (kv_pair.first == "bcc")
293247d64161SLuke Drummond       m_bcc_version = kv_pair.second.str();
293347d64161SLuke Drummond   }
293447d64161SLuke Drummond   return true;
293547d64161SLuke Drummond }
293647d64161SLuke Drummond 
29377f193d69SLuke Drummond bool RSModuleDescriptor::ParseExportForeachCount(llvm::StringRef *lines,
29387f193d69SLuke Drummond                                                  size_t n_lines) {
29397f193d69SLuke Drummond   // Skip the exportForeachCount line
29407f193d69SLuke Drummond   ++lines;
29417f193d69SLuke Drummond   for (; n_lines--; ++lines) {
29427f193d69SLuke Drummond     uint32_t slot;
29437f193d69SLuke Drummond     // `forEach` kernels are listed in the `.rs.info` packet as a "slot - name"
29447f193d69SLuke Drummond     // pair per line
29457f193d69SLuke Drummond     const auto kv_pair = lines->split(" - ");
29467f193d69SLuke Drummond     if (kv_pair.first.getAsInteger(10, slot))
29477f193d69SLuke Drummond       return false;
29487f193d69SLuke Drummond     m_kernels.push_back(RSKernelDescriptor(this, kv_pair.second, slot));
29497f193d69SLuke Drummond   }
29507f193d69SLuke Drummond   return true;
29517f193d69SLuke Drummond }
29527f193d69SLuke Drummond 
29537f193d69SLuke Drummond bool RSModuleDescriptor::ParseExportVarCount(llvm::StringRef *lines,
29547f193d69SLuke Drummond                                              size_t n_lines) {
29557f193d69SLuke Drummond   // Skip the ExportVarCount line
29567f193d69SLuke Drummond   ++lines;
29577f193d69SLuke Drummond   for (; n_lines--; ++lines)
29587f193d69SLuke Drummond     m_globals.push_back(RSGlobalDescriptor(this, *lines));
29597f193d69SLuke Drummond   return true;
29607f193d69SLuke Drummond }
29615ec532a9SColin Riley 
2962b9c1b51eSKate Stone // The .rs.info symbol in renderscript modules contains a string which needs to
296305097246SAdrian Prantl // be parsed. The string is basic and is parsed on a line by line basis.
2964b9c1b51eSKate Stone bool RSModuleDescriptor::ParseRSInfo() {
2965b0be30f7SAidan Dodds   assert(m_module);
29667f193d69SLuke Drummond   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2967b9c1b51eSKate Stone   const Symbol *info_sym = m_module->FindFirstSymbolWithNameAndType(
2968b9c1b51eSKate Stone       ConstString(".rs.info"), eSymbolTypeData);
2969b0be30f7SAidan Dodds   if (!info_sym)
2970b0be30f7SAidan Dodds     return false;
2971b0be30f7SAidan Dodds 
2972358cf1eaSGreg Clayton   const addr_t addr = info_sym->GetAddressRef().GetFileAddress();
2973b0be30f7SAidan Dodds   if (addr == LLDB_INVALID_ADDRESS)
2974b0be30f7SAidan Dodds     return false;
2975b0be30f7SAidan Dodds 
29765ec532a9SColin Riley   const addr_t size = info_sym->GetByteSize();
29775ec532a9SColin Riley   const FileSpec fs = m_module->GetFileSpec();
29785ec532a9SColin Riley 
297987e403aaSJonas Devlieghere   auto buffer =
298087e403aaSJonas Devlieghere       FileSystem::Instance().CreateDataBuffer(fs.GetPath(), size, addr);
29815ec532a9SColin Riley   if (!buffer)
29825ec532a9SColin Riley     return false;
29835ec532a9SColin Riley 
2984b0be30f7SAidan Dodds   // split rs.info. contents into lines
29857f193d69SLuke Drummond   llvm::SmallVector<llvm::StringRef, 128> info_lines;
29865ec532a9SColin Riley   {
29877f193d69SLuke Drummond     const llvm::StringRef raw_rs_info((const char *)buffer->GetBytes());
29887f193d69SLuke Drummond     raw_rs_info.split(info_lines, '\n');
298963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "'.rs.info symbol for '%s':\n%s",
299063e5fb76SJonas Devlieghere               m_module->GetFileSpec().GetCString(), raw_rs_info.str().c_str());
2991b0be30f7SAidan Dodds   }
2992b0be30f7SAidan Dodds 
29937f193d69SLuke Drummond   enum {
29947f193d69SLuke Drummond     eExportVar,
29957f193d69SLuke Drummond     eExportForEach,
29967f193d69SLuke Drummond     eExportReduce,
29977f193d69SLuke Drummond     ePragma,
29987f193d69SLuke Drummond     eBuildChecksum,
299947d64161SLuke Drummond     eObjectSlot,
300047d64161SLuke Drummond     eVersionInfo,
30017f193d69SLuke Drummond   };
30027f193d69SLuke Drummond 
3003b3bbcb12SLuke Drummond   const auto rs_info_handler = [](llvm::StringRef name) -> int {
3004b3bbcb12SLuke Drummond     return llvm::StringSwitch<int>(name)
3005b3bbcb12SLuke Drummond         // The number of visible global variables in the script
3006b3bbcb12SLuke Drummond         .Case("exportVarCount", eExportVar)
30077f193d69SLuke Drummond         // The number of RenderScrip `forEach` kernels __attribute__((kernel))
3008b3bbcb12SLuke Drummond         .Case("exportForEachCount", eExportForEach)
3009b3bbcb12SLuke Drummond         // The number of generalreductions: This marked in the script by
3010b3bbcb12SLuke Drummond         // `#pragma reduce()`
3011b3bbcb12SLuke Drummond         .Case("exportReduceCount", eExportReduce)
3012b3bbcb12SLuke Drummond         // Total count of all RenderScript specific `#pragmas` used in the
3013b3bbcb12SLuke Drummond         // script
3014b3bbcb12SLuke Drummond         .Case("pragmaCount", ePragma)
3015b3bbcb12SLuke Drummond         .Case("objectSlotCount", eObjectSlot)
301647d64161SLuke Drummond         .Case("versionInfo", eVersionInfo)
3017b3bbcb12SLuke Drummond         .Default(-1);
3018b3bbcb12SLuke Drummond   };
3019b0be30f7SAidan Dodds 
3020b0be30f7SAidan Dodds   // parse all text lines of .rs.info
3021b9c1b51eSKate Stone   for (auto line = info_lines.begin(); line != info_lines.end(); ++line) {
30227f193d69SLuke Drummond     const auto kv_pair = line->split(": ");
30237f193d69SLuke Drummond     const auto key = kv_pair.first;
30247f193d69SLuke Drummond     const auto val = kv_pair.second.trim();
30255ec532a9SColin Riley 
3026b3bbcb12SLuke Drummond     const auto handler = rs_info_handler(key);
3027b3bbcb12SLuke Drummond     if (handler == -1)
30287f193d69SLuke Drummond       continue;
302905097246SAdrian Prantl     // getAsInteger returns `true` on an error condition - we're only
303005097246SAdrian Prantl     // interested in numeric fields at the moment
30317f193d69SLuke Drummond     uint64_t n_lines;
30327f193d69SLuke Drummond     if (val.getAsInteger(10, n_lines)) {
30336302bf6aSPavel Labath       LLDB_LOGV(log, "Failed to parse non-numeric '.rs.info' section {0}",
30346302bf6aSPavel Labath                 line->str());
30357f193d69SLuke Drummond       continue;
30367f193d69SLuke Drummond     }
30377f193d69SLuke Drummond     if (info_lines.end() - (line + 1) < (ptrdiff_t)n_lines)
30387f193d69SLuke Drummond       return false;
30397f193d69SLuke Drummond 
30407f193d69SLuke Drummond     bool success = false;
3041b3bbcb12SLuke Drummond     switch (handler) {
30427f193d69SLuke Drummond     case eExportVar:
30437f193d69SLuke Drummond       success = ParseExportVarCount(line, n_lines);
30447f193d69SLuke Drummond       break;
30457f193d69SLuke Drummond     case eExportForEach:
30467f193d69SLuke Drummond       success = ParseExportForeachCount(line, n_lines);
30477f193d69SLuke Drummond       break;
30487f193d69SLuke Drummond     case eExportReduce:
30497f193d69SLuke Drummond       success = ParseExportReduceCount(line, n_lines);
30507f193d69SLuke Drummond       break;
30517f193d69SLuke Drummond     case ePragma:
30527f193d69SLuke Drummond       success = ParsePragmaCount(line, n_lines);
30537f193d69SLuke Drummond       break;
305447d64161SLuke Drummond     case eVersionInfo:
305547d64161SLuke Drummond       success = ParseVersionInfo(line, n_lines);
305647d64161SLuke Drummond       break;
30577f193d69SLuke Drummond     default: {
305863e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - skipping .rs.info field '%s'", __FUNCTION__,
30597f193d69SLuke Drummond                 line->str().c_str());
30607f193d69SLuke Drummond       continue;
30617f193d69SLuke Drummond     }
30627f193d69SLuke Drummond     }
30637f193d69SLuke Drummond     if (!success)
30647f193d69SLuke Drummond       return false;
30657f193d69SLuke Drummond     line += n_lines;
30667f193d69SLuke Drummond   }
30677f193d69SLuke Drummond   return info_lines.size() > 0;
30685ec532a9SColin Riley }
30695ec532a9SColin Riley 
307097206d57SZachary Turner void RenderScriptRuntime::DumpStatus(Stream &strm) const {
3071b9c1b51eSKate Stone   if (m_libRS) {
30724640cde1SColin Riley     strm.Printf("Runtime Library discovered.");
30734640cde1SColin Riley     strm.EOL();
30744640cde1SColin Riley   }
3075b9c1b51eSKate Stone   if (m_libRSDriver) {
30764640cde1SColin Riley     strm.Printf("Runtime Driver discovered.");
30774640cde1SColin Riley     strm.EOL();
30784640cde1SColin Riley   }
3079b9c1b51eSKate Stone   if (m_libRSCpuRef) {
30804640cde1SColin Riley     strm.Printf("CPU Reference Implementation discovered.");
30814640cde1SColin Riley     strm.EOL();
30824640cde1SColin Riley   }
30834640cde1SColin Riley 
3084b9c1b51eSKate Stone   if (m_runtimeHooks.size()) {
30854640cde1SColin Riley     strm.Printf("Runtime functions hooked:");
30864640cde1SColin Riley     strm.EOL();
3087b9c1b51eSKate Stone     for (auto b : m_runtimeHooks) {
30884640cde1SColin Riley       strm.Indent(b.second->defn->name);
30894640cde1SColin Riley       strm.EOL();
30904640cde1SColin Riley     }
3091b9c1b51eSKate Stone   } else {
30924640cde1SColin Riley     strm.Printf("Runtime is not hooked.");
30934640cde1SColin Riley     strm.EOL();
30944640cde1SColin Riley   }
30954640cde1SColin Riley }
30964640cde1SColin Riley 
3097b9c1b51eSKate Stone void RenderScriptRuntime::DumpContexts(Stream &strm) const {
30984640cde1SColin Riley   strm.Printf("Inferred RenderScript Contexts:");
30994640cde1SColin Riley   strm.EOL();
31004640cde1SColin Riley   strm.IndentMore();
31014640cde1SColin Riley 
31024640cde1SColin Riley   std::map<addr_t, uint64_t> contextReferences;
31034640cde1SColin Riley 
310405097246SAdrian Prantl   // Iterate over all of the currently discovered scripts. Note: We cant push
310505097246SAdrian Prantl   // or pop from m_scripts inside this loop or it may invalidate script.
3106b9c1b51eSKate Stone   for (const auto &script : m_scripts) {
310778f339d1SEwan Crawford     if (!script->context.isValid())
310878f339d1SEwan Crawford       continue;
310978f339d1SEwan Crawford     lldb::addr_t context = *script->context;
311078f339d1SEwan Crawford 
3111b9c1b51eSKate Stone     if (contextReferences.find(context) != contextReferences.end()) {
311278f339d1SEwan Crawford       contextReferences[context]++;
3113b9c1b51eSKate Stone     } else {
311478f339d1SEwan Crawford       contextReferences[context] = 1;
31154640cde1SColin Riley     }
31164640cde1SColin Riley   }
31174640cde1SColin Riley 
3118b9c1b51eSKate Stone   for (const auto &cRef : contextReferences) {
3119b9c1b51eSKate Stone     strm.Printf("Context 0x%" PRIx64 ": %" PRIu64 " script instances",
3120b9c1b51eSKate Stone                 cRef.first, cRef.second);
31214640cde1SColin Riley     strm.EOL();
31224640cde1SColin Riley   }
31234640cde1SColin Riley   strm.IndentLess();
31244640cde1SColin Riley }
31254640cde1SColin Riley 
3126b9c1b51eSKate Stone void RenderScriptRuntime::DumpKernels(Stream &strm) const {
31274640cde1SColin Riley   strm.Printf("RenderScript Kernels:");
31284640cde1SColin Riley   strm.EOL();
31294640cde1SColin Riley   strm.IndentMore();
3130b9c1b51eSKate Stone   for (const auto &module : m_rsmodules) {
31314640cde1SColin Riley     strm.Printf("Resource '%s':", module->m_resname.c_str());
31324640cde1SColin Riley     strm.EOL();
3133b9c1b51eSKate Stone     for (const auto &kernel : module->m_kernels) {
31344640cde1SColin Riley       strm.Indent(kernel.m_name.AsCString());
31354640cde1SColin Riley       strm.EOL();
31364640cde1SColin Riley     }
31374640cde1SColin Riley   }
31384640cde1SColin Riley   strm.IndentLess();
31394640cde1SColin Riley }
31404640cde1SColin Riley 
3141a0f08674SEwan Crawford RenderScriptRuntime::AllocationDetails *
3142b9c1b51eSKate Stone RenderScriptRuntime::FindAllocByID(Stream &strm, const uint32_t alloc_id) {
3143a0f08674SEwan Crawford   AllocationDetails *alloc = nullptr;
3144a0f08674SEwan Crawford 
3145a0f08674SEwan Crawford   // See if we can find allocation using id as an index;
3146b9c1b51eSKate Stone   if (alloc_id <= m_allocations.size() && alloc_id != 0 &&
3147b9c1b51eSKate Stone       m_allocations[alloc_id - 1]->id == alloc_id) {
3148a0f08674SEwan Crawford     alloc = m_allocations[alloc_id - 1].get();
3149a0f08674SEwan Crawford     return alloc;
3150a0f08674SEwan Crawford   }
3151a0f08674SEwan Crawford 
3152a0f08674SEwan Crawford   // Fallback to searching
3153b9c1b51eSKate Stone   for (const auto &a : m_allocations) {
3154b9c1b51eSKate Stone     if (a->id == alloc_id) {
3155a0f08674SEwan Crawford       alloc = a.get();
3156a0f08674SEwan Crawford       break;
3157a0f08674SEwan Crawford     }
3158a0f08674SEwan Crawford   }
3159a0f08674SEwan Crawford 
3160b9c1b51eSKate Stone   if (alloc == nullptr) {
3161b9c1b51eSKate Stone     strm.Printf("Error: Couldn't find allocation with id matching %" PRIu32,
3162b9c1b51eSKate Stone                 alloc_id);
3163a0f08674SEwan Crawford     strm.EOL();
3164a0f08674SEwan Crawford   }
3165a0f08674SEwan Crawford 
3166a0f08674SEwan Crawford   return alloc;
3167a0f08674SEwan Crawford }
3168a0f08674SEwan Crawford 
3169b9c1b51eSKate Stone // Prints the contents of an allocation to the output stream, which may be a
3170b9c1b51eSKate Stone // file
3171b9c1b51eSKate Stone bool RenderScriptRuntime::DumpAllocation(Stream &strm, StackFrame *frame_ptr,
3172b9c1b51eSKate Stone                                          const uint32_t id) {
3173a0f08674SEwan Crawford   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
3174a0f08674SEwan Crawford 
3175a0f08674SEwan Crawford   // Check we can find the desired allocation
3176a0f08674SEwan Crawford   AllocationDetails *alloc = FindAllocByID(strm, id);
3177a0f08674SEwan Crawford   if (!alloc)
3178a0f08674SEwan Crawford     return false; // FindAllocByID() will print error message for us here
3179a0f08674SEwan Crawford 
318063e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - found allocation 0x%" PRIx64, __FUNCTION__,
3181b9c1b51eSKate Stone             *alloc->address.get());
3182a0f08674SEwan Crawford 
3183a0f08674SEwan Crawford   // Check we have information about the allocation, if not calculate it
318480af0b9eSLuke Drummond   if (alloc->ShouldRefresh()) {
318563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - allocation details not calculated yet, jitting info.",
3186b9c1b51eSKate Stone               __FUNCTION__);
3187a0f08674SEwan Crawford 
3188a0f08674SEwan Crawford     // JIT all the allocation information
3189b9c1b51eSKate Stone     if (!RefreshAllocation(alloc, frame_ptr)) {
3190a0f08674SEwan Crawford       strm.Printf("Error: Couldn't JIT allocation details");
3191a0f08674SEwan Crawford       strm.EOL();
3192a0f08674SEwan Crawford       return false;
3193a0f08674SEwan Crawford     }
3194a0f08674SEwan Crawford   }
3195a0f08674SEwan Crawford 
3196a0f08674SEwan Crawford   // Establish format and size of each data element
3197b3f7f69dSAidan Dodds   const uint32_t vec_size = *alloc->element.type_vec_size.get();
31988b244e21SEwan Crawford   const Element::DataType type = *alloc->element.type.get();
3199a0f08674SEwan Crawford 
3200b9c1b51eSKate Stone   assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_FONT &&
3201b9c1b51eSKate Stone          "Invalid allocation type");
3202a0f08674SEwan Crawford 
32032e920715SEwan Crawford   lldb::Format format;
32042e920715SEwan Crawford   if (type >= Element::RS_TYPE_ELEMENT)
32052e920715SEwan Crawford     format = eFormatHex;
32062e920715SEwan Crawford   else
3207b9c1b51eSKate Stone     format = vec_size == 1
3208b9c1b51eSKate Stone                  ? static_cast<lldb::Format>(
3209b9c1b51eSKate Stone                        AllocationDetails::RSTypeToFormat[type][eFormatSingle])
3210b9c1b51eSKate Stone                  : static_cast<lldb::Format>(
3211b9c1b51eSKate Stone                        AllocationDetails::RSTypeToFormat[type][eFormatVector]);
3212a0f08674SEwan Crawford 
3213b3f7f69dSAidan Dodds   const uint32_t data_size = *alloc->element.datum_size.get();
3214a0f08674SEwan Crawford 
321563e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - element size %" PRIu32 " bytes, including padding",
3216b9c1b51eSKate Stone             __FUNCTION__, data_size);
3217a0f08674SEwan Crawford 
321855232f09SEwan Crawford   // Allocate a buffer to copy data into
321955232f09SEwan Crawford   std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
3220b9c1b51eSKate Stone   if (!buffer) {
32212e920715SEwan Crawford     strm.Printf("Error: Couldn't read allocation data");
322255232f09SEwan Crawford     strm.EOL();
322355232f09SEwan Crawford     return false;
322455232f09SEwan Crawford   }
322555232f09SEwan Crawford 
3226a0f08674SEwan Crawford   // Calculate stride between rows as there may be padding at end of rows since
3227a0f08674SEwan Crawford   // allocated memory is 16-byte aligned
3228b9c1b51eSKate Stone   if (!alloc->stride.isValid()) {
3229a0f08674SEwan Crawford     if (alloc->dimension.get()->dim_2 == 0) // We only have one dimension
3230a0f08674SEwan Crawford       alloc->stride = 0;
3231b9c1b51eSKate Stone     else if (!JITAllocationStride(alloc, frame_ptr)) {
3232a0f08674SEwan Crawford       strm.Printf("Error: Couldn't calculate allocation row stride");
3233a0f08674SEwan Crawford       strm.EOL();
3234a0f08674SEwan Crawford       return false;
3235a0f08674SEwan Crawford     }
3236a0f08674SEwan Crawford   }
3237b3f7f69dSAidan Dodds   const uint32_t stride = *alloc->stride.get();
3238b3f7f69dSAidan Dodds   const uint32_t size = *alloc->size.get(); // Size of whole allocation
3239b9c1b51eSKate Stone   const uint32_t padding =
3240b9c1b51eSKate Stone       alloc->element.padding.isValid() ? *alloc->element.padding.get() : 0;
324163e5fb76SJonas Devlieghere   LLDB_LOGF(log,
324263e5fb76SJonas Devlieghere             "%s - stride %" PRIu32 " bytes, size %" PRIu32
3243b9c1b51eSKate Stone             " bytes, padding %" PRIu32,
3244b3f7f69dSAidan Dodds             __FUNCTION__, stride, size, padding);
3245a0f08674SEwan Crawford 
3246a0f08674SEwan Crawford   // Find dimensions used to index loops, so need to be non-zero
3247b3f7f69dSAidan Dodds   uint32_t dim_x = alloc->dimension.get()->dim_1;
3248a0f08674SEwan Crawford   dim_x = dim_x == 0 ? 1 : dim_x;
3249a0f08674SEwan Crawford 
3250b3f7f69dSAidan Dodds   uint32_t dim_y = alloc->dimension.get()->dim_2;
3251a0f08674SEwan Crawford   dim_y = dim_y == 0 ? 1 : dim_y;
3252a0f08674SEwan Crawford 
3253b3f7f69dSAidan Dodds   uint32_t dim_z = alloc->dimension.get()->dim_3;
3254a0f08674SEwan Crawford   dim_z = dim_z == 0 ? 1 : dim_z;
3255a0f08674SEwan Crawford 
325655232f09SEwan Crawford   // Use data extractor to format output
325780af0b9eSLuke Drummond   const uint32_t target_ptr_size =
3258b9c1b51eSKate Stone       GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
3259b9c1b51eSKate Stone   DataExtractor alloc_data(buffer.get(), size, GetProcess()->GetByteOrder(),
326080af0b9eSLuke Drummond                            target_ptr_size);
326155232f09SEwan Crawford 
3262b3f7f69dSAidan Dodds   uint32_t offset = 0;   // Offset in buffer to next element to be printed
3263b3f7f69dSAidan Dodds   uint32_t prev_row = 0; // Offset to the start of the previous row
3264a0f08674SEwan Crawford 
3265a0f08674SEwan Crawford   // Iterate over allocation dimensions, printing results to user
3266a0f08674SEwan Crawford   strm.Printf("Data (X, Y, Z):");
3267b9c1b51eSKate Stone   for (uint32_t z = 0; z < dim_z; ++z) {
3268b9c1b51eSKate Stone     for (uint32_t y = 0; y < dim_y; ++y) {
3269a0f08674SEwan Crawford       // Use stride to index start of next row.
3270a0f08674SEwan Crawford       if (!(y == 0 && z == 0))
3271a0f08674SEwan Crawford         offset = prev_row + stride;
3272a0f08674SEwan Crawford       prev_row = offset;
3273a0f08674SEwan Crawford 
3274a0f08674SEwan Crawford       // Print each element in the row individually
3275b9c1b51eSKate Stone       for (uint32_t x = 0; x < dim_x; ++x) {
3276b3f7f69dSAidan Dodds         strm.Printf("\n(%" PRIu32 ", %" PRIu32 ", %" PRIu32 ") = ", x, y, z);
3277b9c1b51eSKate Stone         if ((type == Element::RS_TYPE_NONE) &&
3278b9c1b51eSKate Stone             (alloc->element.children.size() > 0) &&
3279b9c1b51eSKate Stone             (alloc->element.type_name != Element::GetFallbackStructName())) {
328005097246SAdrian Prantl           // Here we are dumping an Element of struct type. This is done using
328105097246SAdrian Prantl           // expression evaluation with the name of the struct type and pointer
328205097246SAdrian Prantl           // to element. Don't print the name of the resulting expression,
328305097246SAdrian Prantl           // since this will be '$[0-9]+'
32848b244e21SEwan Crawford           DumpValueObjectOptions expr_options;
32858b244e21SEwan Crawford           expr_options.SetHideName(true);
32868b244e21SEwan Crawford 
32874ebdee0aSBruce Mitchener           // Setup expression as dereferencing a pointer cast to element
328805097246SAdrian Prantl           // address.
3289ea0636b5SEwan Crawford           char expr_char_buffer[jit_max_expr_size];
329080af0b9eSLuke Drummond           int written =
3291b9c1b51eSKate Stone               snprintf(expr_char_buffer, jit_max_expr_size, "*(%s*) 0x%" PRIx64,
3292b9c1b51eSKate Stone                        alloc->element.type_name.AsCString(),
3293b9c1b51eSKate Stone                        *alloc->data_ptr.get() + offset);
32948b244e21SEwan Crawford 
329580af0b9eSLuke Drummond           if (written < 0 || written >= jit_max_expr_size) {
329663e5fb76SJonas Devlieghere             LLDB_LOGF(log, "%s - error in snprintf().", __FUNCTION__);
32978b244e21SEwan Crawford             continue;
32988b244e21SEwan Crawford           }
32998b244e21SEwan Crawford 
33008b244e21SEwan Crawford           // Evaluate expression
33018b244e21SEwan Crawford           ValueObjectSP expr_result;
3302b9c1b51eSKate Stone           GetProcess()->GetTarget().EvaluateExpression(expr_char_buffer,
3303b9c1b51eSKate Stone                                                        frame_ptr, expr_result);
33048b244e21SEwan Crawford 
33058b244e21SEwan Crawford           // Print the results to our stream.
33068b244e21SEwan Crawford           expr_result->Dump(strm, expr_options);
3307b9c1b51eSKate Stone         } else {
330829cb868aSZachary Turner           DumpDataExtractor(alloc_data, &strm, offset, format,
330929cb868aSZachary Turner                             data_size - padding, 1, 1, LLDB_INVALID_ADDRESS, 0,
331029cb868aSZachary Turner                             0);
33118b244e21SEwan Crawford         }
33128b244e21SEwan Crawford         offset += data_size;
3313a0f08674SEwan Crawford       }
3314a0f08674SEwan Crawford     }
3315a0f08674SEwan Crawford   }
3316a0f08674SEwan Crawford   strm.EOL();
3317a0f08674SEwan Crawford 
3318a0f08674SEwan Crawford   return true;
3319a0f08674SEwan Crawford }
3320a0f08674SEwan Crawford 
332105097246SAdrian Prantl // Function recalculates all our cached information about allocations by
332205097246SAdrian Prantl // jitting the RS runtime regarding each allocation we know about. Returns true
332305097246SAdrian Prantl // if all allocations could be recomputed, false otherwise.
3324b9c1b51eSKate Stone bool RenderScriptRuntime::RecomputeAllAllocations(Stream &strm,
3325b9c1b51eSKate Stone                                                   StackFrame *frame_ptr) {
33260d2bfcfbSEwan Crawford   bool success = true;
3327b9c1b51eSKate Stone   for (auto &alloc : m_allocations) {
33280d2bfcfbSEwan Crawford     // JIT current allocation information
3329b9c1b51eSKate Stone     if (!RefreshAllocation(alloc.get(), frame_ptr)) {
3330b9c1b51eSKate Stone       strm.Printf("Error: Couldn't evaluate details for allocation %" PRIu32
3331b9c1b51eSKate Stone                   "\n",
3332b9c1b51eSKate Stone                   alloc->id);
33330d2bfcfbSEwan Crawford       success = false;
33340d2bfcfbSEwan Crawford     }
33350d2bfcfbSEwan Crawford   }
33360d2bfcfbSEwan Crawford 
33370d2bfcfbSEwan Crawford   if (success)
33380d2bfcfbSEwan Crawford     strm.Printf("All allocations successfully recomputed");
33390d2bfcfbSEwan Crawford   strm.EOL();
33400d2bfcfbSEwan Crawford 
33410d2bfcfbSEwan Crawford   return success;
33420d2bfcfbSEwan Crawford }
33430d2bfcfbSEwan Crawford 
334480af0b9eSLuke Drummond // Prints information regarding currently loaded allocations. These details are
334580af0b9eSLuke Drummond // gathered by jitting the runtime, which has as latency. Index parameter
334680af0b9eSLuke Drummond // specifies a single allocation ID to print, or a zero value to print them all
3347b9c1b51eSKate Stone void RenderScriptRuntime::ListAllocations(Stream &strm, StackFrame *frame_ptr,
3348b9c1b51eSKate Stone                                           const uint32_t index) {
334915f2bd95SEwan Crawford   strm.Printf("RenderScript Allocations:");
335015f2bd95SEwan Crawford   strm.EOL();
335115f2bd95SEwan Crawford   strm.IndentMore();
335215f2bd95SEwan Crawford 
3353b9c1b51eSKate Stone   for (auto &alloc : m_allocations) {
3354b649b005SEwan Crawford     // index will only be zero if we want to print all allocations
3355b649b005SEwan Crawford     if (index != 0 && index != alloc->id)
3356b649b005SEwan Crawford       continue;
335715f2bd95SEwan Crawford 
335815f2bd95SEwan Crawford     // JIT current allocation information
335980af0b9eSLuke Drummond     if (alloc->ShouldRefresh() && !RefreshAllocation(alloc.get(), frame_ptr)) {
3360b9c1b51eSKate Stone       strm.Printf("Error: Couldn't evaluate details for allocation %" PRIu32,
3361b9c1b51eSKate Stone                   alloc->id);
3362b3f7f69dSAidan Dodds       strm.EOL();
336315f2bd95SEwan Crawford       continue;
336415f2bd95SEwan Crawford     }
336515f2bd95SEwan Crawford 
3366b3f7f69dSAidan Dodds     strm.Printf("%" PRIu32 ":", alloc->id);
3367b3f7f69dSAidan Dodds     strm.EOL();
336815f2bd95SEwan Crawford     strm.IndentMore();
336915f2bd95SEwan Crawford 
337015f2bd95SEwan Crawford     strm.Indent("Context: ");
337115f2bd95SEwan Crawford     if (!alloc->context.isValid())
337215f2bd95SEwan Crawford       strm.Printf("unknown\n");
337315f2bd95SEwan Crawford     else
337415f2bd95SEwan Crawford       strm.Printf("0x%" PRIx64 "\n", *alloc->context.get());
337515f2bd95SEwan Crawford 
337615f2bd95SEwan Crawford     strm.Indent("Address: ");
337715f2bd95SEwan Crawford     if (!alloc->address.isValid())
337815f2bd95SEwan Crawford       strm.Printf("unknown\n");
337915f2bd95SEwan Crawford     else
338015f2bd95SEwan Crawford       strm.Printf("0x%" PRIx64 "\n", *alloc->address.get());
338115f2bd95SEwan Crawford 
338215f2bd95SEwan Crawford     strm.Indent("Data pointer: ");
338315f2bd95SEwan Crawford     if (!alloc->data_ptr.isValid())
338415f2bd95SEwan Crawford       strm.Printf("unknown\n");
338515f2bd95SEwan Crawford     else
338615f2bd95SEwan Crawford       strm.Printf("0x%" PRIx64 "\n", *alloc->data_ptr.get());
338715f2bd95SEwan Crawford 
338815f2bd95SEwan Crawford     strm.Indent("Dimensions: ");
338915f2bd95SEwan Crawford     if (!alloc->dimension.isValid())
339015f2bd95SEwan Crawford       strm.Printf("unknown\n");
339115f2bd95SEwan Crawford     else
3392b3f7f69dSAidan Dodds       strm.Printf("(%" PRId32 ", %" PRId32 ", %" PRId32 ")\n",
3393b9c1b51eSKate Stone                   alloc->dimension.get()->dim_1, alloc->dimension.get()->dim_2,
3394b9c1b51eSKate Stone                   alloc->dimension.get()->dim_3);
339515f2bd95SEwan Crawford 
339615f2bd95SEwan Crawford     strm.Indent("Data Type: ");
3397b9c1b51eSKate Stone     if (!alloc->element.type.isValid() ||
3398b9c1b51eSKate Stone         !alloc->element.type_vec_size.isValid())
339915f2bd95SEwan Crawford       strm.Printf("unknown\n");
3400b9c1b51eSKate Stone     else {
34018b244e21SEwan Crawford       const int vector_size = *alloc->element.type_vec_size.get();
34022e920715SEwan Crawford       Element::DataType type = *alloc->element.type.get();
340315f2bd95SEwan Crawford 
34048b244e21SEwan Crawford       if (!alloc->element.type_name.IsEmpty())
34058b244e21SEwan Crawford         strm.Printf("%s\n", alloc->element.type_name.AsCString());
3406b9c1b51eSKate Stone       else {
3407b9c1b51eSKate Stone         // Enum value isn't monotonous, so doesn't always index
3408b9c1b51eSKate Stone         // RsDataTypeToString array
34092e920715SEwan Crawford         if (type >= Element::RS_TYPE_ELEMENT && type <= Element::RS_TYPE_FONT)
3410b9c1b51eSKate Stone           type =
3411b9c1b51eSKate Stone               static_cast<Element::DataType>((type - Element::RS_TYPE_ELEMENT) +
3412b3f7f69dSAidan Dodds                                              Element::RS_TYPE_MATRIX_2X2 + 1);
34132e920715SEwan Crawford 
3414b3f7f69dSAidan Dodds         if (type >= (sizeof(AllocationDetails::RsDataTypeToString) /
3415b3f7f69dSAidan Dodds                      sizeof(AllocationDetails::RsDataTypeToString[0])) ||
3416b3f7f69dSAidan Dodds             vector_size > 4 || vector_size < 1)
341715f2bd95SEwan Crawford           strm.Printf("invalid type\n");
341815f2bd95SEwan Crawford         else
3419b9c1b51eSKate Stone           strm.Printf(
3420b9c1b51eSKate Stone               "%s\n",
3421b9c1b51eSKate Stone               AllocationDetails::RsDataTypeToString[static_cast<uint32_t>(type)]
3422b3f7f69dSAidan Dodds                                                    [vector_size - 1]);
342315f2bd95SEwan Crawford       }
34242e920715SEwan Crawford     }
342515f2bd95SEwan Crawford 
342615f2bd95SEwan Crawford     strm.Indent("Data Kind: ");
34278b244e21SEwan Crawford     if (!alloc->element.type_kind.isValid())
342815f2bd95SEwan Crawford       strm.Printf("unknown\n");
3429b9c1b51eSKate Stone     else {
34308b244e21SEwan Crawford       const Element::DataKind kind = *alloc->element.type_kind.get();
34318b244e21SEwan Crawford       if (kind < Element::RS_KIND_USER || kind > Element::RS_KIND_PIXEL_YUV)
343215f2bd95SEwan Crawford         strm.Printf("invalid kind\n");
343315f2bd95SEwan Crawford       else
3434b9c1b51eSKate Stone         strm.Printf(
3435b9c1b51eSKate Stone             "%s\n",
3436b9c1b51eSKate Stone             AllocationDetails::RsDataKindToString[static_cast<uint32_t>(kind)]);
343715f2bd95SEwan Crawford     }
343815f2bd95SEwan Crawford 
343915f2bd95SEwan Crawford     strm.EOL();
344015f2bd95SEwan Crawford     strm.IndentLess();
344115f2bd95SEwan Crawford   }
344215f2bd95SEwan Crawford   strm.IndentLess();
344315f2bd95SEwan Crawford }
344415f2bd95SEwan Crawford 
34457dc7771cSEwan Crawford // Set breakpoints on every kernel found in RS module
3446b9c1b51eSKate Stone void RenderScriptRuntime::BreakOnModuleKernels(
3447b9c1b51eSKate Stone     const RSModuleDescriptorSP rsmodule_sp) {
3448b9c1b51eSKate Stone   for (const auto &kernel : rsmodule_sp->m_kernels) {
34497dc7771cSEwan Crawford     // Don't set breakpoint on 'root' kernel
34507dc7771cSEwan Crawford     if (strcmp(kernel.m_name.AsCString(), "root") == 0)
34517dc7771cSEwan Crawford       continue;
34527dc7771cSEwan Crawford 
34537dc7771cSEwan Crawford     CreateKernelBreakpoint(kernel.m_name);
34547dc7771cSEwan Crawford   }
34557dc7771cSEwan Crawford }
34567dc7771cSEwan Crawford 
345780af0b9eSLuke Drummond // Method is internally called by the 'kernel breakpoint all' command to enable
345880af0b9eSLuke Drummond // or disable breaking on all kernels. When do_break is true we want to enable
345980af0b9eSLuke Drummond // this functionality. When do_break is false we want to disable it.
3460b9c1b51eSKate Stone void RenderScriptRuntime::SetBreakAllKernels(bool do_break, TargetSP target) {
3461b9c1b51eSKate Stone   Log *log(
3462b9c1b51eSKate Stone       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
34637dc7771cSEwan Crawford 
34647dc7771cSEwan Crawford   InitSearchFilter(target);
34657dc7771cSEwan Crawford 
34667dc7771cSEwan Crawford   // Set breakpoints on all the kernels
3467b9c1b51eSKate Stone   if (do_break && !m_breakAllKernels) {
34687dc7771cSEwan Crawford     m_breakAllKernels = true;
34697dc7771cSEwan Crawford 
34707dc7771cSEwan Crawford     for (const auto &module : m_rsmodules)
34717dc7771cSEwan Crawford       BreakOnModuleKernels(module);
34727dc7771cSEwan Crawford 
347363e5fb76SJonas Devlieghere     LLDB_LOGF(log,
347463e5fb76SJonas Devlieghere               "%s(True) - breakpoints set on all currently loaded kernels.",
3475b9c1b51eSKate Stone               __FUNCTION__);
3476b9c1b51eSKate Stone   } else if (!do_break &&
3477b9c1b51eSKate Stone              m_breakAllKernels) // Breakpoints won't be set on any new kernels.
34787dc7771cSEwan Crawford   {
34797dc7771cSEwan Crawford     m_breakAllKernels = false;
34807dc7771cSEwan Crawford 
348163e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s(False) - breakpoints no longer automatically set.",
3482b9c1b51eSKate Stone               __FUNCTION__);
34837dc7771cSEwan Crawford   }
34847dc7771cSEwan Crawford }
34857dc7771cSEwan Crawford 
348605097246SAdrian Prantl // Given the name of a kernel this function creates a breakpoint using our own
348705097246SAdrian Prantl // breakpoint resolver, and returns the Breakpoint shared pointer.
34887dc7771cSEwan Crawford BreakpointSP
34890e4c4821SAdrian Prantl RenderScriptRuntime::CreateKernelBreakpoint(ConstString name) {
3490b9c1b51eSKate Stone   Log *log(
3491b9c1b51eSKate Stone       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
34927dc7771cSEwan Crawford 
3493b9c1b51eSKate Stone   if (!m_filtersp) {
349463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error, no breakpoint search filter set.",
349563e5fb76SJonas Devlieghere               __FUNCTION__);
34967dc7771cSEwan Crawford     return nullptr;
34977dc7771cSEwan Crawford   }
34987dc7771cSEwan Crawford 
34997dc7771cSEwan Crawford   BreakpointResolverSP resolver_sp(new RSBreakpointResolver(nullptr, name));
3500b842f2ecSJim Ingham   Target &target = GetProcess()->GetTarget();
3501b842f2ecSJim Ingham   BreakpointSP bp = target.CreateBreakpoint(
3502b9c1b51eSKate Stone       m_filtersp, resolver_sp, false, false, false);
35037dc7771cSEwan Crawford 
3504b9c1b51eSKate Stone   // Give RS breakpoints a specific name, so the user can manipulate them as a
3505b9c1b51eSKate Stone   // group.
350697206d57SZachary Turner   Status err;
3507b842f2ecSJim Ingham   target.AddNameToBreakpoint(bp, "RenderScriptKernel", err);
3508b842f2ecSJim Ingham   if (err.Fail() && log)
350963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error setting break name, '%s'.", __FUNCTION__,
3510b3bbcb12SLuke Drummond               err.AsCString());
3511b3bbcb12SLuke Drummond 
3512b3bbcb12SLuke Drummond   return bp;
3513b3bbcb12SLuke Drummond }
3514b3bbcb12SLuke Drummond 
3515b3bbcb12SLuke Drummond BreakpointSP
35160e4c4821SAdrian Prantl RenderScriptRuntime::CreateReductionBreakpoint(ConstString name,
3517b3bbcb12SLuke Drummond                                                int kernel_types) {
3518b3bbcb12SLuke Drummond   Log *log(
3519b3bbcb12SLuke Drummond       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
3520b3bbcb12SLuke Drummond 
3521b3bbcb12SLuke Drummond   if (!m_filtersp) {
352263e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error, no breakpoint search filter set.",
352363e5fb76SJonas Devlieghere               __FUNCTION__);
3524b3bbcb12SLuke Drummond     return nullptr;
3525b3bbcb12SLuke Drummond   }
3526b3bbcb12SLuke Drummond 
3527b3bbcb12SLuke Drummond   BreakpointResolverSP resolver_sp(new RSReduceBreakpointResolver(
3528b3bbcb12SLuke Drummond       nullptr, name, &m_rsmodules, kernel_types));
3529b842f2ecSJim Ingham   Target &target = GetProcess()->GetTarget();
3530b842f2ecSJim Ingham   BreakpointSP bp = target.CreateBreakpoint(
3531b3bbcb12SLuke Drummond       m_filtersp, resolver_sp, false, false, false);
3532b3bbcb12SLuke Drummond 
3533b3bbcb12SLuke Drummond   // Give RS breakpoints a specific name, so the user can manipulate them as a
3534b3bbcb12SLuke Drummond   // group.
353597206d57SZachary Turner   Status err;
3536b842f2ecSJim Ingham   target.AddNameToBreakpoint(bp, "RenderScriptReduction", err);
3537b842f2ecSJim Ingham   if (err.Fail() && log)
353863e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error setting break name, '%s'.", __FUNCTION__,
3539b9c1b51eSKate Stone               err.AsCString());
354054782db7SEwan Crawford 
35417dc7771cSEwan Crawford   return bp;
35427dc7771cSEwan Crawford }
35437dc7771cSEwan Crawford 
3544b9c1b51eSKate Stone // Given an expression for a variable this function tries to calculate the
354580af0b9eSLuke Drummond // variable's value. If this is possible it returns true and sets the uint64_t
354680af0b9eSLuke Drummond // parameter to the variables unsigned value. Otherwise function returns false.
3547b9c1b51eSKate Stone bool RenderScriptRuntime::GetFrameVarAsUnsigned(const StackFrameSP frame_sp,
3548b9c1b51eSKate Stone                                                 const char *var_name,
3549b9c1b51eSKate Stone                                                 uint64_t &val) {
3550018f5a7eSEwan Crawford   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
355197206d57SZachary Turner   Status err;
3552018f5a7eSEwan Crawford   VariableSP var_sp;
3553018f5a7eSEwan Crawford 
3554018f5a7eSEwan Crawford   // Find variable in stack frame
3555b3f7f69dSAidan Dodds   ValueObjectSP value_sp(frame_sp->GetValueForVariableExpressionPath(
3556b3f7f69dSAidan Dodds       var_name, eNoDynamicValues,
3557b9c1b51eSKate Stone       StackFrame::eExpressionPathOptionCheckPtrVsMember |
3558b9c1b51eSKate Stone           StackFrame::eExpressionPathOptionsAllowDirectIVarAccess,
355980af0b9eSLuke Drummond       var_sp, err));
356080af0b9eSLuke Drummond   if (!err.Success()) {
356163e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error, couldn't find '%s' in frame", __FUNCTION__,
3562b9c1b51eSKate Stone               var_name);
3563018f5a7eSEwan Crawford     return false;
3564018f5a7eSEwan Crawford   }
3565018f5a7eSEwan Crawford 
3566b3f7f69dSAidan Dodds   // Find the uint32_t value for the variable
3567018f5a7eSEwan Crawford   bool success = false;
3568018f5a7eSEwan Crawford   val = value_sp->GetValueAsUnsigned(0, &success);
3569b9c1b51eSKate Stone   if (!success) {
357063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error, couldn't parse '%s' as an uint32_t.",
3571b9c1b51eSKate Stone               __FUNCTION__, var_name);
3572018f5a7eSEwan Crawford     return false;
3573018f5a7eSEwan Crawford   }
3574018f5a7eSEwan Crawford 
3575018f5a7eSEwan Crawford   return true;
3576018f5a7eSEwan Crawford }
3577018f5a7eSEwan Crawford 
3578b9c1b51eSKate Stone // Function attempts to find the current coordinate of a kernel invocation by
357980af0b9eSLuke Drummond // investigating the values of frame variables in the .expand function. These
358080af0b9eSLuke Drummond // coordinates are returned via the coord array reference parameter. Returns
358180af0b9eSLuke Drummond // true if the coordinates could be found, and false otherwise.
3582b9c1b51eSKate Stone bool RenderScriptRuntime::GetKernelCoordinate(RSCoordinate &coord,
3583b9c1b51eSKate Stone                                               Thread *thread_ptr) {
358400f56eebSLuke Drummond   static const char *const x_expr = "rsIndex";
358500f56eebSLuke Drummond   static const char *const y_expr = "p->current.y";
358600f56eebSLuke Drummond   static const char *const z_expr = "p->current.z";
35871e05c3bcSGreg Clayton 
35884f8817c2SEwan Crawford   Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
35894f8817c2SEwan Crawford 
3590b9c1b51eSKate Stone   if (!thread_ptr) {
359163e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Error, No thread pointer", __FUNCTION__);
35924f8817c2SEwan Crawford 
35934f8817c2SEwan Crawford     return false;
35944f8817c2SEwan Crawford   }
35954f8817c2SEwan Crawford 
3596b9c1b51eSKate Stone   // Walk the call stack looking for a function whose name has the suffix
359780af0b9eSLuke Drummond   // '.expand' and contains the variables we're looking for.
3598b9c1b51eSKate Stone   for (uint32_t i = 0; i < thread_ptr->GetStackFrameCount(); ++i) {
35994f8817c2SEwan Crawford     if (!thread_ptr->SetSelectedFrameByIndex(i))
36004f8817c2SEwan Crawford       continue;
36014f8817c2SEwan Crawford 
36024f8817c2SEwan Crawford     StackFrameSP frame_sp = thread_ptr->GetSelectedFrame();
36034f8817c2SEwan Crawford     if (!frame_sp)
36044f8817c2SEwan Crawford       continue;
36054f8817c2SEwan Crawford 
36064f8817c2SEwan Crawford     // Find the function name
3607991e4453SZachary Turner     const SymbolContext sym_ctx =
3608991e4453SZachary Turner         frame_sp->GetSymbolContext(eSymbolContextFunction);
360900f56eebSLuke Drummond     const ConstString func_name = sym_ctx.GetFunctionName();
361000f56eebSLuke Drummond     if (!func_name)
36114f8817c2SEwan Crawford       continue;
36124f8817c2SEwan Crawford 
361363e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Inspecting function '%s'", __FUNCTION__,
361400f56eebSLuke Drummond               func_name.GetCString());
36154f8817c2SEwan Crawford 
36164f8817c2SEwan Crawford     // Check if function name has .expand suffix
361700f56eebSLuke Drummond     if (!func_name.GetStringRef().endswith(".expand"))
36184f8817c2SEwan Crawford       continue;
36194f8817c2SEwan Crawford 
362063e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Found .expand function '%s'", __FUNCTION__,
362100f56eebSLuke Drummond               func_name.GetCString());
36224f8817c2SEwan Crawford 
362305097246SAdrian Prantl     // Get values for variables in .expand frame that tell us the current
362405097246SAdrian Prantl     // kernel invocation
362500f56eebSLuke Drummond     uint64_t x, y, z;
362600f56eebSLuke Drummond     bool found = GetFrameVarAsUnsigned(frame_sp, x_expr, x) &&
362700f56eebSLuke Drummond                  GetFrameVarAsUnsigned(frame_sp, y_expr, y) &&
362800f56eebSLuke Drummond                  GetFrameVarAsUnsigned(frame_sp, z_expr, z);
36294f8817c2SEwan Crawford 
363000f56eebSLuke Drummond     if (found) {
363100f56eebSLuke Drummond       // The RenderScript runtime uses uint32_t for these vars. If they're not
363200f56eebSLuke Drummond       // within bounds, our frame parsing is garbage
363300f56eebSLuke Drummond       assert(x <= UINT32_MAX && y <= UINT32_MAX && z <= UINT32_MAX);
363400f56eebSLuke Drummond       coord.x = (uint32_t)x;
363500f56eebSLuke Drummond       coord.y = (uint32_t)y;
363600f56eebSLuke Drummond       coord.z = (uint32_t)z;
36374f8817c2SEwan Crawford       return true;
36384f8817c2SEwan Crawford     }
363900f56eebSLuke Drummond   }
36404f8817c2SEwan Crawford   return false;
36414f8817c2SEwan Crawford }
36424f8817c2SEwan Crawford 
3643b9c1b51eSKate Stone // Callback when a kernel breakpoint hits and we're looking for a specific
364480af0b9eSLuke Drummond // coordinate. Baton parameter contains a pointer to the target coordinate we
364505097246SAdrian Prantl // want to break on. Function then checks the .expand frame for the current
364605097246SAdrian Prantl // coordinate and breaks to user if it matches. Parameter 'break_id' is the id
364705097246SAdrian Prantl // of the Breakpoint which made the callback. Parameter 'break_loc_id' is the
364805097246SAdrian Prantl // id for the BreakpointLocation which was hit, a single logical breakpoint can
364905097246SAdrian Prantl // have multiple addresses.
3650b9c1b51eSKate Stone bool RenderScriptRuntime::KernelBreakpointHit(void *baton,
3651b9c1b51eSKate Stone                                               StoppointCallbackContext *ctx,
3652b9c1b51eSKate Stone                                               user_id_t break_id,
3653b9c1b51eSKate Stone                                               user_id_t break_loc_id) {
3654b9c1b51eSKate Stone   Log *log(
3655b9c1b51eSKate Stone       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
3656018f5a7eSEwan Crawford 
3657b9c1b51eSKate Stone   assert(baton &&
3658b9c1b51eSKate Stone          "Error: null baton in conditional kernel breakpoint callback");
3659018f5a7eSEwan Crawford 
3660018f5a7eSEwan Crawford   // Coordinate we want to stop on
366100f56eebSLuke Drummond   RSCoordinate target_coord = *static_cast<RSCoordinate *>(baton);
3662018f5a7eSEwan Crawford 
366363e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - Break ID %" PRIu64 ", " FMT_COORD, __FUNCTION__,
366463e5fb76SJonas Devlieghere             break_id, target_coord.x, target_coord.y, target_coord.z);
3665018f5a7eSEwan Crawford 
36664f8817c2SEwan Crawford   // Select current thread
3667018f5a7eSEwan Crawford   ExecutionContext context(ctx->exe_ctx_ref);
36684f8817c2SEwan Crawford   Thread *thread_ptr = context.GetThreadPtr();
36694f8817c2SEwan Crawford   assert(thread_ptr && "Null thread pointer");
36704f8817c2SEwan Crawford 
36714f8817c2SEwan Crawford   // Find current kernel invocation from .expand frame variables
367200f56eebSLuke Drummond   RSCoordinate current_coord{};
3673b9c1b51eSKate Stone   if (!GetKernelCoordinate(current_coord, thread_ptr)) {
367463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - Error, couldn't select .expand stack frame",
3675b9c1b51eSKate Stone               __FUNCTION__);
3676018f5a7eSEwan Crawford     return false;
3677018f5a7eSEwan Crawford   }
3678018f5a7eSEwan Crawford 
367963e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s - " FMT_COORD, __FUNCTION__, current_coord.x,
368000f56eebSLuke Drummond             current_coord.y, current_coord.z);
3681018f5a7eSEwan Crawford 
3682b9c1b51eSKate Stone   // Check if the current kernel invocation coordinate matches our target
3683b9c1b51eSKate Stone   // coordinate
368400f56eebSLuke Drummond   if (target_coord == current_coord) {
368563e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s, BREAKING " FMT_COORD, __FUNCTION__, current_coord.x,
368600f56eebSLuke Drummond               current_coord.y, current_coord.z);
3687018f5a7eSEwan Crawford 
3688b9c1b51eSKate Stone     BreakpointSP breakpoint_sp =
3689b9c1b51eSKate Stone         context.GetTargetPtr()->GetBreakpointByID(break_id);
3690b9c1b51eSKate Stone     assert(breakpoint_sp != nullptr &&
3691b9c1b51eSKate Stone            "Error: Couldn't find breakpoint matching break id for callback");
3692b9c1b51eSKate Stone     breakpoint_sp->SetEnabled(false); // Optimise since conditional breakpoint
3693b9c1b51eSKate Stone                                       // should only be hit once.
3694018f5a7eSEwan Crawford     return true;
3695018f5a7eSEwan Crawford   }
3696018f5a7eSEwan Crawford 
3697018f5a7eSEwan Crawford   // No match on coordinate
3698018f5a7eSEwan Crawford   return false;
3699018f5a7eSEwan Crawford }
3700018f5a7eSEwan Crawford 
370100f56eebSLuke Drummond void RenderScriptRuntime::SetConditional(BreakpointSP bp, Stream &messages,
370200f56eebSLuke Drummond                                          const RSCoordinate &coord) {
370300f56eebSLuke Drummond   messages.Printf("Conditional kernel breakpoint on coordinate " FMT_COORD,
370400f56eebSLuke Drummond                   coord.x, coord.y, coord.z);
370500f56eebSLuke Drummond   messages.EOL();
370600f56eebSLuke Drummond 
370700f56eebSLuke Drummond   // Allocate memory for the baton, and copy over coordinate
370800f56eebSLuke Drummond   RSCoordinate *baton = new RSCoordinate(coord);
370900f56eebSLuke Drummond 
371000f56eebSLuke Drummond   // Create a callback that will be invoked every time the breakpoint is hit.
371100f56eebSLuke Drummond   // The baton object passed to the handler is the target coordinate we want to
371200f56eebSLuke Drummond   // break on.
371300f56eebSLuke Drummond   bp->SetCallback(KernelBreakpointHit, baton, true);
371400f56eebSLuke Drummond 
371500f56eebSLuke Drummond   // Store a shared pointer to the baton, so the memory will eventually be
371600f56eebSLuke Drummond   // cleaned up after destruction
371700f56eebSLuke Drummond   m_conditional_breaks[bp->GetID()] = std::unique_ptr<RSCoordinate>(baton);
371800f56eebSLuke Drummond }
371900f56eebSLuke Drummond 
372005097246SAdrian Prantl // Tries to set a breakpoint on the start of a kernel, resolved using the
372105097246SAdrian Prantl // kernel name. Argument 'coords', represents a three dimensional coordinate
372205097246SAdrian Prantl // which can be used to specify a single kernel instance to break on. If this
372305097246SAdrian Prantl // is set then we add a callback to the breakpoint.
372400f56eebSLuke Drummond bool RenderScriptRuntime::PlaceBreakpointOnKernel(TargetSP target,
372500f56eebSLuke Drummond                                                   Stream &messages,
372600f56eebSLuke Drummond                                                   const char *name,
372700f56eebSLuke Drummond                                                   const RSCoordinate *coord) {
372800f56eebSLuke Drummond   if (!name)
372900f56eebSLuke Drummond     return false;
37304640cde1SColin Riley 
37317dc7771cSEwan Crawford   InitSearchFilter(target);
373298156583SEwan Crawford 
37334640cde1SColin Riley   ConstString kernel_name(name);
37347dc7771cSEwan Crawford   BreakpointSP bp = CreateKernelBreakpoint(kernel_name);
373500f56eebSLuke Drummond   if (!bp)
373600f56eebSLuke Drummond     return false;
3737018f5a7eSEwan Crawford 
3738018f5a7eSEwan Crawford   // We have a conditional breakpoint on a specific coordinate
373900f56eebSLuke Drummond   if (coord)
374000f56eebSLuke Drummond     SetConditional(bp, messages, *coord);
3741018f5a7eSEwan Crawford 
374200f56eebSLuke Drummond   bp->GetDescription(&messages, lldb::eDescriptionLevelInitial, false);
3743018f5a7eSEwan Crawford 
374400f56eebSLuke Drummond   return true;
37454640cde1SColin Riley }
37464640cde1SColin Riley 
374721fed052SAidan Dodds BreakpointSP
37480e4c4821SAdrian Prantl RenderScriptRuntime::CreateScriptGroupBreakpoint(ConstString name,
374921fed052SAidan Dodds                                                  bool stop_on_all) {
375021fed052SAidan Dodds   Log *log(
375121fed052SAidan Dodds       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
375221fed052SAidan Dodds 
375321fed052SAidan Dodds   if (!m_filtersp) {
375463e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error, no breakpoint search filter set.",
375563e5fb76SJonas Devlieghere               __FUNCTION__);
375621fed052SAidan Dodds     return nullptr;
375721fed052SAidan Dodds   }
375821fed052SAidan Dodds 
375921fed052SAidan Dodds   BreakpointResolverSP resolver_sp(new RSScriptGroupBreakpointResolver(
376021fed052SAidan Dodds       nullptr, name, m_scriptGroups, stop_on_all));
3761b842f2ecSJim Ingham   Target &target = GetProcess()->GetTarget();
3762b842f2ecSJim Ingham   BreakpointSP bp = target.CreateBreakpoint(
376321fed052SAidan Dodds       m_filtersp, resolver_sp, false, false, false);
376421fed052SAidan Dodds   // Give RS breakpoints a specific name, so the user can manipulate them as a
376521fed052SAidan Dodds   // group.
376697206d57SZachary Turner   Status err;
3767b842f2ecSJim Ingham   target.AddNameToBreakpoint(bp, name.GetCString(), err);
3768b842f2ecSJim Ingham   if (err.Fail() && log)
376963e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s - error setting break name, '%s'.", __FUNCTION__,
377021fed052SAidan Dodds               err.AsCString());
377121fed052SAidan Dodds   // ask the breakpoint to resolve itself
377221fed052SAidan Dodds   bp->ResolveBreakpoint();
377321fed052SAidan Dodds   return bp;
377421fed052SAidan Dodds }
377521fed052SAidan Dodds 
377621fed052SAidan Dodds bool RenderScriptRuntime::PlaceBreakpointOnScriptGroup(TargetSP target,
377721fed052SAidan Dodds                                                        Stream &strm,
37780e4c4821SAdrian Prantl                                                        ConstString name,
377921fed052SAidan Dodds                                                        bool multi) {
378021fed052SAidan Dodds   InitSearchFilter(target);
378121fed052SAidan Dodds   BreakpointSP bp = CreateScriptGroupBreakpoint(name, multi);
378221fed052SAidan Dodds   if (bp)
378321fed052SAidan Dodds     bp->GetDescription(&strm, lldb::eDescriptionLevelInitial, false);
378421fed052SAidan Dodds   return bool(bp);
378521fed052SAidan Dodds }
378621fed052SAidan Dodds 
3787b3bbcb12SLuke Drummond bool RenderScriptRuntime::PlaceBreakpointOnReduction(TargetSP target,
3788b3bbcb12SLuke Drummond                                                      Stream &messages,
3789b3bbcb12SLuke Drummond                                                      const char *reduce_name,
3790b3bbcb12SLuke Drummond                                                      const RSCoordinate *coord,
3791b3bbcb12SLuke Drummond                                                      int kernel_types) {
3792b3bbcb12SLuke Drummond   if (!reduce_name)
3793b3bbcb12SLuke Drummond     return false;
3794b3bbcb12SLuke Drummond 
3795b3bbcb12SLuke Drummond   InitSearchFilter(target);
3796b3bbcb12SLuke Drummond   BreakpointSP bp =
3797b3bbcb12SLuke Drummond       CreateReductionBreakpoint(ConstString(reduce_name), kernel_types);
3798b3bbcb12SLuke Drummond   if (!bp)
3799b3bbcb12SLuke Drummond     return false;
3800b3bbcb12SLuke Drummond 
3801b3bbcb12SLuke Drummond   if (coord)
3802b3bbcb12SLuke Drummond     SetConditional(bp, messages, *coord);
3803b3bbcb12SLuke Drummond 
3804b3bbcb12SLuke Drummond   bp->GetDescription(&messages, lldb::eDescriptionLevelInitial, false);
3805b3bbcb12SLuke Drummond 
3806b3bbcb12SLuke Drummond   return true;
3807b3bbcb12SLuke Drummond }
3808b3bbcb12SLuke Drummond 
3809b9c1b51eSKate Stone void RenderScriptRuntime::DumpModules(Stream &strm) const {
38105ec532a9SColin Riley   strm.Printf("RenderScript Modules:");
38115ec532a9SColin Riley   strm.EOL();
38125ec532a9SColin Riley   strm.IndentMore();
3813b9c1b51eSKate Stone   for (const auto &module : m_rsmodules) {
38144640cde1SColin Riley     module->Dump(strm);
38155ec532a9SColin Riley   }
38165ec532a9SColin Riley   strm.IndentLess();
38175ec532a9SColin Riley }
38185ec532a9SColin Riley 
381978f339d1SEwan Crawford RenderScriptRuntime::ScriptDetails *
3820b9c1b51eSKate Stone RenderScriptRuntime::LookUpScript(addr_t address, bool create) {
3821b9c1b51eSKate Stone   for (const auto &s : m_scripts) {
382278f339d1SEwan Crawford     if (s->script.isValid())
382378f339d1SEwan Crawford       if (*s->script == address)
382478f339d1SEwan Crawford         return s.get();
382578f339d1SEwan Crawford   }
3826b9c1b51eSKate Stone   if (create) {
382778f339d1SEwan Crawford     std::unique_ptr<ScriptDetails> s(new ScriptDetails);
382878f339d1SEwan Crawford     s->script = address;
382978f339d1SEwan Crawford     m_scripts.push_back(std::move(s));
3830d10ca9deSEwan Crawford     return m_scripts.back().get();
383178f339d1SEwan Crawford   }
383278f339d1SEwan Crawford   return nullptr;
383378f339d1SEwan Crawford }
383478f339d1SEwan Crawford 
383578f339d1SEwan Crawford RenderScriptRuntime::AllocationDetails *
3836b9c1b51eSKate Stone RenderScriptRuntime::LookUpAllocation(addr_t address) {
3837b9c1b51eSKate Stone   for (const auto &a : m_allocations) {
383878f339d1SEwan Crawford     if (a->address.isValid())
383978f339d1SEwan Crawford       if (*a->address == address)
384078f339d1SEwan Crawford         return a.get();
384178f339d1SEwan Crawford   }
38425d057637SLuke Drummond   return nullptr;
38435d057637SLuke Drummond }
38445d057637SLuke Drummond 
38455d057637SLuke Drummond RenderScriptRuntime::AllocationDetails *
3846b9c1b51eSKate Stone RenderScriptRuntime::CreateAllocation(addr_t address) {
38475d057637SLuke Drummond   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
38485d057637SLuke Drummond 
38495d057637SLuke Drummond   // Remove any previous allocation which contains the same address
38505d057637SLuke Drummond   auto it = m_allocations.begin();
3851b9c1b51eSKate Stone   while (it != m_allocations.end()) {
3852b9c1b51eSKate Stone     if (*((*it)->address) == address) {
385363e5fb76SJonas Devlieghere       LLDB_LOGF(log, "%s - Removing allocation id: %d, address: 0x%" PRIx64,
3854b9c1b51eSKate Stone                 __FUNCTION__, (*it)->id, address);
38555d057637SLuke Drummond 
38565d057637SLuke Drummond       it = m_allocations.erase(it);
3857b9c1b51eSKate Stone     } else {
38585d057637SLuke Drummond       it++;
38595d057637SLuke Drummond     }
38605d057637SLuke Drummond   }
38615d057637SLuke Drummond 
386278f339d1SEwan Crawford   std::unique_ptr<AllocationDetails> a(new AllocationDetails);
386378f339d1SEwan Crawford   a->address = address;
386478f339d1SEwan Crawford   m_allocations.push_back(std::move(a));
3865d10ca9deSEwan Crawford   return m_allocations.back().get();
386678f339d1SEwan Crawford }
386778f339d1SEwan Crawford 
386821fed052SAidan Dodds bool RenderScriptRuntime::ResolveKernelName(lldb::addr_t kernel_addr,
386921fed052SAidan Dodds                                             ConstString &name) {
387021fed052SAidan Dodds   Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYMBOLS);
387121fed052SAidan Dodds 
387221fed052SAidan Dodds   Target &target = GetProcess()->GetTarget();
387321fed052SAidan Dodds   Address resolved;
387421fed052SAidan Dodds   // RenderScript module
387521fed052SAidan Dodds   if (!target.GetSectionLoadList().ResolveLoadAddress(kernel_addr, resolved)) {
387663e5fb76SJonas Devlieghere     LLDB_LOGF(log, "%s: unable to resolve 0x%" PRIx64 " to a loaded symbol",
387721fed052SAidan Dodds               __FUNCTION__, kernel_addr);
387821fed052SAidan Dodds     return false;
387921fed052SAidan Dodds   }
388021fed052SAidan Dodds 
388121fed052SAidan Dodds   Symbol *sym = resolved.CalculateSymbolContextSymbol();
388221fed052SAidan Dodds   if (!sym)
388321fed052SAidan Dodds     return false;
388421fed052SAidan Dodds 
388521fed052SAidan Dodds   name = sym->GetName();
388621fed052SAidan Dodds   assert(IsRenderScriptModule(resolved.CalculateSymbolContextModule()));
388763e5fb76SJonas Devlieghere   LLDB_LOGF(log, "%s: 0x%" PRIx64 " resolved to the symbol '%s'", __FUNCTION__,
388821fed052SAidan Dodds             kernel_addr, name.GetCString());
388921fed052SAidan Dodds   return true;
389021fed052SAidan Dodds }
389121fed052SAidan Dodds 
3892b9c1b51eSKate Stone void RSModuleDescriptor::Dump(Stream &strm) const {
38937f193d69SLuke Drummond   int indent = strm.GetIndentLevel();
38947f193d69SLuke Drummond 
38955ec532a9SColin Riley   strm.Indent();
38965ec532a9SColin Riley   m_module->GetFileSpec().Dump(&strm);
38977f193d69SLuke Drummond   strm.Indent(m_module->GetNumCompileUnits() ? "Debug info loaded."
38987f193d69SLuke Drummond                                              : "Debug info does not exist.");
38995ec532a9SColin Riley   strm.EOL();
39005ec532a9SColin Riley   strm.IndentMore();
39017f193d69SLuke Drummond 
39025ec532a9SColin Riley   strm.Indent();
3903189598edSColin Riley   strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
39045ec532a9SColin Riley   strm.EOL();
39055ec532a9SColin Riley   strm.IndentMore();
3906b9c1b51eSKate Stone   for (const auto &global : m_globals) {
39075ec532a9SColin Riley     global.Dump(strm);
39085ec532a9SColin Riley   }
39095ec532a9SColin Riley   strm.IndentLess();
39107f193d69SLuke Drummond 
39115ec532a9SColin Riley   strm.Indent();
3912189598edSColin Riley   strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
39135ec532a9SColin Riley   strm.EOL();
39145ec532a9SColin Riley   strm.IndentMore();
3915b9c1b51eSKate Stone   for (const auto &kernel : m_kernels) {
39165ec532a9SColin Riley     kernel.Dump(strm);
39175ec532a9SColin Riley   }
39187f193d69SLuke Drummond   strm.IndentLess();
39197f193d69SLuke Drummond 
39207f193d69SLuke Drummond   strm.Indent();
39214640cde1SColin Riley   strm.Printf("Pragmas: %" PRIu64, static_cast<uint64_t>(m_pragmas.size()));
39224640cde1SColin Riley   strm.EOL();
39234640cde1SColin Riley   strm.IndentMore();
3924b9c1b51eSKate Stone   for (const auto &key_val : m_pragmas) {
39257f193d69SLuke Drummond     strm.Indent();
39264640cde1SColin Riley     strm.Printf("%s: %s", key_val.first.c_str(), key_val.second.c_str());
39274640cde1SColin Riley     strm.EOL();
39284640cde1SColin Riley   }
39297f193d69SLuke Drummond   strm.IndentLess();
39307f193d69SLuke Drummond 
39317f193d69SLuke Drummond   strm.Indent();
39327f193d69SLuke Drummond   strm.Printf("Reductions: %" PRIu64,
39337f193d69SLuke Drummond               static_cast<uint64_t>(m_reductions.size()));
39347f193d69SLuke Drummond   strm.EOL();
39357f193d69SLuke Drummond   strm.IndentMore();
39367f193d69SLuke Drummond   for (const auto &reduction : m_reductions) {
39377f193d69SLuke Drummond     reduction.Dump(strm);
39387f193d69SLuke Drummond   }
39397f193d69SLuke Drummond 
39407f193d69SLuke Drummond   strm.SetIndentLevel(indent);
39415ec532a9SColin Riley }
39425ec532a9SColin Riley 
3943b9c1b51eSKate Stone void RSGlobalDescriptor::Dump(Stream &strm) const {
39445ec532a9SColin Riley   strm.Indent(m_name.AsCString());
39454640cde1SColin Riley   VariableList var_list;
394634cda14bSPavel Labath   m_module->m_module->FindGlobalVariables(m_name, nullptr, 1U, var_list);
3947b9c1b51eSKate Stone   if (var_list.GetSize() == 1) {
39484640cde1SColin Riley     auto var = var_list.GetVariableAtIndex(0);
39494640cde1SColin Riley     auto type = var->GetType();
3950b9c1b51eSKate Stone     if (type) {
39514640cde1SColin Riley       strm.Printf(" - ");
39524640cde1SColin Riley       type->DumpTypeName(&strm);
3953b9c1b51eSKate Stone     } else {
39544640cde1SColin Riley       strm.Printf(" - Unknown Type");
39554640cde1SColin Riley     }
3956b9c1b51eSKate Stone   } else {
39574640cde1SColin Riley     strm.Printf(" - variable identified, but not found in binary");
3958b9c1b51eSKate Stone     const Symbol *s = m_module->m_module->FindFirstSymbolWithNameAndType(
3959b9c1b51eSKate Stone         m_name, eSymbolTypeData);
3960b9c1b51eSKate Stone     if (s) {
39614640cde1SColin Riley       strm.Printf(" (symbol exists) ");
39624640cde1SColin Riley     }
39634640cde1SColin Riley   }
39644640cde1SColin Riley 
39655ec532a9SColin Riley   strm.EOL();
39665ec532a9SColin Riley }
39675ec532a9SColin Riley 
3968b9c1b51eSKate Stone void RSKernelDescriptor::Dump(Stream &strm) const {
39695ec532a9SColin Riley   strm.Indent(m_name.AsCString());
39705ec532a9SColin Riley   strm.EOL();
39715ec532a9SColin Riley }
39725ec532a9SColin Riley 
39737f193d69SLuke Drummond void RSReductionDescriptor::Dump(lldb_private::Stream &stream) const {
39747f193d69SLuke Drummond   stream.Indent(m_reduce_name.AsCString());
39757f193d69SLuke Drummond   stream.IndentMore();
39767f193d69SLuke Drummond   stream.EOL();
39777f193d69SLuke Drummond   stream.Indent();
39787f193d69SLuke Drummond   stream.Printf("accumulator: %s", m_accum_name.AsCString());
39797f193d69SLuke Drummond   stream.EOL();
39807f193d69SLuke Drummond   stream.Indent();
39817f193d69SLuke Drummond   stream.Printf("initializer: %s", m_init_name.AsCString());
39827f193d69SLuke Drummond   stream.EOL();
39837f193d69SLuke Drummond   stream.Indent();
39847f193d69SLuke Drummond   stream.Printf("combiner: %s", m_comb_name.AsCString());
39857f193d69SLuke Drummond   stream.EOL();
39867f193d69SLuke Drummond   stream.Indent();
39877f193d69SLuke Drummond   stream.Printf("outconverter: %s", m_outc_name.AsCString());
39887f193d69SLuke Drummond   stream.EOL();
39897f193d69SLuke Drummond   // XXX This is currently unspecified by RenderScript, and unused
39907f193d69SLuke Drummond   // stream.Indent();
39917f193d69SLuke Drummond   // stream.Printf("halter: '%s'", m_init_name.AsCString());
39927f193d69SLuke Drummond   // stream.EOL();
39937f193d69SLuke Drummond   stream.IndentLess();
39947f193d69SLuke Drummond }
39957f193d69SLuke Drummond 
3996b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeModuleDump : public CommandObjectParsed {
39975ec532a9SColin Riley public:
39985ec532a9SColin Riley   CommandObjectRenderScriptRuntimeModuleDump(CommandInterpreter &interpreter)
3999b9c1b51eSKate Stone       : CommandObjectParsed(
4000b9c1b51eSKate Stone             interpreter, "renderscript module dump",
4001b9c1b51eSKate Stone             "Dumps renderscript specific information for all modules.",
4002b9c1b51eSKate Stone             "renderscript module dump",
4003b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched) {}
40045ec532a9SColin Riley 
4005222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeModuleDump() override = default;
40065ec532a9SColin Riley 
4007b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4008056f6f18SAlex Langford     RenderScriptRuntime *runtime = llvm::cast<RenderScriptRuntime>(
4009056f6f18SAlex Langford         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4010056f6f18SAlex Langford             eLanguageTypeExtRenderScript));
40115ec532a9SColin Riley     runtime->DumpModules(result.GetOutputStream());
40125ec532a9SColin Riley     result.SetStatus(eReturnStatusSuccessFinishResult);
40135ec532a9SColin Riley     return true;
40145ec532a9SColin Riley   }
40155ec532a9SColin Riley };
40165ec532a9SColin Riley 
4017b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeModule : public CommandObjectMultiword {
40185ec532a9SColin Riley public:
40195ec532a9SColin Riley   CommandObjectRenderScriptRuntimeModule(CommandInterpreter &interpreter)
4020b9c1b51eSKate Stone       : CommandObjectMultiword(interpreter, "renderscript module",
4021b9c1b51eSKate Stone                                "Commands that deal with RenderScript modules.",
4022b9c1b51eSKate Stone                                nullptr) {
4023b9c1b51eSKate Stone     LoadSubCommand(
4024b9c1b51eSKate Stone         "dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeModuleDump(
4025b9c1b51eSKate Stone                     interpreter)));
40265ec532a9SColin Riley   }
40275ec532a9SColin Riley 
4028222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeModule() override = default;
40295ec532a9SColin Riley };
40305ec532a9SColin Riley 
4031b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernelList : public CommandObjectParsed {
40324640cde1SColin Riley public:
40334640cde1SColin Riley   CommandObjectRenderScriptRuntimeKernelList(CommandInterpreter &interpreter)
4034b9c1b51eSKate Stone       : CommandObjectParsed(
4035b9c1b51eSKate Stone             interpreter, "renderscript kernel list",
4036b3f7f69dSAidan Dodds             "Lists renderscript kernel names and associated script resources.",
4037b9c1b51eSKate Stone             "renderscript kernel list",
4038b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched) {}
40394640cde1SColin Riley 
4040222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeKernelList() override = default;
40414640cde1SColin Riley 
4042b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4043056f6f18SAlex Langford     RenderScriptRuntime *runtime = llvm::cast<RenderScriptRuntime>(
4044056f6f18SAlex Langford         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4045056f6f18SAlex Langford             eLanguageTypeExtRenderScript));
40464640cde1SColin Riley     runtime->DumpKernels(result.GetOutputStream());
40474640cde1SColin Riley     result.SetStatus(eReturnStatusSuccessFinishResult);
40484640cde1SColin Riley     return true;
40494640cde1SColin Riley   }
40504640cde1SColin Riley };
40514640cde1SColin Riley 
40528fe53c49STatyana Krasnukha static constexpr OptionDefinition g_renderscript_reduction_bp_set_options[] = {
4053b3bbcb12SLuke Drummond     {LLDB_OPT_SET_1, false, "function-role", 't',
40548fe53c49STatyana Krasnukha      OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeOneLiner,
4055b3bbcb12SLuke Drummond      "Break on a comma separated set of reduction kernel types "
4056b3bbcb12SLuke Drummond      "(accumulator,outcoverter,combiner,initializer"},
4057b3bbcb12SLuke Drummond     {LLDB_OPT_SET_1, false, "coordinate", 'c', OptionParser::eRequiredArgument,
40588fe53c49STatyana Krasnukha      nullptr, {}, 0, eArgTypeValue,
4059b3bbcb12SLuke Drummond      "Set a breakpoint on a single invocation of the kernel with specified "
4060b3bbcb12SLuke Drummond      "coordinate.\n"
4061b3bbcb12SLuke Drummond      "Coordinate takes the form 'x[,y][,z] where x,y,z are positive "
4062b3bbcb12SLuke Drummond      "integers representing kernel dimensions. "
4063b3bbcb12SLuke Drummond      "Any unset dimensions will be defaulted to zero."}};
4064b3bbcb12SLuke Drummond 
4065b3bbcb12SLuke Drummond class CommandObjectRenderScriptRuntimeReductionBreakpointSet
4066b3bbcb12SLuke Drummond     : public CommandObjectParsed {
4067b3bbcb12SLuke Drummond public:
4068b3bbcb12SLuke Drummond   CommandObjectRenderScriptRuntimeReductionBreakpointSet(
4069b3bbcb12SLuke Drummond       CommandInterpreter &interpreter)
4070b3bbcb12SLuke Drummond       : CommandObjectParsed(
4071b3bbcb12SLuke Drummond             interpreter, "renderscript reduction breakpoint set",
4072b3bbcb12SLuke Drummond             "Set a breakpoint on named RenderScript general reductions",
4073b3bbcb12SLuke Drummond             "renderscript reduction breakpoint set  <kernel_name> [-t "
4074b3bbcb12SLuke Drummond             "<reduction_kernel_type,...>]",
4075b3bbcb12SLuke Drummond             eCommandRequiresProcess | eCommandProcessMustBeLaunched |
4076b3bbcb12SLuke Drummond                 eCommandProcessMustBePaused),
4077b3bbcb12SLuke Drummond         m_options(){};
4078b3bbcb12SLuke Drummond 
4079b3bbcb12SLuke Drummond   class CommandOptions : public Options {
4080b3bbcb12SLuke Drummond   public:
4081b3bbcb12SLuke Drummond     CommandOptions()
4082b3bbcb12SLuke Drummond         : Options(),
4083b3bbcb12SLuke Drummond           m_kernel_types(RSReduceBreakpointResolver::eKernelTypeAll) {}
4084b3bbcb12SLuke Drummond 
4085b3bbcb12SLuke Drummond     ~CommandOptions() override = default;
4086b3bbcb12SLuke Drummond 
408797206d57SZachary Turner     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
4088b3bbcb12SLuke Drummond                           ExecutionContext *exe_ctx) override {
408997206d57SZachary Turner       Status err;
4090b3bbcb12SLuke Drummond       StreamString err_str;
4091b3bbcb12SLuke Drummond       const int short_option = m_getopt_table[option_idx].val;
4092b3bbcb12SLuke Drummond       switch (short_option) {
4093b3bbcb12SLuke Drummond       case 't':
4094fe11483bSZachary Turner         if (!ParseReductionTypes(option_arg, err_str))
4095b3bbcb12SLuke Drummond           err.SetErrorStringWithFormat(
4096fe11483bSZachary Turner               "Unable to deduce reduction types for %s: %s",
4097fe11483bSZachary Turner               option_arg.str().c_str(), err_str.GetData());
4098b3bbcb12SLuke Drummond         break;
4099b3bbcb12SLuke Drummond       case 'c': {
4100b3bbcb12SLuke Drummond         auto coord = RSCoordinate{};
4101fe11483bSZachary Turner         if (!ParseCoordinate(option_arg, coord))
4102b3bbcb12SLuke Drummond           err.SetErrorStringWithFormat("unable to parse coordinate for %s",
4103fe11483bSZachary Turner                                        option_arg.str().c_str());
4104b3bbcb12SLuke Drummond         else {
4105b3bbcb12SLuke Drummond           m_have_coord = true;
4106b3bbcb12SLuke Drummond           m_coord = coord;
4107b3bbcb12SLuke Drummond         }
4108b3bbcb12SLuke Drummond         break;
4109b3bbcb12SLuke Drummond       }
4110b3bbcb12SLuke Drummond       default:
4111b3bbcb12SLuke Drummond         err.SetErrorStringWithFormat("Invalid option '-%c'", short_option);
4112b3bbcb12SLuke Drummond       }
4113b3bbcb12SLuke Drummond       return err;
4114b3bbcb12SLuke Drummond     }
4115b3bbcb12SLuke Drummond 
4116b3bbcb12SLuke Drummond     void OptionParsingStarting(ExecutionContext *exe_ctx) override {
4117b3bbcb12SLuke Drummond       m_have_coord = false;
4118b3bbcb12SLuke Drummond     }
4119b3bbcb12SLuke Drummond 
4120b3bbcb12SLuke Drummond     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
4121b3bbcb12SLuke Drummond       return llvm::makeArrayRef(g_renderscript_reduction_bp_set_options);
4122b3bbcb12SLuke Drummond     }
4123b3bbcb12SLuke Drummond 
4124fe11483bSZachary Turner     bool ParseReductionTypes(llvm::StringRef option_val,
4125fe11483bSZachary Turner                              StreamString &err_str) {
4126b3bbcb12SLuke Drummond       m_kernel_types = RSReduceBreakpointResolver::eKernelTypeNone;
4127b3bbcb12SLuke Drummond       const auto reduce_name_to_type = [](llvm::StringRef name) -> int {
4128b3bbcb12SLuke Drummond         return llvm::StringSwitch<int>(name)
4129b3bbcb12SLuke Drummond             .Case("accumulator", RSReduceBreakpointResolver::eKernelTypeAccum)
4130b3bbcb12SLuke Drummond             .Case("initializer", RSReduceBreakpointResolver::eKernelTypeInit)
4131b3bbcb12SLuke Drummond             .Case("outconverter", RSReduceBreakpointResolver::eKernelTypeOutC)
4132b3bbcb12SLuke Drummond             .Case("combiner", RSReduceBreakpointResolver::eKernelTypeComb)
4133b3bbcb12SLuke Drummond             .Case("all", RSReduceBreakpointResolver::eKernelTypeAll)
4134b3bbcb12SLuke Drummond             // Currently not exposed by the runtime
4135b3bbcb12SLuke Drummond             // .Case("halter", RSReduceBreakpointResolver::eKernelTypeHalter)
4136b3bbcb12SLuke Drummond             .Default(0);
4137b3bbcb12SLuke Drummond       };
4138b3bbcb12SLuke Drummond 
4139b3bbcb12SLuke Drummond       // Matching a comma separated list of known words is fairly
414005097246SAdrian Prantl       // straightforward with PCRE, but we're using ERE, so we end up with a
414105097246SAdrian Prantl       // little ugliness...
4142b3bbcb12SLuke Drummond       RegularExpression match_type_list(
4143b3bbcb12SLuke Drummond           llvm::StringRef("^([[:alpha:]]+)(,[[:alpha:]]+){0,4}$"));
4144b3bbcb12SLuke Drummond 
4145b3bbcb12SLuke Drummond       assert(match_type_list.IsValid());
4146b3bbcb12SLuke Drummond 
41473af3f1e8SJonas Devlieghere       if (!match_type_list.Execute(option_val)) {
4148b3bbcb12SLuke Drummond         err_str.PutCString(
4149b3bbcb12SLuke Drummond             "a comma-separated list of kernel types is required");
4150b3bbcb12SLuke Drummond         return false;
4151b3bbcb12SLuke Drummond       }
4152b3bbcb12SLuke Drummond 
4153b3bbcb12SLuke Drummond       // splitting on commas is much easier with llvm::StringRef than regex
4154b3bbcb12SLuke Drummond       llvm::SmallVector<llvm::StringRef, 5> type_names;
4155b3bbcb12SLuke Drummond       llvm::StringRef(option_val).split(type_names, ',');
4156b3bbcb12SLuke Drummond 
4157b3bbcb12SLuke Drummond       for (const auto &name : type_names) {
4158b3bbcb12SLuke Drummond         const int type = reduce_name_to_type(name);
4159b3bbcb12SLuke Drummond         if (!type) {
4160b3bbcb12SLuke Drummond           err_str.Printf("unknown kernel type name %s", name.str().c_str());
4161b3bbcb12SLuke Drummond           return false;
4162b3bbcb12SLuke Drummond         }
4163b3bbcb12SLuke Drummond         m_kernel_types |= type;
4164b3bbcb12SLuke Drummond       }
4165b3bbcb12SLuke Drummond 
4166b3bbcb12SLuke Drummond       return true;
4167b3bbcb12SLuke Drummond     }
4168b3bbcb12SLuke Drummond 
4169b3bbcb12SLuke Drummond     int m_kernel_types;
4170b3bbcb12SLuke Drummond     llvm::StringRef m_reduce_name;
4171b3bbcb12SLuke Drummond     RSCoordinate m_coord;
4172b3bbcb12SLuke Drummond     bool m_have_coord;
4173b3bbcb12SLuke Drummond   };
4174b3bbcb12SLuke Drummond 
4175b3bbcb12SLuke Drummond   Options *GetOptions() override { return &m_options; }
4176b3bbcb12SLuke Drummond 
4177b3bbcb12SLuke Drummond   bool DoExecute(Args &command, CommandReturnObject &result) override {
4178b3bbcb12SLuke Drummond     const size_t argc = command.GetArgumentCount();
4179b3bbcb12SLuke Drummond     if (argc < 1) {
4180b3bbcb12SLuke Drummond       result.AppendErrorWithFormat("'%s' takes 1 argument of reduction name, "
4181b3bbcb12SLuke Drummond                                    "and an optional kernel type list",
4182b3bbcb12SLuke Drummond                                    m_cmd_name.c_str());
4183b3bbcb12SLuke Drummond       result.SetStatus(eReturnStatusFailed);
4184b3bbcb12SLuke Drummond       return false;
4185b3bbcb12SLuke Drummond     }
4186b3bbcb12SLuke Drummond 
4187b3bbcb12SLuke Drummond     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4188b3bbcb12SLuke Drummond         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4189b3bbcb12SLuke Drummond             eLanguageTypeExtRenderScript));
4190b3bbcb12SLuke Drummond 
4191b3bbcb12SLuke Drummond     auto &outstream = result.GetOutputStream();
4192b3bbcb12SLuke Drummond     auto name = command.GetArgumentAtIndex(0);
4193b3bbcb12SLuke Drummond     auto &target = m_exe_ctx.GetTargetSP();
4194b3bbcb12SLuke Drummond     auto coord = m_options.m_have_coord ? &m_options.m_coord : nullptr;
4195b3bbcb12SLuke Drummond     if (!runtime->PlaceBreakpointOnReduction(target, outstream, name, coord,
4196b3bbcb12SLuke Drummond                                              m_options.m_kernel_types)) {
4197b3bbcb12SLuke Drummond       result.SetStatus(eReturnStatusFailed);
4198b3bbcb12SLuke Drummond       result.AppendError("Error: unable to place breakpoint on reduction");
4199b3bbcb12SLuke Drummond       return false;
4200b3bbcb12SLuke Drummond     }
4201b3bbcb12SLuke Drummond     result.AppendMessage("Breakpoint(s) created");
4202b3bbcb12SLuke Drummond     result.SetStatus(eReturnStatusSuccessFinishResult);
4203b3bbcb12SLuke Drummond     return true;
4204b3bbcb12SLuke Drummond   }
4205b3bbcb12SLuke Drummond 
4206b3bbcb12SLuke Drummond private:
4207b3bbcb12SLuke Drummond   CommandOptions m_options;
4208b3bbcb12SLuke Drummond };
4209b3bbcb12SLuke Drummond 
42108fe53c49STatyana Krasnukha static constexpr OptionDefinition g_renderscript_kernel_bp_set_options[] = {
42111f0f5b5bSZachary Turner     {LLDB_OPT_SET_1, false, "coordinate", 'c', OptionParser::eRequiredArgument,
42128fe53c49STatyana Krasnukha      nullptr, {}, 0, eArgTypeValue,
42131f0f5b5bSZachary Turner      "Set a breakpoint on a single invocation of the kernel with specified "
42141f0f5b5bSZachary Turner      "coordinate.\n"
42151f0f5b5bSZachary Turner      "Coordinate takes the form 'x[,y][,z] where x,y,z are positive "
42161f0f5b5bSZachary Turner      "integers representing kernel dimensions. "
42171f0f5b5bSZachary Turner      "Any unset dimensions will be defaulted to zero."}};
42181f0f5b5bSZachary Turner 
4219b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernelBreakpointSet
4220b9c1b51eSKate Stone     : public CommandObjectParsed {
42214640cde1SColin Riley public:
4222b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeKernelBreakpointSet(
4223b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4224b9c1b51eSKate Stone       : CommandObjectParsed(
4225b9c1b51eSKate Stone             interpreter, "renderscript kernel breakpoint set",
4226b3f7f69dSAidan Dodds             "Sets a breakpoint on a renderscript kernel.",
4227b3f7f69dSAidan Dodds             "renderscript kernel breakpoint set <kernel_name> [-c x,y,z]",
4228b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched |
4229b9c1b51eSKate Stone                 eCommandProcessMustBePaused),
4230b9c1b51eSKate Stone         m_options() {}
42314640cde1SColin Riley 
4232222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeKernelBreakpointSet() override = default;
4233222b937cSEugene Zelenko 
4234b9c1b51eSKate Stone   Options *GetOptions() override { return &m_options; }
4235018f5a7eSEwan Crawford 
4236b9c1b51eSKate Stone   class CommandOptions : public Options {
4237018f5a7eSEwan Crawford   public:
4238e1cfbc79STodd Fiala     CommandOptions() : Options() {}
4239018f5a7eSEwan Crawford 
4240222b937cSEugene Zelenko     ~CommandOptions() override = default;
4241018f5a7eSEwan Crawford 
424297206d57SZachary Turner     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
4243b3bbcb12SLuke Drummond                           ExecutionContext *exe_ctx) override {
424497206d57SZachary Turner       Status err;
4245018f5a7eSEwan Crawford       const int short_option = m_getopt_table[option_idx].val;
4246018f5a7eSEwan Crawford 
4247b9c1b51eSKate Stone       switch (short_option) {
424800f56eebSLuke Drummond       case 'c': {
424900f56eebSLuke Drummond         auto coord = RSCoordinate{};
425000f56eebSLuke Drummond         if (!ParseCoordinate(option_arg, coord))
425180af0b9eSLuke Drummond           err.SetErrorStringWithFormat(
4252b9c1b51eSKate Stone               "Couldn't parse coordinate '%s', should be in format 'x,y,z'.",
4253fe11483bSZachary Turner               option_arg.str().c_str());
425400f56eebSLuke Drummond         else {
425500f56eebSLuke Drummond           m_have_coord = true;
425600f56eebSLuke Drummond           m_coord = coord;
425700f56eebSLuke Drummond         }
4258018f5a7eSEwan Crawford         break;
425900f56eebSLuke Drummond       }
4260018f5a7eSEwan Crawford       default:
426180af0b9eSLuke Drummond         err.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
4262018f5a7eSEwan Crawford         break;
4263018f5a7eSEwan Crawford       }
426480af0b9eSLuke Drummond       return err;
4265018f5a7eSEwan Crawford     }
4266018f5a7eSEwan Crawford 
4267b3bbcb12SLuke Drummond     void OptionParsingStarting(ExecutionContext *exe_ctx) override {
426800f56eebSLuke Drummond       m_have_coord = false;
4269018f5a7eSEwan Crawford     }
4270018f5a7eSEwan Crawford 
42711f0f5b5bSZachary Turner     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
427270602439SZachary Turner       return llvm::makeArrayRef(g_renderscript_kernel_bp_set_options);
42731f0f5b5bSZachary Turner     }
4274018f5a7eSEwan Crawford 
427500f56eebSLuke Drummond     RSCoordinate m_coord;
427600f56eebSLuke Drummond     bool m_have_coord;
4277018f5a7eSEwan Crawford   };
4278018f5a7eSEwan Crawford 
4279b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
42804640cde1SColin Riley     const size_t argc = command.GetArgumentCount();
4281b9c1b51eSKate Stone     if (argc < 1) {
4282b9c1b51eSKate Stone       result.AppendErrorWithFormat(
4283b9c1b51eSKate Stone           "'%s' takes 1 argument of kernel name, and an optional coordinate.",
4284b3f7f69dSAidan Dodds           m_cmd_name.c_str());
4285018f5a7eSEwan Crawford       result.SetStatus(eReturnStatusFailed);
4286018f5a7eSEwan Crawford       return false;
4287018f5a7eSEwan Crawford     }
4288018f5a7eSEwan Crawford 
4289056f6f18SAlex Langford     RenderScriptRuntime *runtime = llvm::cast<RenderScriptRuntime>(
4290056f6f18SAlex Langford         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4291056f6f18SAlex Langford             eLanguageTypeExtRenderScript));
42924640cde1SColin Riley 
429300f56eebSLuke Drummond     auto &outstream = result.GetOutputStream();
429400f56eebSLuke Drummond     auto &target = m_exe_ctx.GetTargetSP();
429500f56eebSLuke Drummond     auto name = command.GetArgumentAtIndex(0);
429600f56eebSLuke Drummond     auto coord = m_options.m_have_coord ? &m_options.m_coord : nullptr;
429700f56eebSLuke Drummond     if (!runtime->PlaceBreakpointOnKernel(target, outstream, name, coord)) {
429800f56eebSLuke Drummond       result.SetStatus(eReturnStatusFailed);
429900f56eebSLuke Drummond       result.AppendErrorWithFormat(
430000f56eebSLuke Drummond           "Error: unable to set breakpoint on kernel '%s'", name);
430100f56eebSLuke Drummond       return false;
430200f56eebSLuke Drummond     }
43034640cde1SColin Riley 
43044640cde1SColin Riley     result.AppendMessage("Breakpoint(s) created");
43054640cde1SColin Riley     result.SetStatus(eReturnStatusSuccessFinishResult);
43064640cde1SColin Riley     return true;
43074640cde1SColin Riley   }
43084640cde1SColin Riley 
4309018f5a7eSEwan Crawford private:
4310018f5a7eSEwan Crawford   CommandOptions m_options;
43114640cde1SColin Riley };
43124640cde1SColin Riley 
4313b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernelBreakpointAll
4314b9c1b51eSKate Stone     : public CommandObjectParsed {
43157dc7771cSEwan Crawford public:
4316b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeKernelBreakpointAll(
4317b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4318b3f7f69dSAidan Dodds       : CommandObjectParsed(
4319b3f7f69dSAidan Dodds             interpreter, "renderscript kernel breakpoint all",
4320b9c1b51eSKate Stone             "Automatically sets a breakpoint on all renderscript kernels that "
4321b9c1b51eSKate Stone             "are or will be loaded.\n"
4322b9c1b51eSKate Stone             "Disabling option means breakpoints will no longer be set on any "
4323b9c1b51eSKate Stone             "kernels loaded in the future, "
43247dc7771cSEwan Crawford             "but does not remove currently set breakpoints.",
43257dc7771cSEwan Crawford             "renderscript kernel breakpoint all <enable/disable>",
4326b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched |
4327b9c1b51eSKate Stone                 eCommandProcessMustBePaused) {}
43287dc7771cSEwan Crawford 
4329222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeKernelBreakpointAll() override = default;
43307dc7771cSEwan Crawford 
4331b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
43327dc7771cSEwan Crawford     const size_t argc = command.GetArgumentCount();
4333b9c1b51eSKate Stone     if (argc != 1) {
4334b9c1b51eSKate Stone       result.AppendErrorWithFormat(
4335b9c1b51eSKate Stone           "'%s' takes 1 argument of 'enable' or 'disable'", m_cmd_name.c_str());
43367dc7771cSEwan Crawford       result.SetStatus(eReturnStatusFailed);
43377dc7771cSEwan Crawford       return false;
43387dc7771cSEwan Crawford     }
43397dc7771cSEwan Crawford 
4340b3f7f69dSAidan Dodds     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4341b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4342b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
43437dc7771cSEwan Crawford 
43447dc7771cSEwan Crawford     bool do_break = false;
43457dc7771cSEwan Crawford     const char *argument = command.GetArgumentAtIndex(0);
4346b9c1b51eSKate Stone     if (strcmp(argument, "enable") == 0) {
43477dc7771cSEwan Crawford       do_break = true;
43487dc7771cSEwan Crawford       result.AppendMessage("Breakpoints will be set on all kernels.");
4349b9c1b51eSKate Stone     } else if (strcmp(argument, "disable") == 0) {
43507dc7771cSEwan Crawford       do_break = false;
43517dc7771cSEwan Crawford       result.AppendMessage("Breakpoints will not be set on any new kernels.");
4352b9c1b51eSKate Stone     } else {
4353b9c1b51eSKate Stone       result.AppendErrorWithFormat(
4354b9c1b51eSKate Stone           "Argument must be either 'enable' or 'disable'");
43557dc7771cSEwan Crawford       result.SetStatus(eReturnStatusFailed);
43567dc7771cSEwan Crawford       return false;
43577dc7771cSEwan Crawford     }
43587dc7771cSEwan Crawford 
43597dc7771cSEwan Crawford     runtime->SetBreakAllKernels(do_break, m_exe_ctx.GetTargetSP());
43607dc7771cSEwan Crawford 
43617dc7771cSEwan Crawford     result.SetStatus(eReturnStatusSuccessFinishResult);
43627dc7771cSEwan Crawford     return true;
43637dc7771cSEwan Crawford   }
43647dc7771cSEwan Crawford };
43657dc7771cSEwan Crawford 
4366b3bbcb12SLuke Drummond class CommandObjectRenderScriptRuntimeReductionBreakpoint
4367b3bbcb12SLuke Drummond     : public CommandObjectMultiword {
4368b3bbcb12SLuke Drummond public:
4369b3bbcb12SLuke Drummond   CommandObjectRenderScriptRuntimeReductionBreakpoint(
4370b3bbcb12SLuke Drummond       CommandInterpreter &interpreter)
4371b3bbcb12SLuke Drummond       : CommandObjectMultiword(interpreter, "renderscript reduction breakpoint",
4372b3bbcb12SLuke Drummond                                "Commands that manipulate breakpoints on "
4373b3bbcb12SLuke Drummond                                "renderscript general reductions.",
4374b3bbcb12SLuke Drummond                                nullptr) {
4375b3bbcb12SLuke Drummond     LoadSubCommand(
4376b3bbcb12SLuke Drummond         "set", CommandObjectSP(
4377b3bbcb12SLuke Drummond                    new CommandObjectRenderScriptRuntimeReductionBreakpointSet(
4378b3bbcb12SLuke Drummond                        interpreter)));
4379b3bbcb12SLuke Drummond   }
4380b3bbcb12SLuke Drummond 
4381b3bbcb12SLuke Drummond   ~CommandObjectRenderScriptRuntimeReductionBreakpoint() override = default;
4382b3bbcb12SLuke Drummond };
4383b3bbcb12SLuke Drummond 
4384b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernelCoordinate
4385b9c1b51eSKate Stone     : public CommandObjectParsed {
43864f8817c2SEwan Crawford public:
4387b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeKernelCoordinate(
4388b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4389b9c1b51eSKate Stone       : CommandObjectParsed(
4390b9c1b51eSKate Stone             interpreter, "renderscript kernel coordinate",
43914f8817c2SEwan Crawford             "Shows the (x,y,z) coordinate of the current kernel invocation.",
43924f8817c2SEwan Crawford             "renderscript kernel coordinate",
4393b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched |
4394b9c1b51eSKate Stone                 eCommandProcessMustBePaused) {}
43954f8817c2SEwan Crawford 
43964f8817c2SEwan Crawford   ~CommandObjectRenderScriptRuntimeKernelCoordinate() override = default;
43974f8817c2SEwan Crawford 
4398b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
439900f56eebSLuke Drummond     RSCoordinate coord{};
4400b9c1b51eSKate Stone     bool success = RenderScriptRuntime::GetKernelCoordinate(
4401b9c1b51eSKate Stone         coord, m_exe_ctx.GetThreadPtr());
44024f8817c2SEwan Crawford     Stream &stream = result.GetOutputStream();
44034f8817c2SEwan Crawford 
4404b9c1b51eSKate Stone     if (success) {
440500f56eebSLuke Drummond       stream.Printf("Coordinate: " FMT_COORD, coord.x, coord.y, coord.z);
44064f8817c2SEwan Crawford       stream.EOL();
44074f8817c2SEwan Crawford       result.SetStatus(eReturnStatusSuccessFinishResult);
4408b9c1b51eSKate Stone     } else {
44094f8817c2SEwan Crawford       stream.Printf("Error: Coordinate could not be found.");
44104f8817c2SEwan Crawford       stream.EOL();
44114f8817c2SEwan Crawford       result.SetStatus(eReturnStatusFailed);
44124f8817c2SEwan Crawford     }
44134f8817c2SEwan Crawford     return true;
44144f8817c2SEwan Crawford   }
44154f8817c2SEwan Crawford };
44164f8817c2SEwan Crawford 
4417b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernelBreakpoint
4418b9c1b51eSKate Stone     : public CommandObjectMultiword {
44197dc7771cSEwan Crawford public:
4420b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeKernelBreakpoint(
4421b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4422b9c1b51eSKate Stone       : CommandObjectMultiword(
4423b9c1b51eSKate Stone             interpreter, "renderscript kernel",
4424b9c1b51eSKate Stone             "Commands that generate breakpoints on renderscript kernels.",
4425b9c1b51eSKate Stone             nullptr) {
4426b9c1b51eSKate Stone     LoadSubCommand(
4427b9c1b51eSKate Stone         "set",
4428b9c1b51eSKate Stone         CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointSet(
4429b9c1b51eSKate Stone             interpreter)));
4430b9c1b51eSKate Stone     LoadSubCommand(
4431b9c1b51eSKate Stone         "all",
4432b9c1b51eSKate Stone         CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointAll(
4433b9c1b51eSKate Stone             interpreter)));
44347dc7771cSEwan Crawford   }
44357dc7771cSEwan Crawford 
4436222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeKernelBreakpoint() override = default;
44377dc7771cSEwan Crawford };
44387dc7771cSEwan Crawford 
4439b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeKernel : public CommandObjectMultiword {
44404640cde1SColin Riley public:
44414640cde1SColin Riley   CommandObjectRenderScriptRuntimeKernel(CommandInterpreter &interpreter)
4442b9c1b51eSKate Stone       : CommandObjectMultiword(interpreter, "renderscript kernel",
4443b9c1b51eSKate Stone                                "Commands that deal with RenderScript kernels.",
4444b9c1b51eSKate Stone                                nullptr) {
4445b9c1b51eSKate Stone     LoadSubCommand(
4446b9c1b51eSKate Stone         "list", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelList(
4447b9c1b51eSKate Stone                     interpreter)));
4448b9c1b51eSKate Stone     LoadSubCommand(
4449b9c1b51eSKate Stone         "coordinate",
4450b9c1b51eSKate Stone         CommandObjectSP(
4451b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeKernelCoordinate(interpreter)));
4452b9c1b51eSKate Stone     LoadSubCommand(
4453b9c1b51eSKate Stone         "breakpoint",
4454b9c1b51eSKate Stone         CommandObjectSP(
4455b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeKernelBreakpoint(interpreter)));
44564640cde1SColin Riley   }
44574640cde1SColin Riley 
4458222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeKernel() override = default;
44594640cde1SColin Riley };
44604640cde1SColin Riley 
4461b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeContextDump : public CommandObjectParsed {
44624640cde1SColin Riley public:
44634640cde1SColin Riley   CommandObjectRenderScriptRuntimeContextDump(CommandInterpreter &interpreter)
4464b9c1b51eSKate Stone       : CommandObjectParsed(interpreter, "renderscript context dump",
4465b9c1b51eSKate Stone                             "Dumps renderscript context information.",
4466b9c1b51eSKate Stone                             "renderscript context dump",
4467b9c1b51eSKate Stone                             eCommandRequiresProcess |
4468b9c1b51eSKate Stone                                 eCommandProcessMustBeLaunched) {}
44694640cde1SColin Riley 
4470222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeContextDump() override = default;
44714640cde1SColin Riley 
4472b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4473056f6f18SAlex Langford     RenderScriptRuntime *runtime = llvm::cast<RenderScriptRuntime>(
4474056f6f18SAlex Langford         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4475056f6f18SAlex Langford             eLanguageTypeExtRenderScript));
44764640cde1SColin Riley     runtime->DumpContexts(result.GetOutputStream());
44774640cde1SColin Riley     result.SetStatus(eReturnStatusSuccessFinishResult);
44784640cde1SColin Riley     return true;
44794640cde1SColin Riley   }
44804640cde1SColin Riley };
44814640cde1SColin Riley 
44828fe53c49STatyana Krasnukha static constexpr OptionDefinition g_renderscript_runtime_alloc_dump_options[] = {
44831f0f5b5bSZachary Turner     {LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument,
44848fe53c49STatyana Krasnukha      nullptr, {}, 0, eArgTypeFilename,
44851f0f5b5bSZachary Turner      "Print results to specified file instead of command line."}};
44861f0f5b5bSZachary Turner 
4487b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeContext : public CommandObjectMultiword {
44884640cde1SColin Riley public:
44894640cde1SColin Riley   CommandObjectRenderScriptRuntimeContext(CommandInterpreter &interpreter)
4490b9c1b51eSKate Stone       : CommandObjectMultiword(interpreter, "renderscript context",
4491b9c1b51eSKate Stone                                "Commands that deal with RenderScript contexts.",
4492b9c1b51eSKate Stone                                nullptr) {
4493b9c1b51eSKate Stone     LoadSubCommand(
4494b9c1b51eSKate Stone         "dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeContextDump(
4495b9c1b51eSKate Stone                     interpreter)));
44964640cde1SColin Riley   }
44974640cde1SColin Riley 
4498222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeContext() override = default;
44994640cde1SColin Riley };
45004640cde1SColin Riley 
4501b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocationDump
4502b9c1b51eSKate Stone     : public CommandObjectParsed {
4503a0f08674SEwan Crawford public:
4504b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeAllocationDump(
4505b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4506a0f08674SEwan Crawford       : CommandObjectParsed(interpreter, "renderscript allocation dump",
4507b9c1b51eSKate Stone                             "Displays the contents of a particular allocation",
4508b9c1b51eSKate Stone                             "renderscript allocation dump <ID>",
4509b9c1b51eSKate Stone                             eCommandRequiresProcess |
4510b9c1b51eSKate Stone                                 eCommandProcessMustBeLaunched),
4511b9c1b51eSKate Stone         m_options() {}
4512a0f08674SEwan Crawford 
4513222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeAllocationDump() override = default;
4514222b937cSEugene Zelenko 
4515b9c1b51eSKate Stone   Options *GetOptions() override { return &m_options; }
4516a0f08674SEwan Crawford 
4517b9c1b51eSKate Stone   class CommandOptions : public Options {
4518a0f08674SEwan Crawford   public:
4519e1cfbc79STodd Fiala     CommandOptions() : Options() {}
4520a0f08674SEwan Crawford 
4521222b937cSEugene Zelenko     ~CommandOptions() override = default;
4522a0f08674SEwan Crawford 
452397206d57SZachary Turner     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
4524b3bbcb12SLuke Drummond                           ExecutionContext *exe_ctx) override {
452597206d57SZachary Turner       Status err;
4526a0f08674SEwan Crawford       const int short_option = m_getopt_table[option_idx].val;
4527a0f08674SEwan Crawford 
4528b9c1b51eSKate Stone       switch (short_option) {
4529a0f08674SEwan Crawford       case 'f':
45308f3be7a3SJonas Devlieghere         m_outfile.SetFile(option_arg, FileSpec::Style::native);
45318f3be7a3SJonas Devlieghere         FileSystem::Instance().Resolve(m_outfile);
4532dbd7fabaSJonas Devlieghere         if (FileSystem::Instance().Exists(m_outfile)) {
4533a0f08674SEwan Crawford           m_outfile.Clear();
4534fe11483bSZachary Turner           err.SetErrorStringWithFormat("file already exists: '%s'",
4535fe11483bSZachary Turner                                        option_arg.str().c_str());
4536a0f08674SEwan Crawford         }
4537a0f08674SEwan Crawford         break;
4538a0f08674SEwan Crawford       default:
453980af0b9eSLuke Drummond         err.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
4540a0f08674SEwan Crawford         break;
4541a0f08674SEwan Crawford       }
454280af0b9eSLuke Drummond       return err;
4543a0f08674SEwan Crawford     }
4544a0f08674SEwan Crawford 
4545b3bbcb12SLuke Drummond     void OptionParsingStarting(ExecutionContext *exe_ctx) override {
4546a0f08674SEwan Crawford       m_outfile.Clear();
4547a0f08674SEwan Crawford     }
4548a0f08674SEwan Crawford 
45491f0f5b5bSZachary Turner     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
455070602439SZachary Turner       return llvm::makeArrayRef(g_renderscript_runtime_alloc_dump_options);
45511f0f5b5bSZachary Turner     }
4552a0f08674SEwan Crawford 
4553a0f08674SEwan Crawford     FileSpec m_outfile;
4554a0f08674SEwan Crawford   };
4555a0f08674SEwan Crawford 
4556b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4557a0f08674SEwan Crawford     const size_t argc = command.GetArgumentCount();
4558b9c1b51eSKate Stone     if (argc < 1) {
4559b9c1b51eSKate Stone       result.AppendErrorWithFormat("'%s' takes 1 argument, an allocation ID. "
4560b9c1b51eSKate Stone                                    "As well as an optional -f argument",
4561a0f08674SEwan Crawford                                    m_cmd_name.c_str());
4562a0f08674SEwan Crawford       result.SetStatus(eReturnStatusFailed);
4563a0f08674SEwan Crawford       return false;
4564a0f08674SEwan Crawford     }
4565a0f08674SEwan Crawford 
4566b3f7f69dSAidan Dodds     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4567b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4568b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
4569a0f08674SEwan Crawford 
4570a0f08674SEwan Crawford     const char *id_cstr = command.GetArgumentAtIndex(0);
457180af0b9eSLuke Drummond     bool success = false;
4572b9c1b51eSKate Stone     const uint32_t id =
457380af0b9eSLuke Drummond         StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success);
457480af0b9eSLuke Drummond     if (!success) {
4575b9c1b51eSKate Stone       result.AppendErrorWithFormat("invalid allocation id argument '%s'",
4576b9c1b51eSKate Stone                                    id_cstr);
4577a0f08674SEwan Crawford       result.SetStatus(eReturnStatusFailed);
4578a0f08674SEwan Crawford       return false;
4579a0f08674SEwan Crawford     }
4580a0f08674SEwan Crawford 
4581a0f08674SEwan Crawford     Stream *output_strm = nullptr;
4582a0f08674SEwan Crawford     StreamFile outfile_stream;
4583b9c1b51eSKate Stone     const FileSpec &outfile_spec =
4584b9c1b51eSKate Stone         m_options.m_outfile; // Dump allocation to file instead
4585b9c1b51eSKate Stone     if (outfile_spec) {
4586a0f08674SEwan Crawford       // Open output file
458750bc1ed2SJonas Devlieghere       std::string path = outfile_spec.GetPath();
458850bc1ed2SJonas Devlieghere       auto error = FileSystem::Instance().Open(
458950bc1ed2SJonas Devlieghere           outfile_stream.GetFile(), outfile_spec,
459050bc1ed2SJonas Devlieghere           File::eOpenOptionWrite | File::eOpenOptionCanCreate);
459150bc1ed2SJonas Devlieghere       if (error.Success()) {
4592a0f08674SEwan Crawford         output_strm = &outfile_stream;
459350bc1ed2SJonas Devlieghere         result.GetOutputStream().Printf("Results written to '%s'",
459450bc1ed2SJonas Devlieghere                                         path.c_str());
4595a0f08674SEwan Crawford         result.GetOutputStream().EOL();
4596b9c1b51eSKate Stone       } else {
459750bc1ed2SJonas Devlieghere         result.AppendErrorWithFormat("Couldn't open file '%s'", path.c_str());
4598a0f08674SEwan Crawford         result.SetStatus(eReturnStatusFailed);
4599a0f08674SEwan Crawford         return false;
4600a0f08674SEwan Crawford       }
4601b9c1b51eSKate Stone     } else
4602a0f08674SEwan Crawford       output_strm = &result.GetOutputStream();
4603a0f08674SEwan Crawford 
4604a0f08674SEwan Crawford     assert(output_strm != nullptr);
460580af0b9eSLuke Drummond     bool dumped =
4606b9c1b51eSKate Stone         runtime->DumpAllocation(*output_strm, m_exe_ctx.GetFramePtr(), id);
4607a0f08674SEwan Crawford 
460880af0b9eSLuke Drummond     if (dumped)
4609a0f08674SEwan Crawford       result.SetStatus(eReturnStatusSuccessFinishResult);
4610a0f08674SEwan Crawford     else
4611a0f08674SEwan Crawford       result.SetStatus(eReturnStatusFailed);
4612a0f08674SEwan Crawford 
4613a0f08674SEwan Crawford     return true;
4614a0f08674SEwan Crawford   }
4615a0f08674SEwan Crawford 
4616a0f08674SEwan Crawford private:
4617a0f08674SEwan Crawford   CommandOptions m_options;
4618a0f08674SEwan Crawford };
4619a0f08674SEwan Crawford 
46208fe53c49STatyana Krasnukha static constexpr OptionDefinition g_renderscript_runtime_alloc_list_options[] = {
46211f0f5b5bSZachary Turner     {LLDB_OPT_SET_1, false, "id", 'i', OptionParser::eRequiredArgument, nullptr,
46228fe53c49STatyana Krasnukha      {}, 0, eArgTypeIndex,
46231f0f5b5bSZachary Turner      "Only show details of a single allocation with specified id."}};
4624a0f08674SEwan Crawford 
4625b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocationList
4626b9c1b51eSKate Stone     : public CommandObjectParsed {
462715f2bd95SEwan Crawford public:
4628b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeAllocationList(
4629b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4630b9c1b51eSKate Stone       : CommandObjectParsed(
4631b9c1b51eSKate Stone             interpreter, "renderscript allocation list",
4632b9c1b51eSKate Stone             "List renderscript allocations and their information.",
4633b9c1b51eSKate Stone             "renderscript allocation list",
4634b3f7f69dSAidan Dodds             eCommandRequiresProcess | eCommandProcessMustBeLaunched),
4635b9c1b51eSKate Stone         m_options() {}
463615f2bd95SEwan Crawford 
4637222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeAllocationList() override = default;
4638222b937cSEugene Zelenko 
4639b9c1b51eSKate Stone   Options *GetOptions() override { return &m_options; }
464015f2bd95SEwan Crawford 
4641b9c1b51eSKate Stone   class CommandOptions : public Options {
464215f2bd95SEwan Crawford   public:
4643e1cfbc79STodd Fiala     CommandOptions() : Options(), m_id(0) {}
464415f2bd95SEwan Crawford 
4645222b937cSEugene Zelenko     ~CommandOptions() override = default;
464615f2bd95SEwan Crawford 
464797206d57SZachary Turner     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
4648b3bbcb12SLuke Drummond                           ExecutionContext *exe_ctx) override {
464997206d57SZachary Turner       Status err;
465015f2bd95SEwan Crawford       const int short_option = m_getopt_table[option_idx].val;
465115f2bd95SEwan Crawford 
4652b9c1b51eSKate Stone       switch (short_option) {
4653b649b005SEwan Crawford       case 'i':
4654fe11483bSZachary Turner         if (option_arg.getAsInteger(0, m_id))
465580af0b9eSLuke Drummond           err.SetErrorStringWithFormat("invalid integer value for option '%c'",
4656b9c1b51eSKate Stone                                        short_option);
465715f2bd95SEwan Crawford         break;
465880af0b9eSLuke Drummond       default:
465980af0b9eSLuke Drummond         err.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
466080af0b9eSLuke Drummond         break;
466115f2bd95SEwan Crawford       }
466280af0b9eSLuke Drummond       return err;
466315f2bd95SEwan Crawford     }
466415f2bd95SEwan Crawford 
4665b3bbcb12SLuke Drummond     void OptionParsingStarting(ExecutionContext *exe_ctx) override { m_id = 0; }
466615f2bd95SEwan Crawford 
46671f0f5b5bSZachary Turner     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
466870602439SZachary Turner       return llvm::makeArrayRef(g_renderscript_runtime_alloc_list_options);
46691f0f5b5bSZachary Turner     }
467015f2bd95SEwan Crawford 
4671b649b005SEwan Crawford     uint32_t m_id;
467215f2bd95SEwan Crawford   };
467315f2bd95SEwan Crawford 
4674b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4675b3f7f69dSAidan Dodds     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4676b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4677b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
4678b9c1b51eSKate Stone     runtime->ListAllocations(result.GetOutputStream(), m_exe_ctx.GetFramePtr(),
4679b9c1b51eSKate Stone                              m_options.m_id);
468015f2bd95SEwan Crawford     result.SetStatus(eReturnStatusSuccessFinishResult);
468115f2bd95SEwan Crawford     return true;
468215f2bd95SEwan Crawford   }
468315f2bd95SEwan Crawford 
468415f2bd95SEwan Crawford private:
468515f2bd95SEwan Crawford   CommandOptions m_options;
468615f2bd95SEwan Crawford };
468715f2bd95SEwan Crawford 
4688b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocationLoad
4689b9c1b51eSKate Stone     : public CommandObjectParsed {
469055232f09SEwan Crawford public:
4691b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeAllocationLoad(
4692b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4693b3f7f69dSAidan Dodds       : CommandObjectParsed(
4694b9c1b51eSKate Stone             interpreter, "renderscript allocation load",
4695b9c1b51eSKate Stone             "Loads renderscript allocation contents from a file.",
4696b9c1b51eSKate Stone             "renderscript allocation load <ID> <filename>",
4697b9c1b51eSKate Stone             eCommandRequiresProcess | eCommandProcessMustBeLaunched) {}
469855232f09SEwan Crawford 
4699222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeAllocationLoad() override = default;
470055232f09SEwan Crawford 
4701b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
470255232f09SEwan Crawford     const size_t argc = command.GetArgumentCount();
4703b9c1b51eSKate Stone     if (argc != 2) {
4704b9c1b51eSKate Stone       result.AppendErrorWithFormat(
4705b9c1b51eSKate Stone           "'%s' takes 2 arguments, an allocation ID and filename to read from.",
4706b3f7f69dSAidan Dodds           m_cmd_name.c_str());
470755232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
470855232f09SEwan Crawford       return false;
470955232f09SEwan Crawford     }
471055232f09SEwan Crawford 
4711b3f7f69dSAidan Dodds     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4712b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4713b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
471455232f09SEwan Crawford 
471555232f09SEwan Crawford     const char *id_cstr = command.GetArgumentAtIndex(0);
471680af0b9eSLuke Drummond     bool success = false;
4717b9c1b51eSKate Stone     const uint32_t id =
471880af0b9eSLuke Drummond         StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success);
471980af0b9eSLuke Drummond     if (!success) {
4720b9c1b51eSKate Stone       result.AppendErrorWithFormat("invalid allocation id argument '%s'",
4721b9c1b51eSKate Stone                                    id_cstr);
472255232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
472355232f09SEwan Crawford       return false;
472455232f09SEwan Crawford     }
472555232f09SEwan Crawford 
472680af0b9eSLuke Drummond     const char *path = command.GetArgumentAtIndex(1);
472780af0b9eSLuke Drummond     bool loaded = runtime->LoadAllocation(result.GetOutputStream(), id, path,
472880af0b9eSLuke Drummond                                           m_exe_ctx.GetFramePtr());
472955232f09SEwan Crawford 
473080af0b9eSLuke Drummond     if (loaded)
473155232f09SEwan Crawford       result.SetStatus(eReturnStatusSuccessFinishResult);
473255232f09SEwan Crawford     else
473355232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
473455232f09SEwan Crawford 
473555232f09SEwan Crawford     return true;
473655232f09SEwan Crawford   }
473755232f09SEwan Crawford };
473855232f09SEwan Crawford 
4739b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocationSave
4740b9c1b51eSKate Stone     : public CommandObjectParsed {
474155232f09SEwan Crawford public:
4742b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeAllocationSave(
4743b9c1b51eSKate Stone       CommandInterpreter &interpreter)
4744b9c1b51eSKate Stone       : CommandObjectParsed(interpreter, "renderscript allocation save",
4745b9c1b51eSKate Stone                             "Write renderscript allocation contents to a file.",
4746b9c1b51eSKate Stone                             "renderscript allocation save <ID> <filename>",
4747b9c1b51eSKate Stone                             eCommandRequiresProcess |
4748b9c1b51eSKate Stone                                 eCommandProcessMustBeLaunched) {}
474955232f09SEwan Crawford 
4750222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeAllocationSave() override = default;
475155232f09SEwan Crawford 
4752b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
475355232f09SEwan Crawford     const size_t argc = command.GetArgumentCount();
4754b9c1b51eSKate Stone     if (argc != 2) {
4755b9c1b51eSKate Stone       result.AppendErrorWithFormat(
4756b9c1b51eSKate Stone           "'%s' takes 2 arguments, an allocation ID and filename to read from.",
4757b3f7f69dSAidan Dodds           m_cmd_name.c_str());
475855232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
475955232f09SEwan Crawford       return false;
476055232f09SEwan Crawford     }
476155232f09SEwan Crawford 
4762b3f7f69dSAidan Dodds     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4763b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4764b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
476555232f09SEwan Crawford 
476655232f09SEwan Crawford     const char *id_cstr = command.GetArgumentAtIndex(0);
476780af0b9eSLuke Drummond     bool success = false;
4768b9c1b51eSKate Stone     const uint32_t id =
476980af0b9eSLuke Drummond         StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success);
477080af0b9eSLuke Drummond     if (!success) {
4771b9c1b51eSKate Stone       result.AppendErrorWithFormat("invalid allocation id argument '%s'",
4772b9c1b51eSKate Stone                                    id_cstr);
477355232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
477455232f09SEwan Crawford       return false;
477555232f09SEwan Crawford     }
477655232f09SEwan Crawford 
477780af0b9eSLuke Drummond     const char *path = command.GetArgumentAtIndex(1);
477880af0b9eSLuke Drummond     bool saved = runtime->SaveAllocation(result.GetOutputStream(), id, path,
477980af0b9eSLuke Drummond                                          m_exe_ctx.GetFramePtr());
478055232f09SEwan Crawford 
478180af0b9eSLuke Drummond     if (saved)
478255232f09SEwan Crawford       result.SetStatus(eReturnStatusSuccessFinishResult);
478355232f09SEwan Crawford     else
478455232f09SEwan Crawford       result.SetStatus(eReturnStatusFailed);
478555232f09SEwan Crawford 
478655232f09SEwan Crawford     return true;
478755232f09SEwan Crawford   }
478855232f09SEwan Crawford };
478955232f09SEwan Crawford 
4790b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocationRefresh
4791b9c1b51eSKate Stone     : public CommandObjectParsed {
47920d2bfcfbSEwan Crawford public:
4793b9c1b51eSKate Stone   CommandObjectRenderScriptRuntimeAllocationRefresh(
4794b9c1b51eSKate Stone       CommandInterpreter &interpreter)
47950d2bfcfbSEwan Crawford       : CommandObjectParsed(interpreter, "renderscript allocation refresh",
4796b9c1b51eSKate Stone                             "Recomputes the details of all allocations.",
4797b9c1b51eSKate Stone                             "renderscript allocation refresh",
4798b9c1b51eSKate Stone                             eCommandRequiresProcess |
4799b9c1b51eSKate Stone                                 eCommandProcessMustBeLaunched) {}
48000d2bfcfbSEwan Crawford 
48010d2bfcfbSEwan Crawford   ~CommandObjectRenderScriptRuntimeAllocationRefresh() override = default;
48020d2bfcfbSEwan Crawford 
4803b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
48040d2bfcfbSEwan Crawford     RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4805b9c1b51eSKate Stone         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4806b9c1b51eSKate Stone             eLanguageTypeExtRenderScript));
48070d2bfcfbSEwan Crawford 
4808b9c1b51eSKate Stone     bool success = runtime->RecomputeAllAllocations(result.GetOutputStream(),
4809b9c1b51eSKate Stone                                                     m_exe_ctx.GetFramePtr());
48100d2bfcfbSEwan Crawford 
4811b9c1b51eSKate Stone     if (success) {
48120d2bfcfbSEwan Crawford       result.SetStatus(eReturnStatusSuccessFinishResult);
48130d2bfcfbSEwan Crawford       return true;
4814b9c1b51eSKate Stone     } else {
48150d2bfcfbSEwan Crawford       result.SetStatus(eReturnStatusFailed);
48160d2bfcfbSEwan Crawford       return false;
48170d2bfcfbSEwan Crawford     }
48180d2bfcfbSEwan Crawford   }
48190d2bfcfbSEwan Crawford };
48200d2bfcfbSEwan Crawford 
4821b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeAllocation
4822b9c1b51eSKate Stone     : public CommandObjectMultiword {
482315f2bd95SEwan Crawford public:
482415f2bd95SEwan Crawford   CommandObjectRenderScriptRuntimeAllocation(CommandInterpreter &interpreter)
4825b9c1b51eSKate Stone       : CommandObjectMultiword(
4826b9c1b51eSKate Stone             interpreter, "renderscript allocation",
4827b9c1b51eSKate Stone             "Commands that deal with RenderScript allocations.", nullptr) {
4828b9c1b51eSKate Stone     LoadSubCommand(
4829b9c1b51eSKate Stone         "list",
4830b9c1b51eSKate Stone         CommandObjectSP(
4831b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeAllocationList(interpreter)));
4832b9c1b51eSKate Stone     LoadSubCommand(
4833b9c1b51eSKate Stone         "dump",
4834b9c1b51eSKate Stone         CommandObjectSP(
4835b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeAllocationDump(interpreter)));
4836b9c1b51eSKate Stone     LoadSubCommand(
4837b9c1b51eSKate Stone         "save",
4838b9c1b51eSKate Stone         CommandObjectSP(
4839b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeAllocationSave(interpreter)));
4840b9c1b51eSKate Stone     LoadSubCommand(
4841b9c1b51eSKate Stone         "load",
4842b9c1b51eSKate Stone         CommandObjectSP(
4843b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeAllocationLoad(interpreter)));
4844b9c1b51eSKate Stone     LoadSubCommand(
4845b9c1b51eSKate Stone         "refresh",
4846b9c1b51eSKate Stone         CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationRefresh(
4847b9c1b51eSKate Stone             interpreter)));
484815f2bd95SEwan Crawford   }
484915f2bd95SEwan Crawford 
4850222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeAllocation() override = default;
485115f2bd95SEwan Crawford };
485215f2bd95SEwan Crawford 
4853b9c1b51eSKate Stone class CommandObjectRenderScriptRuntimeStatus : public CommandObjectParsed {
48544640cde1SColin Riley public:
48554640cde1SColin Riley   CommandObjectRenderScriptRuntimeStatus(CommandInterpreter &interpreter)
4856b9c1b51eSKate Stone       : CommandObjectParsed(interpreter, "renderscript status",
4857b9c1b51eSKate Stone                             "Displays current RenderScript runtime status.",
4858b9c1b51eSKate Stone                             "renderscript status",
4859b9c1b51eSKate Stone                             eCommandRequiresProcess |
4860b9c1b51eSKate Stone                                 eCommandProcessMustBeLaunched) {}
48614640cde1SColin Riley 
4862222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntimeStatus() override = default;
48634640cde1SColin Riley 
4864b9c1b51eSKate Stone   bool DoExecute(Args &command, CommandReturnObject &result) override {
4865056f6f18SAlex Langford     RenderScriptRuntime *runtime = llvm::cast<RenderScriptRuntime>(
4866056f6f18SAlex Langford         m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(
4867056f6f18SAlex Langford             eLanguageTypeExtRenderScript));
486897206d57SZachary Turner     runtime->DumpStatus(result.GetOutputStream());
48694640cde1SColin Riley     result.SetStatus(eReturnStatusSuccessFinishResult);
48704640cde1SColin Riley     return true;
48714640cde1SColin Riley   }
48724640cde1SColin Riley };
48734640cde1SColin Riley 
4874b3bbcb12SLuke Drummond class CommandObjectRenderScriptRuntimeReduction
4875b3bbcb12SLuke Drummond     : public CommandObjectMultiword {
4876b3bbcb12SLuke Drummond public:
4877b3bbcb12SLuke Drummond   CommandObjectRenderScriptRuntimeReduction(CommandInterpreter &interpreter)
4878b3bbcb12SLuke Drummond       : CommandObjectMultiword(interpreter, "renderscript reduction",
4879b3bbcb12SLuke Drummond                                "Commands that handle general reduction kernels",
4880b3bbcb12SLuke Drummond                                nullptr) {
4881b3bbcb12SLuke Drummond     LoadSubCommand(
4882b3bbcb12SLuke Drummond         "breakpoint",
4883b3bbcb12SLuke Drummond         CommandObjectSP(new CommandObjectRenderScriptRuntimeReductionBreakpoint(
4884b3bbcb12SLuke Drummond             interpreter)));
4885b3bbcb12SLuke Drummond   }
4886b3bbcb12SLuke Drummond   ~CommandObjectRenderScriptRuntimeReduction() override = default;
4887b3bbcb12SLuke Drummond };
4888b3bbcb12SLuke Drummond 
4889b9c1b51eSKate Stone class CommandObjectRenderScriptRuntime : public CommandObjectMultiword {
48905ec532a9SColin Riley public:
48915ec532a9SColin Riley   CommandObjectRenderScriptRuntime(CommandInterpreter &interpreter)
4892b9c1b51eSKate Stone       : CommandObjectMultiword(
4893b9c1b51eSKate Stone             interpreter, "renderscript",
4894b9c1b51eSKate Stone             "Commands for operating on the RenderScript runtime.",
4895b9c1b51eSKate Stone             "renderscript <subcommand> [<subcommand-options>]") {
4896b9c1b51eSKate Stone     LoadSubCommand(
4897b9c1b51eSKate Stone         "module", CommandObjectSP(
4898b9c1b51eSKate Stone                       new CommandObjectRenderScriptRuntimeModule(interpreter)));
4899b9c1b51eSKate Stone     LoadSubCommand(
4900b9c1b51eSKate Stone         "status", CommandObjectSP(
4901b9c1b51eSKate Stone                       new CommandObjectRenderScriptRuntimeStatus(interpreter)));
4902b9c1b51eSKate Stone     LoadSubCommand(
4903b9c1b51eSKate Stone         "kernel", CommandObjectSP(
4904b9c1b51eSKate Stone                       new CommandObjectRenderScriptRuntimeKernel(interpreter)));
4905b9c1b51eSKate Stone     LoadSubCommand("context",
4906b9c1b51eSKate Stone                    CommandObjectSP(new CommandObjectRenderScriptRuntimeContext(
4907b9c1b51eSKate Stone                        interpreter)));
4908b9c1b51eSKate Stone     LoadSubCommand(
4909b9c1b51eSKate Stone         "allocation",
4910b9c1b51eSKate Stone         CommandObjectSP(
4911b9c1b51eSKate Stone             new CommandObjectRenderScriptRuntimeAllocation(interpreter)));
491221fed052SAidan Dodds     LoadSubCommand("scriptgroup",
491321fed052SAidan Dodds                    NewCommandObjectRenderScriptScriptGroup(interpreter));
4914b3bbcb12SLuke Drummond     LoadSubCommand(
4915b3bbcb12SLuke Drummond         "reduction",
4916b3bbcb12SLuke Drummond         CommandObjectSP(
4917b3bbcb12SLuke Drummond             new CommandObjectRenderScriptRuntimeReduction(interpreter)));
49185ec532a9SColin Riley   }
49195ec532a9SColin Riley 
4920222b937cSEugene Zelenko   ~CommandObjectRenderScriptRuntime() override = default;
49215ec532a9SColin Riley };
4922ef20b08fSColin Riley 
4923b9c1b51eSKate Stone void RenderScriptRuntime::Initiate() { assert(!m_initiated); }
4924ef20b08fSColin Riley 
4925ef20b08fSColin Riley RenderScriptRuntime::RenderScriptRuntime(Process *process)
4926b9c1b51eSKate Stone     : lldb_private::CPPLanguageRuntime(process), m_initiated(false),
4927b9c1b51eSKate Stone       m_debuggerPresentFlagged(false), m_breakAllKernels(false),
4928b9c1b51eSKate Stone       m_ir_passes(nullptr) {
49294640cde1SColin Riley   ModulesDidLoad(process->GetTarget().GetImages());
4930ef20b08fSColin Riley }
49314640cde1SColin Riley 
4932b9c1b51eSKate Stone lldb::CommandObjectSP RenderScriptRuntime::GetCommandObject(
4933b9c1b51eSKate Stone     lldb_private::CommandInterpreter &interpreter) {
49340a66e2f1SEnrico Granata   return CommandObjectSP(new CommandObjectRenderScriptRuntime(interpreter));
49354640cde1SColin Riley }
49364640cde1SColin Riley 
493778f339d1SEwan Crawford RenderScriptRuntime::~RenderScriptRuntime() = default;
4938