15ec532a9SColin Riley //===-- RenderScriptRuntime.cpp ---------------------------------*- C++ -*-===//
25ec532a9SColin Riley //
35ec532a9SColin Riley //                     The LLVM Compiler Infrastructure
45ec532a9SColin Riley //
55ec532a9SColin Riley // This file is distributed under the University of Illinois Open Source
65ec532a9SColin Riley // License. See LICENSE.TXT for details.
75ec532a9SColin Riley //
85ec532a9SColin Riley //===----------------------------------------------------------------------===//
95ec532a9SColin Riley 
10222b937cSEugene Zelenko // C Includes
11222b937cSEugene Zelenko // C++ Includes
12222b937cSEugene Zelenko // Other libraries and framework includes
13222b937cSEugene Zelenko // Project includes
145ec532a9SColin Riley #include "RenderScriptRuntime.h"
155ec532a9SColin Riley 
165ec532a9SColin Riley #include "lldb/Core/ConstString.h"
175ec532a9SColin Riley #include "lldb/Core/Debugger.h"
185ec532a9SColin Riley #include "lldb/Core/Error.h"
195ec532a9SColin Riley #include "lldb/Core/Log.h"
205ec532a9SColin Riley #include "lldb/Core/PluginManager.h"
218b244e21SEwan Crawford #include "lldb/Core/ValueObjectVariable.h"
22018f5a7eSEwan Crawford #include "lldb/Core/RegularExpression.h"
238b244e21SEwan Crawford #include "lldb/DataFormatters/DumpValueObjectOptions.h"
24a0f08674SEwan Crawford #include "lldb/Host/StringConvert.h"
255ec532a9SColin Riley #include "lldb/Symbol/Symbol.h"
264640cde1SColin Riley #include "lldb/Symbol/Type.h"
275ec532a9SColin Riley #include "lldb/Target/Process.h"
285ec532a9SColin Riley #include "lldb/Target/Target.h"
29018f5a7eSEwan Crawford #include "lldb/Target/Thread.h"
305ec532a9SColin Riley #include "lldb/Interpreter/Args.h"
315ec532a9SColin Riley #include "lldb/Interpreter/Options.h"
325ec532a9SColin Riley #include "lldb/Interpreter/CommandInterpreter.h"
335ec532a9SColin Riley #include "lldb/Interpreter/CommandReturnObject.h"
345ec532a9SColin Riley #include "lldb/Interpreter/CommandObjectMultiword.h"
354640cde1SColin Riley #include "lldb/Breakpoint/StoppointCallbackContext.h"
364640cde1SColin Riley #include "lldb/Target/RegisterContext.h"
3715f2bd95SEwan Crawford #include "lldb/Expression/UserExpression.h"
384640cde1SColin Riley #include "lldb/Symbol/VariableList.h"
395ec532a9SColin Riley 
405ec532a9SColin Riley using namespace lldb;
415ec532a9SColin Riley using namespace lldb_private;
4298156583SEwan Crawford using namespace lldb_renderscript;
435ec532a9SColin Riley 
4478f339d1SEwan Crawford namespace {
4578f339d1SEwan Crawford 
4678f339d1SEwan Crawford // The empirical_type adds a basic level of validation to arbitrary data
4778f339d1SEwan Crawford // allowing us to track if data has been discovered and stored or not.
4878f339d1SEwan Crawford // An empirical_type will be marked as valid only if it has been explicitly assigned to.
4978f339d1SEwan Crawford template <typename type_t>
5078f339d1SEwan Crawford class empirical_type
5178f339d1SEwan Crawford {
5278f339d1SEwan Crawford public:
5378f339d1SEwan Crawford     // Ctor. Contents is invalid when constructed.
5478f339d1SEwan Crawford     empirical_type()
5578f339d1SEwan Crawford         : valid(false)
5678f339d1SEwan Crawford     {}
5778f339d1SEwan Crawford 
5878f339d1SEwan Crawford     // Return true and copy contents to out if valid, else return false.
5978f339d1SEwan Crawford     bool get(type_t& out) const
6078f339d1SEwan Crawford     {
6178f339d1SEwan Crawford         if (valid)
6278f339d1SEwan Crawford             out = data;
6378f339d1SEwan Crawford         return valid;
6478f339d1SEwan Crawford     }
6578f339d1SEwan Crawford 
6678f339d1SEwan Crawford     // Return a pointer to the contents or nullptr if it was not valid.
6778f339d1SEwan Crawford     const type_t* get() const
6878f339d1SEwan Crawford     {
6978f339d1SEwan Crawford         return valid ? &data : nullptr;
7078f339d1SEwan Crawford     }
7178f339d1SEwan Crawford 
7278f339d1SEwan Crawford     // Assign data explicitly.
7378f339d1SEwan Crawford     void set(const type_t in)
7478f339d1SEwan Crawford     {
7578f339d1SEwan Crawford         data = in;
7678f339d1SEwan Crawford         valid = true;
7778f339d1SEwan Crawford     }
7878f339d1SEwan Crawford 
7978f339d1SEwan Crawford     // Mark contents as invalid.
8078f339d1SEwan Crawford     void invalidate()
8178f339d1SEwan Crawford     {
8278f339d1SEwan Crawford         valid = false;
8378f339d1SEwan Crawford     }
8478f339d1SEwan Crawford 
8578f339d1SEwan Crawford     // Returns true if this type contains valid data.
8678f339d1SEwan Crawford     bool isValid() const
8778f339d1SEwan Crawford     {
8878f339d1SEwan Crawford         return valid;
8978f339d1SEwan Crawford     }
9078f339d1SEwan Crawford 
9178f339d1SEwan Crawford     // Assignment operator.
9278f339d1SEwan Crawford     empirical_type<type_t>& operator = (const type_t in)
9378f339d1SEwan Crawford     {
9478f339d1SEwan Crawford         set(in);
9578f339d1SEwan Crawford         return *this;
9678f339d1SEwan Crawford     }
9778f339d1SEwan Crawford 
9878f339d1SEwan Crawford     // Dereference operator returns contents.
9978f339d1SEwan Crawford     // Warning: Will assert if not valid so use only when you know data is valid.
10078f339d1SEwan Crawford     const type_t& operator * () const
10178f339d1SEwan Crawford     {
10278f339d1SEwan Crawford         assert(valid);
10378f339d1SEwan Crawford         return data;
10478f339d1SEwan Crawford     }
10578f339d1SEwan Crawford 
10678f339d1SEwan Crawford protected:
10778f339d1SEwan Crawford     bool valid;
10878f339d1SEwan Crawford     type_t data;
10978f339d1SEwan Crawford };
11078f339d1SEwan Crawford 
111222b937cSEugene Zelenko } // anonymous namespace
11278f339d1SEwan Crawford 
11378f339d1SEwan Crawford // The ScriptDetails class collects data associated with a single script instance.
11478f339d1SEwan Crawford struct RenderScriptRuntime::ScriptDetails
11578f339d1SEwan Crawford {
116222b937cSEugene Zelenko     ~ScriptDetails() = default;
11778f339d1SEwan Crawford 
11878f339d1SEwan Crawford     enum ScriptType
11978f339d1SEwan Crawford     {
12078f339d1SEwan Crawford         eScript,
12178f339d1SEwan Crawford         eScriptC
12278f339d1SEwan Crawford     };
12378f339d1SEwan Crawford 
12478f339d1SEwan Crawford     // The derived type of the script.
12578f339d1SEwan Crawford     empirical_type<ScriptType> type;
12678f339d1SEwan Crawford     // The name of the original source file.
12778f339d1SEwan Crawford     empirical_type<std::string> resName;
12878f339d1SEwan Crawford     // Path to script .so file on the device.
12978f339d1SEwan Crawford     empirical_type<std::string> scriptDyLib;
13078f339d1SEwan Crawford     // Directory where kernel objects are cached on device.
13178f339d1SEwan Crawford     empirical_type<std::string> cacheDir;
13278f339d1SEwan Crawford     // Pointer to the context which owns this script.
13378f339d1SEwan Crawford     empirical_type<lldb::addr_t> context;
13478f339d1SEwan Crawford     // Pointer to the script object itself.
13578f339d1SEwan Crawford     empirical_type<lldb::addr_t> script;
13678f339d1SEwan Crawford };
13778f339d1SEwan Crawford 
1388b244e21SEwan Crawford // This Element class represents the Element object in RS,
1398b244e21SEwan Crawford // defining the type associated with an Allocation.
1408b244e21SEwan Crawford struct RenderScriptRuntime::Element
14178f339d1SEwan Crawford {
14215f2bd95SEwan Crawford     // Taken from rsDefines.h
14315f2bd95SEwan Crawford     enum DataKind
14415f2bd95SEwan Crawford     {
14515f2bd95SEwan Crawford         RS_KIND_USER,
14615f2bd95SEwan Crawford         RS_KIND_PIXEL_L = 7,
14715f2bd95SEwan Crawford         RS_KIND_PIXEL_A,
14815f2bd95SEwan Crawford         RS_KIND_PIXEL_LA,
14915f2bd95SEwan Crawford         RS_KIND_PIXEL_RGB,
15015f2bd95SEwan Crawford         RS_KIND_PIXEL_RGBA,
15115f2bd95SEwan Crawford         RS_KIND_PIXEL_DEPTH,
15215f2bd95SEwan Crawford         RS_KIND_PIXEL_YUV,
15315f2bd95SEwan Crawford         RS_KIND_INVALID = 100
15415f2bd95SEwan Crawford     };
15578f339d1SEwan Crawford 
15615f2bd95SEwan Crawford     // Taken from rsDefines.h
15778f339d1SEwan Crawford     enum DataType
15878f339d1SEwan Crawford     {
15915f2bd95SEwan Crawford         RS_TYPE_NONE = 0,
16015f2bd95SEwan Crawford         RS_TYPE_FLOAT_16,
16115f2bd95SEwan Crawford         RS_TYPE_FLOAT_32,
16215f2bd95SEwan Crawford         RS_TYPE_FLOAT_64,
16315f2bd95SEwan Crawford         RS_TYPE_SIGNED_8,
16415f2bd95SEwan Crawford         RS_TYPE_SIGNED_16,
16515f2bd95SEwan Crawford         RS_TYPE_SIGNED_32,
16615f2bd95SEwan Crawford         RS_TYPE_SIGNED_64,
16715f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_8,
16815f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_16,
16915f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_32,
17015f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_64,
17115f2bd95SEwan Crawford         RS_TYPE_BOOLEAN
17278f339d1SEwan Crawford     };
17378f339d1SEwan Crawford 
1748b244e21SEwan Crawford     std::vector<Element> children;                       // Child Element fields for structs
1758b244e21SEwan Crawford     empirical_type<lldb::addr_t> element_ptr;            // Pointer to the RS Element of the Type
1768b244e21SEwan Crawford     empirical_type<DataType> type;                       // Type of each data pointer stored by the allocation
1778b244e21SEwan Crawford     empirical_type<DataKind> type_kind;                  // Defines pixel type if Allocation is created from an image
1788b244e21SEwan Crawford     empirical_type<uint32_t> type_vec_size;              // Vector size of each data point, e.g '4' for uchar4
1798b244e21SEwan Crawford     empirical_type<uint32_t> field_count;                // Number of Subelements
1808b244e21SEwan Crawford     empirical_type<uint32_t> datum_size;                 // Size of a single Element with padding
1818b244e21SEwan Crawford     empirical_type<uint32_t> padding;                    // Number of padding bytes
1828b244e21SEwan Crawford     empirical_type<uint32_t> array_size;                 // Number of items in array, only needed for strucrs
1838b244e21SEwan Crawford     ConstString type_name;                               // Name of type, only needed for structs
1848b244e21SEwan Crawford 
185fe06b5adSAdrian McCarthy     static const ConstString &GetFallbackStructName();   // Print this as the type name of a struct Element
1868b244e21SEwan Crawford                                                          // If we can't resolve the actual struct name
1878b59062aSEwan Crawford 
1888b59062aSEwan Crawford     bool shouldRefresh() const
1898b59062aSEwan Crawford     {
1908b59062aSEwan Crawford         const bool valid_ptr = element_ptr.isValid() && *element_ptr.get() != 0x0;
1918b59062aSEwan Crawford         const bool valid_type = type.isValid() && type_vec_size.isValid() && type_kind.isValid();
1928b59062aSEwan Crawford         return !valid_ptr || !valid_type || !datum_size.isValid();
1938b59062aSEwan Crawford     }
1948b244e21SEwan Crawford };
1958b244e21SEwan Crawford 
1968b244e21SEwan Crawford // This AllocationDetails class collects data associated with a single
1978b244e21SEwan Crawford // allocation instance.
1988b244e21SEwan Crawford struct RenderScriptRuntime::AllocationDetails
1998b244e21SEwan Crawford {
20015f2bd95SEwan Crawford     struct Dimension
20178f339d1SEwan Crawford     {
20215f2bd95SEwan Crawford         uint32_t dim_1;
20315f2bd95SEwan Crawford         uint32_t dim_2;
20415f2bd95SEwan Crawford         uint32_t dim_3;
20515f2bd95SEwan Crawford         uint32_t cubeMap;
20615f2bd95SEwan Crawford 
20715f2bd95SEwan Crawford         Dimension()
20815f2bd95SEwan Crawford         {
20915f2bd95SEwan Crawford              dim_1 = 0;
21015f2bd95SEwan Crawford              dim_2 = 0;
21115f2bd95SEwan Crawford              dim_3 = 0;
21215f2bd95SEwan Crawford              cubeMap = 0;
21315f2bd95SEwan Crawford         }
21478f339d1SEwan Crawford     };
21578f339d1SEwan Crawford 
21655232f09SEwan Crawford     // Header for reading and writing allocation contents
21755232f09SEwan Crawford     // to a binary file.
21855232f09SEwan Crawford     struct FileHeader
21955232f09SEwan Crawford     {
22055232f09SEwan Crawford         uint8_t ident[4];      // ASCII 'RSAD' identifying the file
22155232f09SEwan Crawford         uint16_t hdr_size;     // Header size in bytes, for backwards compatability
22255232f09SEwan Crawford         uint16_t type;         // DataType enum
22355232f09SEwan Crawford         uint32_t kind;         // DataKind enum
22455232f09SEwan Crawford         uint32_t dims[3];      // Dimensions
22555232f09SEwan Crawford         uint32_t element_size; // Size of a single element, including padding
22655232f09SEwan Crawford     };
22755232f09SEwan Crawford 
22815f2bd95SEwan Crawford     // Monotonically increasing from 1
22915f2bd95SEwan Crawford     static unsigned int ID;
23015f2bd95SEwan Crawford 
23115f2bd95SEwan Crawford     // Maps Allocation DataType enum and vector size to printable strings
23215f2bd95SEwan Crawford     // using mapping from RenderScript numerical types summary documentation
23315f2bd95SEwan Crawford     static const char* RsDataTypeToString[][4];
23415f2bd95SEwan Crawford 
23515f2bd95SEwan Crawford     // Maps Allocation DataKind enum to printable strings
23615f2bd95SEwan Crawford     static const char* RsDataKindToString[];
23715f2bd95SEwan Crawford 
238a0f08674SEwan Crawford     // Maps allocation types to format sizes for printing.
239a0f08674SEwan Crawford     static const unsigned int RSTypeToFormat[][3];
240a0f08674SEwan Crawford 
24115f2bd95SEwan Crawford     // Give each allocation an ID as a way
24215f2bd95SEwan Crawford     // for commands to reference it.
24315f2bd95SEwan Crawford     const unsigned int id;
24415f2bd95SEwan Crawford 
2458b244e21SEwan Crawford     RenderScriptRuntime::Element element;     // Allocation Element type
24615f2bd95SEwan Crawford     empirical_type<Dimension> dimension;      // Dimensions of the Allocation
24715f2bd95SEwan Crawford     empirical_type<lldb::addr_t> address;     // Pointer to address of the RS Allocation
24815f2bd95SEwan Crawford     empirical_type<lldb::addr_t> data_ptr;    // Pointer to the data held by the Allocation
24915f2bd95SEwan Crawford     empirical_type<lldb::addr_t> type_ptr;    // Pointer to the RS Type of the Allocation
25015f2bd95SEwan Crawford     empirical_type<lldb::addr_t> context;     // Pointer to the RS Context of the Allocation
251a0f08674SEwan Crawford     empirical_type<uint32_t> size;            // Size of the allocation
252a0f08674SEwan Crawford     empirical_type<uint32_t> stride;          // Stride between rows of the allocation
25315f2bd95SEwan Crawford 
25415f2bd95SEwan Crawford     // Give each allocation an id, so we can reference it in user commands.
25515f2bd95SEwan Crawford     AllocationDetails(): id(ID++)
25615f2bd95SEwan Crawford     {
25715f2bd95SEwan Crawford     }
2588b59062aSEwan Crawford 
2598b59062aSEwan Crawford     bool shouldRefresh() const
2608b59062aSEwan Crawford     {
2618b59062aSEwan Crawford         bool valid_ptrs = data_ptr.isValid() && *data_ptr.get() != 0x0;
2628b59062aSEwan Crawford         valid_ptrs = valid_ptrs && type_ptr.isValid() && *type_ptr.get() != 0x0;
2638b59062aSEwan Crawford         return !valid_ptrs || !dimension.isValid() || !size.isValid() || element.shouldRefresh();
2648b59062aSEwan Crawford     }
26515f2bd95SEwan Crawford };
26615f2bd95SEwan Crawford 
267fe06b5adSAdrian McCarthy 
268fe06b5adSAdrian McCarthy const ConstString &
269fe06b5adSAdrian McCarthy RenderScriptRuntime::Element::GetFallbackStructName()
270fe06b5adSAdrian McCarthy {
271fe06b5adSAdrian McCarthy     static const ConstString FallbackStructName("struct");
272fe06b5adSAdrian McCarthy     return FallbackStructName;
273fe06b5adSAdrian McCarthy }
2748b244e21SEwan Crawford 
27515f2bd95SEwan Crawford unsigned int RenderScriptRuntime::AllocationDetails::ID = 1;
27615f2bd95SEwan Crawford 
27715f2bd95SEwan Crawford const char* RenderScriptRuntime::AllocationDetails::RsDataKindToString[] =
27815f2bd95SEwan Crawford {
27915f2bd95SEwan Crawford    "User",
28015f2bd95SEwan Crawford    "Undefined", "Undefined", "Undefined", // Enum jumps from 0 to 7
28115f2bd95SEwan Crawford    "Undefined", "Undefined", "Undefined",
28215f2bd95SEwan Crawford    "L Pixel",
28315f2bd95SEwan Crawford    "A Pixel",
28415f2bd95SEwan Crawford    "LA Pixel",
28515f2bd95SEwan Crawford    "RGB Pixel",
28615f2bd95SEwan Crawford    "RGBA Pixel",
28715f2bd95SEwan Crawford    "Pixel Depth",
28815f2bd95SEwan Crawford    "YUV Pixel"
28915f2bd95SEwan Crawford };
29015f2bd95SEwan Crawford 
29115f2bd95SEwan Crawford const char* RenderScriptRuntime::AllocationDetails::RsDataTypeToString[][4] =
29215f2bd95SEwan Crawford {
29315f2bd95SEwan Crawford     {"None", "None", "None", "None"},
29415f2bd95SEwan Crawford     {"half", "half2", "half3", "half4"},
29515f2bd95SEwan Crawford     {"float", "float2", "float3", "float4"},
29615f2bd95SEwan Crawford     {"double", "double2", "double3", "double4"},
29715f2bd95SEwan Crawford     {"char", "char2", "char3", "char4"},
29815f2bd95SEwan Crawford     {"short", "short2", "short3", "short4"},
29915f2bd95SEwan Crawford     {"int", "int2", "int3", "int4"},
30015f2bd95SEwan Crawford     {"long", "long2", "long3", "long4"},
30115f2bd95SEwan Crawford     {"uchar", "uchar2", "uchar3", "uchar4"},
30215f2bd95SEwan Crawford     {"ushort", "ushort2", "ushort3", "ushort4"},
30315f2bd95SEwan Crawford     {"uint", "uint2", "uint3", "uint4"},
30415f2bd95SEwan Crawford     {"ulong", "ulong2", "ulong3", "ulong4"},
30515f2bd95SEwan Crawford     {"bool", "bool2", "bool3", "bool4"}
30678f339d1SEwan Crawford };
30778f339d1SEwan Crawford 
308a0f08674SEwan Crawford // Used as an index into the RSTypeToFormat array elements
309a0f08674SEwan Crawford enum TypeToFormatIndex {
310a0f08674SEwan Crawford    eFormatSingle = 0,
311a0f08674SEwan Crawford    eFormatVector,
312a0f08674SEwan Crawford    eElementSize
313a0f08674SEwan Crawford };
314a0f08674SEwan Crawford 
315a0f08674SEwan Crawford // { format enum of single element, format enum of element vector, size of element}
316a0f08674SEwan Crawford const unsigned int RenderScriptRuntime::AllocationDetails::RSTypeToFormat[][3] =
317a0f08674SEwan Crawford {
318a0f08674SEwan Crawford     {eFormatHex, eFormatHex, 1}, // RS_TYPE_NONE
319a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat16, 2}, // RS_TYPE_FLOAT_16
320a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat32, sizeof(float)}, // RS_TYPE_FLOAT_32
321a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat64, sizeof(double)}, // RS_TYPE_FLOAT_64
322a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt8, sizeof(int8_t)}, // RS_TYPE_SIGNED_8
323a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt16, sizeof(int16_t)}, // RS_TYPE_SIGNED_16
324a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt32, sizeof(int32_t)}, // RS_TYPE_SIGNED_32
325a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt64, sizeof(int64_t)}, // RS_TYPE_SIGNED_64
326a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt8, sizeof(uint8_t)}, // RS_TYPE_UNSIGNED_8
327a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt16, sizeof(uint16_t)}, // RS_TYPE_UNSIGNED_16
328a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt32, sizeof(uint32_t)}, // RS_TYPE_UNSIGNED_32
329a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt64, sizeof(uint64_t)}, // RS_TYPE_UNSIGNED_64
330a0f08674SEwan Crawford     {eFormatBoolean, eFormatBoolean, sizeof(bool)} // RS_TYPE_BOOL
331a0f08674SEwan Crawford };
332a0f08674SEwan Crawford 
3335ec532a9SColin Riley //------------------------------------------------------------------
3345ec532a9SColin Riley // Static Functions
3355ec532a9SColin Riley //------------------------------------------------------------------
3365ec532a9SColin Riley LanguageRuntime *
3375ec532a9SColin Riley RenderScriptRuntime::CreateInstance(Process *process, lldb::LanguageType language)
3385ec532a9SColin Riley {
3395ec532a9SColin Riley 
3405ec532a9SColin Riley     if (language == eLanguageTypeExtRenderScript)
3415ec532a9SColin Riley         return new RenderScriptRuntime(process);
3425ec532a9SColin Riley     else
3435ec532a9SColin Riley         return NULL;
3445ec532a9SColin Riley }
3455ec532a9SColin Riley 
34698156583SEwan Crawford // Callback with a module to search for matching symbols.
34798156583SEwan Crawford // We first check that the module contains RS kernels.
34898156583SEwan Crawford // Then look for a symbol which matches our kernel name.
34998156583SEwan Crawford // The breakpoint address is finally set using the address of this symbol.
35098156583SEwan Crawford Searcher::CallbackReturn
35198156583SEwan Crawford RSBreakpointResolver::SearchCallback(SearchFilter &filter,
35298156583SEwan Crawford                                      SymbolContext &context,
35398156583SEwan Crawford                                      Address*,
35498156583SEwan Crawford                                      bool)
35598156583SEwan Crawford {
35698156583SEwan Crawford     ModuleSP module = context.module_sp;
35798156583SEwan Crawford 
35898156583SEwan Crawford     if (!module)
35998156583SEwan Crawford         return Searcher::eCallbackReturnContinue;
36098156583SEwan Crawford 
36198156583SEwan Crawford     // Is this a module containing renderscript kernels?
36298156583SEwan Crawford     if (nullptr == module->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData))
36398156583SEwan Crawford         return Searcher::eCallbackReturnContinue;
36498156583SEwan Crawford 
36598156583SEwan Crawford     // Attempt to set a breakpoint on the kernel name symbol within the module library.
36698156583SEwan Crawford     // If it's not found, it's likely debug info is unavailable - try to set a
36798156583SEwan Crawford     // breakpoint on <name>.expand.
36898156583SEwan Crawford 
36998156583SEwan Crawford     const Symbol* kernel_sym = module->FindFirstSymbolWithNameAndType(m_kernel_name, eSymbolTypeCode);
37098156583SEwan Crawford     if (!kernel_sym)
37198156583SEwan Crawford     {
37298156583SEwan Crawford         std::string kernel_name_expanded(m_kernel_name.AsCString());
37398156583SEwan Crawford         kernel_name_expanded.append(".expand");
37498156583SEwan Crawford         kernel_sym = module->FindFirstSymbolWithNameAndType(ConstString(kernel_name_expanded.c_str()), eSymbolTypeCode);
37598156583SEwan Crawford     }
37698156583SEwan Crawford 
37798156583SEwan Crawford     if (kernel_sym)
37898156583SEwan Crawford     {
37998156583SEwan Crawford         Address bp_addr = kernel_sym->GetAddress();
38098156583SEwan Crawford         if (filter.AddressPasses(bp_addr))
38198156583SEwan Crawford             m_breakpoint->AddLocation(bp_addr);
38298156583SEwan Crawford     }
38398156583SEwan Crawford 
38498156583SEwan Crawford     return Searcher::eCallbackReturnContinue;
38598156583SEwan Crawford }
38698156583SEwan Crawford 
3875ec532a9SColin Riley void
3885ec532a9SColin Riley RenderScriptRuntime::Initialize()
3895ec532a9SColin Riley {
3904640cde1SColin Riley     PluginManager::RegisterPlugin(GetPluginNameStatic(), "RenderScript language support", CreateInstance, GetCommandObject);
3915ec532a9SColin Riley }
3925ec532a9SColin Riley 
3935ec532a9SColin Riley void
3945ec532a9SColin Riley RenderScriptRuntime::Terminate()
3955ec532a9SColin Riley {
3965ec532a9SColin Riley     PluginManager::UnregisterPlugin(CreateInstance);
3975ec532a9SColin Riley }
3985ec532a9SColin Riley 
3995ec532a9SColin Riley lldb_private::ConstString
4005ec532a9SColin Riley RenderScriptRuntime::GetPluginNameStatic()
4015ec532a9SColin Riley {
4025ec532a9SColin Riley     static ConstString g_name("renderscript");
4035ec532a9SColin Riley     return g_name;
4045ec532a9SColin Riley }
4055ec532a9SColin Riley 
406ef20b08fSColin Riley RenderScriptRuntime::ModuleKind
407ef20b08fSColin Riley RenderScriptRuntime::GetModuleKind(const lldb::ModuleSP &module_sp)
408ef20b08fSColin Riley {
409ef20b08fSColin Riley     if (module_sp)
410ef20b08fSColin Riley     {
411ef20b08fSColin Riley         // Is this a module containing renderscript kernels?
412ef20b08fSColin Riley         const Symbol *info_sym = module_sp->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData);
413ef20b08fSColin Riley         if (info_sym)
414ef20b08fSColin Riley         {
415ef20b08fSColin Riley             return eModuleKindKernelObj;
416ef20b08fSColin Riley         }
4174640cde1SColin Riley 
4184640cde1SColin Riley         // Is this the main RS runtime library
4194640cde1SColin Riley         const ConstString rs_lib("libRS.so");
4204640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_lib)
4214640cde1SColin Riley         {
4224640cde1SColin Riley             return eModuleKindLibRS;
4234640cde1SColin Riley         }
4244640cde1SColin Riley 
4254640cde1SColin Riley         const ConstString rs_driverlib("libRSDriver.so");
4264640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_driverlib)
4274640cde1SColin Riley         {
4284640cde1SColin Riley             return eModuleKindDriver;
4294640cde1SColin Riley         }
4304640cde1SColin Riley 
43115f2bd95SEwan Crawford         const ConstString rs_cpureflib("libRSCpuRef.so");
4324640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_cpureflib)
4334640cde1SColin Riley         {
4344640cde1SColin Riley             return eModuleKindImpl;
4354640cde1SColin Riley         }
4364640cde1SColin Riley 
437ef20b08fSColin Riley     }
438ef20b08fSColin Riley     return eModuleKindIgnored;
439ef20b08fSColin Riley }
440ef20b08fSColin Riley 
441ef20b08fSColin Riley bool
442ef20b08fSColin Riley RenderScriptRuntime::IsRenderScriptModule(const lldb::ModuleSP &module_sp)
443ef20b08fSColin Riley {
444ef20b08fSColin Riley     return GetModuleKind(module_sp) != eModuleKindIgnored;
445ef20b08fSColin Riley }
446ef20b08fSColin Riley 
447ef20b08fSColin Riley void
448ef20b08fSColin Riley RenderScriptRuntime::ModulesDidLoad(const ModuleList &module_list )
449ef20b08fSColin Riley {
450ef20b08fSColin Riley     Mutex::Locker locker (module_list.GetMutex ());
451ef20b08fSColin Riley 
452ef20b08fSColin Riley     size_t num_modules = module_list.GetSize();
453ef20b08fSColin Riley     for (size_t i = 0; i < num_modules; i++)
454ef20b08fSColin Riley     {
455ef20b08fSColin Riley         auto mod = module_list.GetModuleAtIndex (i);
456ef20b08fSColin Riley         if (IsRenderScriptModule (mod))
457ef20b08fSColin Riley         {
458ef20b08fSColin Riley             LoadModule(mod);
459ef20b08fSColin Riley         }
460ef20b08fSColin Riley     }
461ef20b08fSColin Riley }
462ef20b08fSColin Riley 
4635ec532a9SColin Riley //------------------------------------------------------------------
4645ec532a9SColin Riley // PluginInterface protocol
4655ec532a9SColin Riley //------------------------------------------------------------------
4665ec532a9SColin Riley lldb_private::ConstString
4675ec532a9SColin Riley RenderScriptRuntime::GetPluginName()
4685ec532a9SColin Riley {
4695ec532a9SColin Riley     return GetPluginNameStatic();
4705ec532a9SColin Riley }
4715ec532a9SColin Riley 
4725ec532a9SColin Riley uint32_t
4735ec532a9SColin Riley RenderScriptRuntime::GetPluginVersion()
4745ec532a9SColin Riley {
4755ec532a9SColin Riley     return 1;
4765ec532a9SColin Riley }
4775ec532a9SColin Riley 
4785ec532a9SColin Riley bool
4795ec532a9SColin Riley RenderScriptRuntime::IsVTableName(const char *name)
4805ec532a9SColin Riley {
4815ec532a9SColin Riley     return false;
4825ec532a9SColin Riley }
4835ec532a9SColin Riley 
4845ec532a9SColin Riley bool
4855ec532a9SColin Riley RenderScriptRuntime::GetDynamicTypeAndAddress(ValueObject &in_value, lldb::DynamicValueType use_dynamic,
4860b6003f3SEnrico Granata                                               TypeAndOrName &class_type_or_name, Address &address,
4870b6003f3SEnrico Granata                                               Value::ValueType &value_type)
4885ec532a9SColin Riley {
4895ec532a9SColin Riley     return false;
4905ec532a9SColin Riley }
4915ec532a9SColin Riley 
492c74275bcSEnrico Granata TypeAndOrName
493c74275bcSEnrico Granata RenderScriptRuntime::FixUpDynamicType (const TypeAndOrName& type_and_or_name,
4947eed4877SEnrico Granata                                        ValueObject& static_value)
495c74275bcSEnrico Granata {
496c74275bcSEnrico Granata     return type_and_or_name;
497c74275bcSEnrico Granata }
498c74275bcSEnrico Granata 
4995ec532a9SColin Riley bool
5005ec532a9SColin Riley RenderScriptRuntime::CouldHaveDynamicValue(ValueObject &in_value)
5015ec532a9SColin Riley {
5025ec532a9SColin Riley     return false;
5035ec532a9SColin Riley }
5045ec532a9SColin Riley 
5055ec532a9SColin Riley lldb::BreakpointResolverSP
5065ec532a9SColin Riley RenderScriptRuntime::CreateExceptionResolver(Breakpoint *bkpt, bool catch_bp, bool throw_bp)
5075ec532a9SColin Riley {
5085ec532a9SColin Riley     BreakpointResolverSP resolver_sp;
5095ec532a9SColin Riley     return resolver_sp;
5105ec532a9SColin Riley }
5115ec532a9SColin Riley 
5124640cde1SColin Riley const RenderScriptRuntime::HookDefn RenderScriptRuntime::s_runtimeHookDefns[] =
5134640cde1SColin Riley {
5144640cde1SColin Riley     //rsdScript
51582780287SAidan Dodds     {
51682780287SAidan Dodds         "rsdScriptInit", //name
51782780287SAidan Dodds         "_Z13rsdScriptInitPKN7android12renderscript7ContextEPNS0_7ScriptCEPKcS7_PKhjj", // symbol name 32 bit
51882780287SAidan Dodds         "_Z13rsdScriptInitPKN7android12renderscript7ContextEPNS0_7ScriptCEPKcS7_PKhmj", // symbol name 64 bit
51982780287SAidan Dodds         0, // version
52082780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
52182780287SAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureScriptInit1 // handler
52282780287SAidan Dodds     },
52382780287SAidan Dodds     {
52482780287SAidan Dodds         "rsdScriptInvokeForEach", // name
52582780287SAidan Dodds         "_Z22rsdScriptInvokeForEachPKN7android12renderscript7ContextEPNS0_6ScriptEjPKNS0_10AllocationEPS6_PKvjPK12RsScriptCall", // symbol name 32bit
52682780287SAidan Dodds         "_Z22rsdScriptInvokeForEachPKN7android12renderscript7ContextEPNS0_6ScriptEjPKNS0_10AllocationEPS6_PKvmPK12RsScriptCall", // symbol name 64bit
52782780287SAidan Dodds         0, // version
52882780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
52982780287SAidan Dodds         nullptr // handler
53082780287SAidan Dodds     },
53182780287SAidan Dodds     {
53282780287SAidan Dodds         "rsdScriptInvokeForEachMulti", // name
53382780287SAidan Dodds         "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0_6ScriptEjPPKNS0_10AllocationEjPS6_PKvjPK12RsScriptCall", // symbol name 32bit
53482780287SAidan Dodds         "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0_6ScriptEjPPKNS0_10AllocationEmPS6_PKvmPK12RsScriptCall", // symbol name 64bit
53582780287SAidan Dodds         0, // version
53682780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
53782780287SAidan Dodds         nullptr // handler
53882780287SAidan Dodds     },
53982780287SAidan Dodds     {
54082780287SAidan Dodds         "rsdScriptInvokeFunction", // name
54182780287SAidan Dodds         "_Z23rsdScriptInvokeFunctionPKN7android12renderscript7ContextEPNS0_6ScriptEjPKvj", // symbol name 32bit
54282780287SAidan Dodds         "_Z23rsdScriptInvokeFunctionPKN7android12renderscript7ContextEPNS0_6ScriptEjPKvm", // symbol name 64bit
54382780287SAidan Dodds         0, // version
54482780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
54582780287SAidan Dodds         nullptr // handler
54682780287SAidan Dodds     },
54782780287SAidan Dodds     {
54882780287SAidan Dodds         "rsdScriptSetGlobalVar", // name
54982780287SAidan Dodds         "_Z21rsdScriptSetGlobalVarPKN7android12renderscript7ContextEPKNS0_6ScriptEjPvj", // symbol name 32bit
55082780287SAidan Dodds         "_Z21rsdScriptSetGlobalVarPKN7android12renderscript7ContextEPKNS0_6ScriptEjPvm", // symbol name 64bit
55182780287SAidan Dodds         0, // version
55282780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
55382780287SAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureSetGlobalVar1 // handler
55482780287SAidan Dodds     },
5554640cde1SColin Riley 
5564640cde1SColin Riley     //rsdAllocation
55782780287SAidan Dodds     {
55882780287SAidan Dodds         "rsdAllocationInit", // name
55982780287SAidan Dodds         "_Z17rsdAllocationInitPKN7android12renderscript7ContextEPNS0_10AllocationEb", // symbol name 32bit
56082780287SAidan Dodds         "_Z17rsdAllocationInitPKN7android12renderscript7ContextEPNS0_10AllocationEb", // symbol name 64bit
56182780287SAidan Dodds         0, // version
56282780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
56382780287SAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureAllocationInit1 // handler
56482780287SAidan Dodds     },
56582780287SAidan Dodds     {
56682780287SAidan Dodds         "rsdAllocationRead2D", //name
56782780287SAidan Dodds         "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_10AllocationEjjj23RsAllocationCubemapFacejjPvjj", // symbol name 32bit
56882780287SAidan Dodds         "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_10AllocationEjjj23RsAllocationCubemapFacejjPvmm", // symbol name 64bit
56982780287SAidan Dodds         0, // version
57082780287SAidan Dodds         RenderScriptRuntime::eModuleKindDriver, // type
57182780287SAidan Dodds         nullptr // handler
57282780287SAidan Dodds     },
573e69df382SEwan Crawford     {
574e69df382SEwan Crawford         "rsdAllocationDestroy", // name
575e69df382SEwan Crawford         "_Z20rsdAllocationDestroyPKN7android12renderscript7ContextEPNS0_10AllocationE", // symbol name 32bit
576e69df382SEwan Crawford         "_Z20rsdAllocationDestroyPKN7android12renderscript7ContextEPNS0_10AllocationE", // symbol name 64bit
577e69df382SEwan Crawford         0, // version
578e69df382SEwan Crawford         RenderScriptRuntime::eModuleKindDriver, // type
579e69df382SEwan Crawford         &lldb_private::RenderScriptRuntime::CaptureAllocationDestroy // handler
580e69df382SEwan Crawford     },
5814640cde1SColin Riley };
5824640cde1SColin Riley 
583222b937cSEugene Zelenko const size_t RenderScriptRuntime::s_runtimeHookCount = sizeof(s_runtimeHookDefns)/sizeof(s_runtimeHookDefns[0]);
5844640cde1SColin Riley 
5854640cde1SColin Riley bool
5864640cde1SColin Riley RenderScriptRuntime::HookCallback(void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
5874640cde1SColin Riley {
5884640cde1SColin Riley     RuntimeHook* hook_info = (RuntimeHook*)baton;
5894640cde1SColin Riley     ExecutionContext context(ctx->exe_ctx_ref);
5904640cde1SColin Riley 
5914640cde1SColin Riley     RenderScriptRuntime *lang_rt = (RenderScriptRuntime *)context.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
5924640cde1SColin Riley 
5934640cde1SColin Riley     lang_rt->HookCallback(hook_info, context);
5944640cde1SColin Riley 
5954640cde1SColin Riley     return false;
5964640cde1SColin Riley }
5974640cde1SColin Riley 
5984640cde1SColin Riley void
5994640cde1SColin Riley RenderScriptRuntime::HookCallback(RuntimeHook* hook_info, ExecutionContext& context)
6004640cde1SColin Riley {
6014640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
6024640cde1SColin Riley 
6034640cde1SColin Riley     if (log)
6044640cde1SColin Riley         log->Printf ("RenderScriptRuntime::HookCallback - '%s' .", hook_info->defn->name);
6054640cde1SColin Riley 
6064640cde1SColin Riley     if (hook_info->defn->grabber)
6074640cde1SColin Riley     {
6084640cde1SColin Riley         (this->*(hook_info->defn->grabber))(hook_info, context);
6094640cde1SColin Riley     }
6104640cde1SColin Riley }
6114640cde1SColin Riley 
6124640cde1SColin Riley bool
61382780287SAidan Dodds RenderScriptRuntime::GetArgSimple(ExecutionContext &context, uint32_t arg, uint64_t *data)
6144640cde1SColin Riley {
615*cdfb1485SEwan Crawford     // Get a positional integer argument.
616*cdfb1485SEwan Crawford     // Given an ExecutionContext, ``context`` which should be a RenderScript
617*cdfb1485SEwan Crawford     // frame, get the value of the positional argument ``arg`` and save its value
618*cdfb1485SEwan Crawford     // to the address pointed to by ``data``.
619*cdfb1485SEwan Crawford     // returns true on success, false otherwise.
620*cdfb1485SEwan Crawford     // If unsuccessful, the value pointed to by ``data`` is undefined. Otherwise,
621*cdfb1485SEwan Crawford     // ``data`` will be set to the value of the the given ``arg``.
622*cdfb1485SEwan Crawford     // NOTE: only natural width integer arguments for the machine are supported.
623*cdfb1485SEwan Crawford     // Behaviour with non primitive arguments is undefined.
624*cdfb1485SEwan Crawford 
6254640cde1SColin Riley     if (!data)
6264640cde1SColin Riley         return false;
6274640cde1SColin Riley 
62882780287SAidan Dodds     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
6294640cde1SColin Riley     Error error;
6304640cde1SColin Riley     RegisterContext* reg_ctx = context.GetRegisterContext();
6314640cde1SColin Riley     Process* process = context.GetProcessPtr();
63282780287SAidan Dodds     bool success = false; // return value
6334640cde1SColin Riley 
63482780287SAidan Dodds     if (!context.GetTargetPtr())
63582780287SAidan Dodds     {
63682780287SAidan Dodds         if (log)
63782780287SAidan Dodds             log->Printf("RenderScriptRuntime::GetArgSimple - Invalid target");
63882780287SAidan Dodds 
63982780287SAidan Dodds         return false;
64082780287SAidan Dodds     }
64182780287SAidan Dodds 
64282780287SAidan Dodds     switch (context.GetTargetPtr()->GetArchitecture().GetMachine())
64382780287SAidan Dodds     {
64482780287SAidan Dodds         case llvm::Triple::ArchType::x86:
6454640cde1SColin Riley         {
6464640cde1SColin Riley             uint64_t sp = reg_ctx->GetSP();
6474640cde1SColin Riley             uint32_t offset = (1 + arg) * sizeof(uint32_t);
64882780287SAidan Dodds             uint32_t result = 0;
64982780287SAidan Dodds             process->ReadMemory(sp + offset, &result, sizeof(uint32_t), error);
6504640cde1SColin Riley             if (error.Fail())
6514640cde1SColin Riley             {
6524640cde1SColin Riley                 if (log)
65382780287SAidan Dodds                     log->Printf("RenderScriptRuntime::GetArgSimple - error reading X86 stack: %s.", error.AsCString());
6544640cde1SColin Riley             }
65582780287SAidan Dodds             else
6564640cde1SColin Riley             {
65782780287SAidan Dodds                 *data = result;
65882780287SAidan Dodds                 success = true;
65982780287SAidan Dodds             }
66082780287SAidan Dodds 
66182780287SAidan Dodds             break;
66282780287SAidan Dodds         }
663*cdfb1485SEwan Crawford         case llvm::Triple::ArchType::x86_64:
664*cdfb1485SEwan Crawford         {
665*cdfb1485SEwan Crawford             // amd64 has 6 integer registers, and 8 XMM registers for parameter passing.
666*cdfb1485SEwan Crawford             // Surplus args are spilled onto the stack.
667*cdfb1485SEwan Crawford             // rdi, rsi, rdx, rcx, r8, r9, (zmm0 - 7 for vectors)
668*cdfb1485SEwan Crawford             // ref: AMD64 ABI Draft 0.99.6 – October 7, 2013 – 10:35; Figure 3.4. Retrieved from
669*cdfb1485SEwan Crawford             // http://www.x86-64.org/documentation/abi.pdf
670*cdfb1485SEwan Crawford             if (arg > 5)
671*cdfb1485SEwan Crawford             {
672*cdfb1485SEwan Crawford                 if (log)
673*cdfb1485SEwan Crawford                     log->Warning("X86_64 register spill is not supported.");
674*cdfb1485SEwan Crawford                 break;
675*cdfb1485SEwan Crawford             }
676*cdfb1485SEwan Crawford             const char * regnames[] = {"rdi", "rsi", "rdx", "rcx", "r8", "r9"};
677*cdfb1485SEwan Crawford             assert((sizeof(regnames) / sizeof(const char *)) > arg);
678*cdfb1485SEwan Crawford             const RegisterInfo *rArg = reg_ctx->GetRegisterInfoByName(regnames[arg]);
679*cdfb1485SEwan Crawford             RegisterValue rVal;
680*cdfb1485SEwan Crawford             success = reg_ctx->ReadRegister(rArg, rVal);
681*cdfb1485SEwan Crawford             if (success)
682*cdfb1485SEwan Crawford             {
683*cdfb1485SEwan Crawford                 *data = rVal.GetAsUInt64(0u, &success);
684*cdfb1485SEwan Crawford             }
685*cdfb1485SEwan Crawford             else
686*cdfb1485SEwan Crawford             {
687*cdfb1485SEwan Crawford                 if (log)
688*cdfb1485SEwan Crawford                     log->Printf("RenderScriptRuntime::GetArgSimple - error reading x86_64 register: %d.", arg);
689*cdfb1485SEwan Crawford             }
690*cdfb1485SEwan Crawford             break;
691*cdfb1485SEwan Crawford         }
69282780287SAidan Dodds         case llvm::Triple::ArchType::arm:
69382780287SAidan Dodds         {
69482780287SAidan Dodds             // arm 32 bit
6954640cde1SColin Riley             if (arg < 4)
6964640cde1SColin Riley             {
6974640cde1SColin Riley                 const RegisterInfo* rArg = reg_ctx->GetRegisterInfoAtIndex(arg);
6984640cde1SColin Riley                 RegisterValue rVal;
69902f1c5d1SEwan Crawford                 success = reg_ctx->ReadRegister(rArg, rVal);
70002f1c5d1SEwan Crawford                 if (success)
70102f1c5d1SEwan Crawford                 {
702*cdfb1485SEwan Crawford                     (*data) = rVal.GetAsUInt32(0u, &success);
70302f1c5d1SEwan Crawford                 }
70402f1c5d1SEwan Crawford                 else
70502f1c5d1SEwan Crawford                 {
70602f1c5d1SEwan Crawford                     if (log)
70702f1c5d1SEwan Crawford                         log->Printf("RenderScriptRuntime::GetArgSimple - error reading ARM register: %d.", arg);
70802f1c5d1SEwan Crawford                 }
7094640cde1SColin Riley             }
7104640cde1SColin Riley             else
7114640cde1SColin Riley             {
7124640cde1SColin Riley                 uint64_t sp = reg_ctx->GetSP();
7134640cde1SColin Riley                 uint32_t offset = (arg-4) * sizeof(uint32_t);
7144640cde1SColin Riley                 process->ReadMemory(sp + offset, &data, sizeof(uint32_t), error);
7154640cde1SColin Riley                 if (error.Fail())
7164640cde1SColin Riley                 {
7174640cde1SColin Riley                     if (log)
71882780287SAidan Dodds                         log->Printf("RenderScriptRuntime::GetArgSimple - error reading ARM stack: %s.", error.AsCString());
71982780287SAidan Dodds                 }
72082780287SAidan Dodds                 else
72182780287SAidan Dodds                 {
72282780287SAidan Dodds                     success = true;
7234640cde1SColin Riley                 }
7244640cde1SColin Riley             }
72582780287SAidan Dodds 
72682780287SAidan Dodds             break;
7274640cde1SColin Riley         }
72882780287SAidan Dodds         case llvm::Triple::ArchType::aarch64:
72982780287SAidan Dodds         {
73082780287SAidan Dodds             // arm 64 bit
73182780287SAidan Dodds             // first 8 arguments are in the registers
73282780287SAidan Dodds             if (arg < 8)
73382780287SAidan Dodds             {
73482780287SAidan Dodds                 const RegisterInfo* rArg = reg_ctx->GetRegisterInfoAtIndex(arg);
73582780287SAidan Dodds                 RegisterValue rVal;
73682780287SAidan Dodds                 success = reg_ctx->ReadRegister(rArg, rVal);
73782780287SAidan Dodds                 if (success)
73882780287SAidan Dodds                 {
739*cdfb1485SEwan Crawford                     *data = rVal.GetAsUInt64(0u, &success);
74082780287SAidan Dodds                 }
74182780287SAidan Dodds                 else
74282780287SAidan Dodds                 {
74382780287SAidan Dodds                     if (log)
74482780287SAidan Dodds                         log->Printf("RenderScriptRuntime::GetArgSimple() - AARCH64 - Error while reading the argument #%d", arg);
74582780287SAidan Dodds                 }
74682780287SAidan Dodds             }
74782780287SAidan Dodds             else
74882780287SAidan Dodds             {
74982780287SAidan Dodds                 // @TODO: need to find the argument in the stack
75082780287SAidan Dodds                 if (log)
75182780287SAidan Dodds                     log->Printf("RenderScriptRuntime::GetArgSimple - AARCH64 - FOR #ARG >= 8 NOT IMPLEMENTED YET. Argument number: %d", arg);
75282780287SAidan Dodds             }
75382780287SAidan Dodds             break;
75482780287SAidan Dodds         }
75574b396d9SAidan Dodds         case llvm::Triple::ArchType::mipsel:
75674b396d9SAidan Dodds         {
75774b396d9SAidan Dodds 
75874b396d9SAidan Dodds             // read from the registers
75974b396d9SAidan Dodds             if (arg < 4){
76074b396d9SAidan Dodds                 const RegisterInfo* rArg = reg_ctx->GetRegisterInfoAtIndex(arg + 4);
76174b396d9SAidan Dodds                 RegisterValue rVal;
76274b396d9SAidan Dodds                 success = reg_ctx->ReadRegister(rArg, rVal);
76374b396d9SAidan Dodds                 if (success)
76474b396d9SAidan Dodds                 {
765*cdfb1485SEwan Crawford                     *data = rVal.GetAsUInt64(0u, &success);
76674b396d9SAidan Dodds                 }
76774b396d9SAidan Dodds                 else
76874b396d9SAidan Dodds                 {
76974b396d9SAidan Dodds                     if (log)
77074b396d9SAidan Dodds                         log->Printf("RenderScriptRuntime::GetArgSimple() - Mips - Error while reading the argument #%d", arg);
77174b396d9SAidan Dodds                 }
77274b396d9SAidan Dodds 
77374b396d9SAidan Dodds             }
77474b396d9SAidan Dodds 
77574b396d9SAidan Dodds             // read from the stack
77674b396d9SAidan Dodds             else
77774b396d9SAidan Dodds             {
77874b396d9SAidan Dodds                 uint64_t sp = reg_ctx->GetSP();
77974b396d9SAidan Dodds                 uint32_t offset = arg * sizeof(uint32_t);
78074b396d9SAidan Dodds                 process->ReadMemory(sp + offset, &data, sizeof(uint32_t), error);
78174b396d9SAidan Dodds                 if (error.Fail())
78274b396d9SAidan Dodds                 {
78374b396d9SAidan Dodds                     if (log)
78474b396d9SAidan Dodds                         log->Printf("RenderScriptRuntime::GetArgSimple - error reading Mips stack: %s.", error.AsCString());
78574b396d9SAidan Dodds                 }
78674b396d9SAidan Dodds                 else
78774b396d9SAidan Dodds                 {
78874b396d9SAidan Dodds                     success = true;
78974b396d9SAidan Dodds                 }
79074b396d9SAidan Dodds             }
79174b396d9SAidan Dodds 
79274b396d9SAidan Dodds             break;
79374b396d9SAidan Dodds         }
79402f1c5d1SEwan Crawford         case llvm::Triple::ArchType::mips64el:
79502f1c5d1SEwan Crawford         {
79602f1c5d1SEwan Crawford             // read from the registers
79702f1c5d1SEwan Crawford             if (arg < 8)
79802f1c5d1SEwan Crawford             {
79902f1c5d1SEwan Crawford                 const RegisterInfo* rArg = reg_ctx->GetRegisterInfoAtIndex(arg + 4);
80002f1c5d1SEwan Crawford                 RegisterValue rVal;
80102f1c5d1SEwan Crawford                 success = reg_ctx->ReadRegister(rArg, rVal);
80202f1c5d1SEwan Crawford                 if (success)
80302f1c5d1SEwan Crawford                 {
804*cdfb1485SEwan Crawford                     (*data) = rVal.GetAsUInt64(0u, &success);
80502f1c5d1SEwan Crawford                 }
80602f1c5d1SEwan Crawford                 else
80702f1c5d1SEwan Crawford                 {
80802f1c5d1SEwan Crawford                     if (log)
80902f1c5d1SEwan Crawford                         log->Printf("RenderScriptRuntime::GetArgSimple - Mips64 - Error reading the argument #%d", arg);
81002f1c5d1SEwan Crawford                 }
81102f1c5d1SEwan Crawford             }
81202f1c5d1SEwan Crawford 
81302f1c5d1SEwan Crawford             // read from the stack
81402f1c5d1SEwan Crawford             else
81502f1c5d1SEwan Crawford             {
81602f1c5d1SEwan Crawford                 uint64_t sp = reg_ctx->GetSP();
81702f1c5d1SEwan Crawford                 uint32_t offset = (arg - 8) * sizeof(uint64_t);
81802f1c5d1SEwan Crawford                 process->ReadMemory(sp + offset, &data, sizeof(uint64_t), error);
81902f1c5d1SEwan Crawford                 if (error.Fail())
82002f1c5d1SEwan Crawford                 {
82102f1c5d1SEwan Crawford                     if (log)
82202f1c5d1SEwan Crawford                         log->Printf("RenderScriptRuntime::GetArgSimple - Mips64 - Error reading Mips64 stack: %s.", error.AsCString());
82302f1c5d1SEwan Crawford                 }
82402f1c5d1SEwan Crawford                 else
82502f1c5d1SEwan Crawford                 {
82602f1c5d1SEwan Crawford                     success = true;
82702f1c5d1SEwan Crawford                 }
82802f1c5d1SEwan Crawford             }
82902f1c5d1SEwan Crawford 
83002f1c5d1SEwan Crawford             break;
83102f1c5d1SEwan Crawford         }
83282780287SAidan Dodds         default:
83382780287SAidan Dodds         {
83482780287SAidan Dodds             // invalid architecture
83582780287SAidan Dodds             if (log)
83682780287SAidan Dodds                 log->Printf("RenderScriptRuntime::GetArgSimple - Architecture not supported");
83782780287SAidan Dodds 
83882780287SAidan Dodds         }
83982780287SAidan Dodds     }
84082780287SAidan Dodds 
841*cdfb1485SEwan Crawford     if (!success)
842*cdfb1485SEwan Crawford     {
843*cdfb1485SEwan Crawford         if (log)
844*cdfb1485SEwan Crawford             log->Printf("RenderScriptRuntime::GetArgSimple - failed to get argument at index %" PRIu32, arg);
845*cdfb1485SEwan Crawford     }
84682780287SAidan Dodds     return success;
8474640cde1SColin Riley }
8484640cde1SColin Riley 
8494640cde1SColin Riley void
8504640cde1SColin Riley RenderScriptRuntime::CaptureSetGlobalVar1(RuntimeHook* hook_info, ExecutionContext& context)
8514640cde1SColin Riley {
8524640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
8534640cde1SColin Riley 
8544640cde1SColin Riley     //Context, Script, int, data, length
8554640cde1SColin Riley 
85682780287SAidan Dodds     uint64_t rs_context_u64 = 0U;
85782780287SAidan Dodds     uint64_t rs_script_u64 = 0U;
85882780287SAidan Dodds     uint64_t rs_id_u64 = 0U;
85982780287SAidan Dodds     uint64_t rs_data_u64 = 0U;
86082780287SAidan Dodds     uint64_t rs_length_u64 = 0U;
8614640cde1SColin Riley 
86282780287SAidan Dodds     bool success =
86382780287SAidan Dodds         GetArgSimple(context, 0, &rs_context_u64) &&
86482780287SAidan Dodds         GetArgSimple(context, 1, &rs_script_u64) &&
86582780287SAidan Dodds         GetArgSimple(context, 2, &rs_id_u64) &&
86682780287SAidan Dodds         GetArgSimple(context, 3, &rs_data_u64) &&
86782780287SAidan Dodds         GetArgSimple(context, 4, &rs_length_u64);
8684640cde1SColin Riley 
86982780287SAidan Dodds     if (!success)
87082780287SAidan Dodds     {
87182780287SAidan Dodds         if (log)
87282780287SAidan Dodds             log->Printf("RenderScriptRuntime::CaptureSetGlobalVar1 - Error while reading the function parameters");
87382780287SAidan Dodds         return;
87482780287SAidan Dodds     }
8754640cde1SColin Riley 
8764640cde1SColin Riley     if (log)
8774640cde1SColin Riley     {
8784640cde1SColin Riley         log->Printf ("RenderScriptRuntime::CaptureSetGlobalVar1 - 0x%" PRIx64 ",0x%" PRIx64 " slot %" PRIu64 " = 0x%" PRIx64 ":%" PRIu64 "bytes.",
87982780287SAidan Dodds                         rs_context_u64, rs_script_u64, rs_id_u64, rs_data_u64, rs_length_u64);
8804640cde1SColin Riley 
88182780287SAidan Dodds         addr_t script_addr =  (addr_t)rs_script_u64;
8824640cde1SColin Riley         if (m_scriptMappings.find( script_addr ) != m_scriptMappings.end())
8834640cde1SColin Riley         {
8844640cde1SColin Riley             auto rsm = m_scriptMappings[script_addr];
88582780287SAidan Dodds             if (rs_id_u64 < rsm->m_globals.size())
8864640cde1SColin Riley             {
88782780287SAidan Dodds                 auto rsg = rsm->m_globals[rs_id_u64];
8884640cde1SColin Riley                 log->Printf ("RenderScriptRuntime::CaptureSetGlobalVar1 - Setting of '%s' within '%s' inferred", rsg.m_name.AsCString(),
8894640cde1SColin Riley                                 rsm->m_module->GetFileSpec().GetFilename().AsCString());
8904640cde1SColin Riley             }
8914640cde1SColin Riley         }
8924640cde1SColin Riley     }
8934640cde1SColin Riley }
8944640cde1SColin Riley 
8954640cde1SColin Riley void
8964640cde1SColin Riley RenderScriptRuntime::CaptureAllocationInit1(RuntimeHook* hook_info, ExecutionContext& context)
8974640cde1SColin Riley {
8984640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
8994640cde1SColin Riley 
9004640cde1SColin Riley     //Context, Alloc, bool
9014640cde1SColin Riley 
90282780287SAidan Dodds     uint64_t rs_context_u64 = 0U;
90382780287SAidan Dodds     uint64_t rs_alloc_u64 = 0U;
90482780287SAidan Dodds     uint64_t rs_forceZero_u64 = 0U;
9054640cde1SColin Riley 
90682780287SAidan Dodds     bool success =
90782780287SAidan Dodds         GetArgSimple(context, 0, &rs_context_u64) &&
90882780287SAidan Dodds         GetArgSimple(context, 1, &rs_alloc_u64) &&
90982780287SAidan Dodds         GetArgSimple(context, 2, &rs_forceZero_u64);
91082780287SAidan Dodds     if (!success) // error case
91182780287SAidan Dodds     {
91282780287SAidan Dodds         if (log)
91382780287SAidan Dodds             log->Printf("RenderScriptRuntime::CaptureAllocationInit1 - Error while reading the function parameters");
91482780287SAidan Dodds         return; // abort
91582780287SAidan Dodds     }
9164640cde1SColin Riley 
9174640cde1SColin Riley     if (log)
9184640cde1SColin Riley         log->Printf ("RenderScriptRuntime::CaptureAllocationInit1 - 0x%" PRIx64 ",0x%" PRIx64 ",0x%" PRIx64 " .",
91982780287SAidan Dodds                         rs_context_u64, rs_alloc_u64, rs_forceZero_u64);
92078f339d1SEwan Crawford 
92178f339d1SEwan Crawford     AllocationDetails* alloc = LookUpAllocation(rs_alloc_u64, true);
92278f339d1SEwan Crawford     if (alloc)
92378f339d1SEwan Crawford         alloc->context = rs_context_u64;
9244640cde1SColin Riley }
9254640cde1SColin Riley 
9264640cde1SColin Riley void
927e69df382SEwan Crawford RenderScriptRuntime::CaptureAllocationDestroy(RuntimeHook* hook_info, ExecutionContext& context)
928e69df382SEwan Crawford {
929e69df382SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
930e69df382SEwan Crawford 
931e69df382SEwan Crawford     // Context, Alloc
932e69df382SEwan Crawford     uint64_t rs_context_u64 = 0U;
933e69df382SEwan Crawford     uint64_t rs_alloc_u64 = 0U;
934e69df382SEwan Crawford 
935e69df382SEwan Crawford     bool success = GetArgSimple(context, 0, &rs_context_u64) && GetArgSimple(context, 1, &rs_alloc_u64);
936e69df382SEwan Crawford     if (!success) // error case
937e69df382SEwan Crawford     {
938e69df382SEwan Crawford         if (log)
939e69df382SEwan Crawford             log->Printf("RenderScriptRuntime::CaptureAllocationDestroy - Error while reading the function parameters");
940e69df382SEwan Crawford         return; // abort
941e69df382SEwan Crawford     }
942e69df382SEwan Crawford 
943e69df382SEwan Crawford     if (log)
944e69df382SEwan Crawford         log->Printf("RenderScriptRuntime::CaptureAllocationDestroy - 0x%" PRIx64 ", 0x%" PRIx64 ".",
945e69df382SEwan Crawford                     rs_context_u64, rs_alloc_u64);
946e69df382SEwan Crawford 
947e69df382SEwan Crawford     for (auto iter = m_allocations.begin(); iter != m_allocations.end(); ++iter)
948e69df382SEwan Crawford     {
949e69df382SEwan Crawford         auto& allocation_ap = *iter; // get the unique pointer
950e69df382SEwan Crawford         if (allocation_ap->address.isValid() && *allocation_ap->address.get() == rs_alloc_u64)
951e69df382SEwan Crawford         {
952e69df382SEwan Crawford             m_allocations.erase(iter);
953e69df382SEwan Crawford             if (log)
954e69df382SEwan Crawford                 log->Printf("RenderScriptRuntime::CaptureAllocationDestroy - Deleted allocation entry");
955e69df382SEwan Crawford             return;
956e69df382SEwan Crawford         }
957e69df382SEwan Crawford     }
958e69df382SEwan Crawford 
959e69df382SEwan Crawford     if (log)
960e69df382SEwan Crawford         log->Printf("RenderScriptRuntime::CaptureAllocationDestroy - Couldn't find destroyed allocation");
961e69df382SEwan Crawford }
962e69df382SEwan Crawford 
963e69df382SEwan Crawford void
9644640cde1SColin Riley RenderScriptRuntime::CaptureScriptInit1(RuntimeHook* hook_info, ExecutionContext& context)
9654640cde1SColin Riley {
9664640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
9674640cde1SColin Riley 
9684640cde1SColin Riley     //Context, Script, resname Str, cachedir Str
9694640cde1SColin Riley     Error error;
9704640cde1SColin Riley     Process* process = context.GetProcessPtr();
9714640cde1SColin Riley 
97282780287SAidan Dodds     uint64_t rs_context_u64 = 0U;
97382780287SAidan Dodds     uint64_t rs_script_u64 = 0U;
97482780287SAidan Dodds     uint64_t rs_resnameptr_u64 = 0U;
97582780287SAidan Dodds     uint64_t rs_cachedirptr_u64 = 0U;
9764640cde1SColin Riley 
9774640cde1SColin Riley     std::string resname;
9784640cde1SColin Riley     std::string cachedir;
9794640cde1SColin Riley 
98082780287SAidan Dodds     // read the function parameters
98182780287SAidan Dodds     bool success =
98282780287SAidan Dodds         GetArgSimple(context, 0, &rs_context_u64) &&
98382780287SAidan Dodds         GetArgSimple(context, 1, &rs_script_u64) &&
98482780287SAidan Dodds         GetArgSimple(context, 2, &rs_resnameptr_u64) &&
98582780287SAidan Dodds         GetArgSimple(context, 3, &rs_cachedirptr_u64);
9864640cde1SColin Riley 
98782780287SAidan Dodds     if (!success)
98882780287SAidan Dodds     {
98982780287SAidan Dodds         if (log)
99082780287SAidan Dodds             log->Printf("RenderScriptRuntime::CaptureScriptInit1 - Error while reading the function parameters");
99182780287SAidan Dodds         return;
99282780287SAidan Dodds     }
99382780287SAidan Dodds 
99482780287SAidan Dodds     process->ReadCStringFromMemory((lldb::addr_t)rs_resnameptr_u64, resname, error);
9954640cde1SColin Riley     if (error.Fail())
9964640cde1SColin Riley     {
9974640cde1SColin Riley         if (log)
9984640cde1SColin Riley             log->Printf ("RenderScriptRuntime::CaptureScriptInit1 - error reading resname: %s.", error.AsCString());
9994640cde1SColin Riley 
10004640cde1SColin Riley     }
10014640cde1SColin Riley 
100282780287SAidan Dodds     process->ReadCStringFromMemory((lldb::addr_t)rs_cachedirptr_u64, cachedir, error);
10034640cde1SColin Riley     if (error.Fail())
10044640cde1SColin Riley     {
10054640cde1SColin Riley         if (log)
10064640cde1SColin Riley             log->Printf ("RenderScriptRuntime::CaptureScriptInit1 - error reading cachedir: %s.", error.AsCString());
10074640cde1SColin Riley     }
10084640cde1SColin Riley 
10094640cde1SColin Riley     if (log)
10104640cde1SColin Riley         log->Printf ("RenderScriptRuntime::CaptureScriptInit1 - 0x%" PRIx64 ",0x%" PRIx64 " => '%s' at '%s' .",
101182780287SAidan Dodds                      rs_context_u64, rs_script_u64, resname.c_str(), cachedir.c_str());
10124640cde1SColin Riley 
10134640cde1SColin Riley     if (resname.size() > 0)
10144640cde1SColin Riley     {
10154640cde1SColin Riley         StreamString strm;
10164640cde1SColin Riley         strm.Printf("librs.%s.so", resname.c_str());
10174640cde1SColin Riley 
101878f339d1SEwan Crawford         ScriptDetails* script = LookUpScript(rs_script_u64, true);
101978f339d1SEwan Crawford         if (script)
102078f339d1SEwan Crawford         {
102178f339d1SEwan Crawford             script->type = ScriptDetails::eScriptC;
102278f339d1SEwan Crawford             script->cacheDir = cachedir;
102378f339d1SEwan Crawford             script->resName = resname;
102478f339d1SEwan Crawford             script->scriptDyLib = strm.GetData();
102578f339d1SEwan Crawford             script->context = addr_t(rs_context_u64);
102678f339d1SEwan Crawford         }
10274640cde1SColin Riley 
10284640cde1SColin Riley         if (log)
10294640cde1SColin Riley             log->Printf ("RenderScriptRuntime::CaptureScriptInit1 - '%s' tagged with context 0x%" PRIx64 " and script 0x%" PRIx64 ".",
103082780287SAidan Dodds                          strm.GetData(), rs_context_u64, rs_script_u64);
10314640cde1SColin Riley     }
10324640cde1SColin Riley     else if (log)
10334640cde1SColin Riley     {
10344640cde1SColin Riley         log->Printf ("RenderScriptRuntime::CaptureScriptInit1 - resource name invalid, Script not tagged");
10354640cde1SColin Riley     }
10364640cde1SColin Riley }
10374640cde1SColin Riley 
10384640cde1SColin Riley void
10394640cde1SColin Riley RenderScriptRuntime::LoadRuntimeHooks(lldb::ModuleSP module, ModuleKind kind)
10404640cde1SColin Riley {
10414640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
10424640cde1SColin Riley 
10434640cde1SColin Riley     if (!module)
10444640cde1SColin Riley     {
10454640cde1SColin Riley         return;
10464640cde1SColin Riley     }
10474640cde1SColin Riley 
104882780287SAidan Dodds     Target &target = GetProcess()->GetTarget();
104982780287SAidan Dodds     llvm::Triple::ArchType targetArchType = target.GetArchitecture().GetMachine();
105082780287SAidan Dodds 
105182780287SAidan Dodds     if (targetArchType != llvm::Triple::ArchType::x86
105282780287SAidan Dodds         && targetArchType != llvm::Triple::ArchType::arm
105302f1c5d1SEwan Crawford         && targetArchType != llvm::Triple::ArchType::aarch64
105474b396d9SAidan Dodds         && targetArchType != llvm::Triple::ArchType::mipsel
105502f1c5d1SEwan Crawford         && targetArchType != llvm::Triple::ArchType::mips64el
1056*cdfb1485SEwan Crawford         && targetArchType != llvm::Triple::ArchType::x86_64
105702f1c5d1SEwan Crawford     )
10584640cde1SColin Riley     {
10594640cde1SColin Riley         if (log)
106074b396d9SAidan Dodds             log->Printf ("RenderScriptRuntime::LoadRuntimeHooks - Unable to hook runtime. Only X86, ARM, Mips supported currently.");
10614640cde1SColin Riley 
10624640cde1SColin Riley         return;
10634640cde1SColin Riley     }
10644640cde1SColin Riley 
106582780287SAidan Dodds     uint32_t archByteSize = target.GetArchitecture().GetAddressByteSize();
10664640cde1SColin Riley 
10674640cde1SColin Riley     for (size_t idx = 0; idx < s_runtimeHookCount; idx++)
10684640cde1SColin Riley     {
10694640cde1SColin Riley         const HookDefn* hook_defn = &s_runtimeHookDefns[idx];
10704640cde1SColin Riley         if (hook_defn->kind != kind) {
10714640cde1SColin Riley             continue;
10724640cde1SColin Riley         }
10734640cde1SColin Riley 
107482780287SAidan Dodds         const char* symbol_name = (archByteSize == 4) ? hook_defn->symbol_name_m32 : hook_defn->symbol_name_m64;
107582780287SAidan Dodds 
107682780287SAidan Dodds         const Symbol *sym = module->FindFirstSymbolWithNameAndType(ConstString(symbol_name), eSymbolTypeCode);
107782780287SAidan Dodds         if (!sym){
107882780287SAidan Dodds             if (log){
107982780287SAidan Dodds                 log->Printf("RenderScriptRuntime::LoadRuntimeHooks - ERROR: Symbol '%s' related to the function %s not found", symbol_name, hook_defn->name);
108082780287SAidan Dodds             }
108182780287SAidan Dodds             continue;
108282780287SAidan Dodds         }
10834640cde1SColin Riley 
1084358cf1eaSGreg Clayton         addr_t addr = sym->GetLoadAddress(&target);
10854640cde1SColin Riley         if (addr == LLDB_INVALID_ADDRESS)
10864640cde1SColin Riley         {
10874640cde1SColin Riley             if (log)
10884640cde1SColin Riley                 log->Printf ("RenderScriptRuntime::LoadRuntimeHooks - Unable to resolve the address of hook function '%s' with symbol '%s'.",
108982780287SAidan Dodds                              hook_defn->name, symbol_name);
10904640cde1SColin Riley             continue;
10914640cde1SColin Riley         }
109282780287SAidan Dodds         else
109382780287SAidan Dodds         {
109482780287SAidan Dodds             if (log)
109582780287SAidan Dodds                 log->Printf("RenderScriptRuntime::LoadRuntimeHooks - Function %s, address resolved at 0x%" PRIx64, hook_defn->name, addr);
109682780287SAidan Dodds         }
10974640cde1SColin Riley 
10984640cde1SColin Riley         RuntimeHookSP hook(new RuntimeHook());
10994640cde1SColin Riley         hook->address = addr;
11004640cde1SColin Riley         hook->defn = hook_defn;
11014640cde1SColin Riley         hook->bp_sp = target.CreateBreakpoint(addr, true, false);
11024640cde1SColin Riley         hook->bp_sp->SetCallback(HookCallback, hook.get(), true);
11034640cde1SColin Riley         m_runtimeHooks[addr] = hook;
11044640cde1SColin Riley         if (log)
11054640cde1SColin Riley         {
11064640cde1SColin Riley             log->Printf ("RenderScriptRuntime::LoadRuntimeHooks - Successfully hooked '%s' in '%s' version %" PRIu64 " at 0x%" PRIx64 ".",
11074640cde1SColin Riley                 hook_defn->name, module->GetFileSpec().GetFilename().AsCString(), (uint64_t)hook_defn->version, (uint64_t)addr);
11084640cde1SColin Riley         }
11094640cde1SColin Riley     }
11104640cde1SColin Riley }
11114640cde1SColin Riley 
11124640cde1SColin Riley void
11134640cde1SColin Riley RenderScriptRuntime::FixupScriptDetails(RSModuleDescriptorSP rsmodule_sp)
11144640cde1SColin Riley {
11154640cde1SColin Riley     if (!rsmodule_sp)
11164640cde1SColin Riley         return;
11174640cde1SColin Riley 
11184640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
11194640cde1SColin Riley 
11204640cde1SColin Riley     const ModuleSP module = rsmodule_sp->m_module;
11214640cde1SColin Riley     const FileSpec& file = module->GetPlatformFileSpec();
11224640cde1SColin Riley 
112378f339d1SEwan Crawford     // Iterate over all of the scripts that we currently know of.
112478f339d1SEwan Crawford     // Note: We cant push or pop to m_scripts here or it may invalidate rs_script.
11254640cde1SColin Riley     for (const auto & rs_script : m_scripts)
11264640cde1SColin Riley     {
112778f339d1SEwan Crawford         // Extract the expected .so file path for this script.
112878f339d1SEwan Crawford         std::string dylib;
112978f339d1SEwan Crawford         if (!rs_script->scriptDyLib.get(dylib))
113078f339d1SEwan Crawford             continue;
113178f339d1SEwan Crawford 
113278f339d1SEwan Crawford         // Only proceed if the module that has loaded corresponds to this script.
113378f339d1SEwan Crawford         if (file.GetFilename() != ConstString(dylib.c_str()))
113478f339d1SEwan Crawford             continue;
113578f339d1SEwan Crawford 
113678f339d1SEwan Crawford         // Obtain the script address which we use as a key.
113778f339d1SEwan Crawford         lldb::addr_t script;
113878f339d1SEwan Crawford         if (!rs_script->script.get(script))
113978f339d1SEwan Crawford             continue;
114078f339d1SEwan Crawford 
114178f339d1SEwan Crawford         // If we have a script mapping for the current script.
114278f339d1SEwan Crawford         if (m_scriptMappings.find(script) != m_scriptMappings.end())
11434640cde1SColin Riley         {
114478f339d1SEwan Crawford             // if the module we have stored is different to the one we just received.
114578f339d1SEwan Crawford             if (m_scriptMappings[script] != rsmodule_sp)
11464640cde1SColin Riley             {
11474640cde1SColin Riley                 if (log)
11484640cde1SColin Riley                     log->Printf ("RenderScriptRuntime::FixupScriptDetails - Error: script %" PRIx64 " wants reassigned to new rsmodule '%s'.",
114978f339d1SEwan Crawford                                     (uint64_t)script, rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
11504640cde1SColin Riley             }
11514640cde1SColin Riley         }
115278f339d1SEwan Crawford         // We don't have a script mapping for the current script.
11534640cde1SColin Riley         else
11544640cde1SColin Riley         {
115578f339d1SEwan Crawford             // Obtain the script resource name.
115678f339d1SEwan Crawford             std::string resName;
115778f339d1SEwan Crawford             if (rs_script->resName.get(resName))
115878f339d1SEwan Crawford                 // Set the modules resource name.
115978f339d1SEwan Crawford                 rsmodule_sp->m_resname = resName;
116078f339d1SEwan Crawford             // Add Script/Module pair to map.
116178f339d1SEwan Crawford             m_scriptMappings[script] = rsmodule_sp;
11624640cde1SColin Riley             if (log)
11634640cde1SColin Riley                 log->Printf ("RenderScriptRuntime::FixupScriptDetails - script %" PRIx64 " associated with rsmodule '%s'.",
116478f339d1SEwan Crawford                                 (uint64_t)script, rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
11654640cde1SColin Riley         }
11664640cde1SColin Riley     }
11674640cde1SColin Riley }
11684640cde1SColin Riley 
116915f2bd95SEwan Crawford // Uses the Target API to evaluate the expression passed as a parameter to the function
117015f2bd95SEwan Crawford // The result of that expression is returned an unsigned 64 bit int, via the result* paramter.
117115f2bd95SEwan Crawford // Function returns true on success, and false on failure
117215f2bd95SEwan Crawford bool
117315f2bd95SEwan Crawford RenderScriptRuntime::EvalRSExpression(const char* expression, StackFrame* frame_ptr, uint64_t* result)
117415f2bd95SEwan Crawford {
117515f2bd95SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
117615f2bd95SEwan Crawford     if (log)
117715f2bd95SEwan Crawford         log->Printf("RenderScriptRuntime::EvalRSExpression(%s)", expression);
117815f2bd95SEwan Crawford 
117915f2bd95SEwan Crawford     ValueObjectSP expr_result;
118015f2bd95SEwan Crawford     // Perform the actual expression evaluation
118115f2bd95SEwan Crawford     GetProcess()->GetTarget().EvaluateExpression(expression, frame_ptr, expr_result);
118215f2bd95SEwan Crawford 
118315f2bd95SEwan Crawford     if (!expr_result)
118415f2bd95SEwan Crawford     {
118515f2bd95SEwan Crawford        if (log)
118615f2bd95SEwan Crawford            log->Printf("RenderScriptRuntime::EvalRSExpression -  Error: Couldn't evaluate expression");
118715f2bd95SEwan Crawford        return false;
118815f2bd95SEwan Crawford     }
118915f2bd95SEwan Crawford 
119015f2bd95SEwan Crawford     // The result of the expression is invalid
119115f2bd95SEwan Crawford     if (!expr_result->GetError().Success())
119215f2bd95SEwan Crawford     {
119315f2bd95SEwan Crawford         Error err = expr_result->GetError();
119415f2bd95SEwan Crawford         if (err.GetError() == UserExpression::kNoResult) // Expression returned void, so this is actually a success
119515f2bd95SEwan Crawford         {
119615f2bd95SEwan Crawford             if (log)
119715f2bd95SEwan Crawford                 log->Printf("RenderScriptRuntime::EvalRSExpression - Expression returned void");
119815f2bd95SEwan Crawford 
119915f2bd95SEwan Crawford             result = nullptr;
120015f2bd95SEwan Crawford             return true;
120115f2bd95SEwan Crawford         }
120215f2bd95SEwan Crawford 
120315f2bd95SEwan Crawford         if (log)
120415f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::EvalRSExpression - Error evaluating expression result: %s", err.AsCString());
120515f2bd95SEwan Crawford         return false;
120615f2bd95SEwan Crawford     }
120715f2bd95SEwan Crawford 
120815f2bd95SEwan Crawford     bool success = false;
120915f2bd95SEwan Crawford     *result = expr_result->GetValueAsUnsigned(0, &success); // We only read the result as an unsigned int.
121015f2bd95SEwan Crawford 
121115f2bd95SEwan Crawford     if (!success)
121215f2bd95SEwan Crawford     {
121315f2bd95SEwan Crawford        if (log)
121415f2bd95SEwan Crawford            log->Printf("RenderScriptRuntime::EvalRSExpression -  Error: Couldn't convert expression result to unsigned int");
121515f2bd95SEwan Crawford        return false;
121615f2bd95SEwan Crawford     }
121715f2bd95SEwan Crawford 
121815f2bd95SEwan Crawford     return true;
121915f2bd95SEwan Crawford }
122015f2bd95SEwan Crawford 
1221b1651b8dSEwan Crawford namespace // anonymous
122215f2bd95SEwan Crawford {
1223b1651b8dSEwan Crawford     // max length of an expanded expression
1224b1651b8dSEwan Crawford     const int jit_max_expr_size = 768;
122515f2bd95SEwan Crawford 
122615f2bd95SEwan Crawford     // Format strings containing the expressions we may need to evaluate.
122715f2bd95SEwan Crawford     const char runtimeExpressions[][256] =
122815f2bd95SEwan Crawford     {
122915f2bd95SEwan Crawford      // Mangled GetOffsetPointer(Allocation*, xoff, yoff, zoff, lod, cubemap)
123015f2bd95SEwan Crawford      "(int*)_Z12GetOffsetPtrPKN7android12renderscript10AllocationEjjjj23RsAllocationCubemapFace(0x%lx, %u, %u, %u, 0, 0)",
123115f2bd95SEwan Crawford 
123215f2bd95SEwan Crawford      // Type* rsaAllocationGetType(Context*, Allocation*)
123315f2bd95SEwan Crawford      "(void*)rsaAllocationGetType(0x%lx, 0x%lx)",
123415f2bd95SEwan Crawford 
123515f2bd95SEwan Crawford      // rsaTypeGetNativeData(Context*, Type*, void* typeData, size)
123615f2bd95SEwan Crawford      // Pack the data in the following way mHal.state.dimX; mHal.state.dimY; mHal.state.dimZ;
123715f2bd95SEwan Crawford      // mHal.state.lodCount; mHal.state.faces; mElement; into typeData
123815f2bd95SEwan Crawford      // Need to specify 32 or 64 bit for uint_t since this differs between devices
123915f2bd95SEwan Crawford      "uint%u_t data[6]; (void*)rsaTypeGetNativeData(0x%lx, 0x%lx, data, 6); data[0]", // X dim
124015f2bd95SEwan Crawford      "uint%u_t data[6]; (void*)rsaTypeGetNativeData(0x%lx, 0x%lx, data, 6); data[1]", // Y dim
124115f2bd95SEwan Crawford      "uint%u_t data[6]; (void*)rsaTypeGetNativeData(0x%lx, 0x%lx, data, 6); data[2]", // Z dim
124215f2bd95SEwan Crawford      "uint%u_t data[6]; (void*)rsaTypeGetNativeData(0x%lx, 0x%lx, data, 6); data[5]", // Element ptr
124315f2bd95SEwan Crawford 
124415f2bd95SEwan Crawford      // rsaElementGetNativeData(Context*, Element*, uint32_t* elemData,size)
124515f2bd95SEwan Crawford      // Pack mType; mKind; mNormalized; mVectorSize; NumSubElements into elemData
12468b244e21SEwan Crawford      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%lx, 0x%lx, data, 5); data[0]", // Type
12478b244e21SEwan Crawford      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%lx, 0x%lx, data, 5); data[1]", // Kind
12488b244e21SEwan Crawford      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%lx, 0x%lx, data, 5); data[3]", // Vector Size
12498b244e21SEwan Crawford      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%lx, 0x%lx, data, 5); data[4]", // Field Count
12508b244e21SEwan Crawford 
12518b244e21SEwan Crawford       // rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t *ids, const char **names,
12528b244e21SEwan Crawford       // size_t *arraySizes, uint32_t dataSize)
12538b244e21SEwan Crawford       // Needed for Allocations of structs to gather details about fields/Subelements
12548b244e21SEwan Crawford      "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
12558b244e21SEwan Crawford      "(void*)rsaElementGetSubElements(0x%lx, 0x%lx, ids, names, arr_size, %u); ids[%u]",     // Element* of field
12568b244e21SEwan Crawford 
12578b244e21SEwan Crawford      "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
12588b244e21SEwan Crawford      "(void*)rsaElementGetSubElements(0x%lx, 0x%lx, ids, names, arr_size, %u); names[%u]",   // Name of field
12598b244e21SEwan Crawford 
12608b244e21SEwan Crawford      "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
12618b244e21SEwan Crawford      "(void*)rsaElementGetSubElements(0x%lx, 0x%lx, ids, names, arr_size, %u); arr_size[%u]" // Array size of field
126215f2bd95SEwan Crawford     };
126315f2bd95SEwan Crawford 
1264b1651b8dSEwan Crawford 
1265b1651b8dSEwan Crawford     // Temporary workaround for MIPS, until the compiler emits the JAL instruction when invoking directly the function.
1266b1651b8dSEwan Crawford     // At the moment, when evaluating an expression involving a function call, the LLVM codegen for Mips  emits a JAL
1267b1651b8dSEwan Crawford     // instruction, which is able to jump in the range +/- 128MB with respect to the current program counter ($pc). If
1268b1651b8dSEwan Crawford     // the requested function happens to reside outside the above region, the function address will be truncated and the
1269b1651b8dSEwan Crawford     // function invocation will fail. This is a problem in the RS plugin as we rely on the RS API to probe the number and
1270b1651b8dSEwan Crawford     // the nature of allocations. A proper solution in the MIPS compiler is currently being investigated. As temporary
1271b1651b8dSEwan Crawford     // work around for this context, we'll invoke the RS API through function pointers, which cause the compiler to emit a
1272b1651b8dSEwan Crawford     // register based JALR instruction.
1273b1651b8dSEwan Crawford     const char runtimeExpressions_mips[][512] =
1274b1651b8dSEwan Crawford     {
1275b1651b8dSEwan Crawford     // Mangled GetOffsetPointer(Allocation*, xoff, yoff, zoff, lod, cubemap)
1276b1651b8dSEwan Crawford     "int* (*f) (void*, int, int, int, int, int) = (int* (*) (void*, int, int, int, int, int)) "
1277b1651b8dSEwan Crawford         "_Z12GetOffsetPtrPKN7android12renderscript10AllocationEjjjj23RsAllocationCubemapFace; "
1278b1651b8dSEwan Crawford         "(int*) f((void*) 0x%lx, %u, %u, %u, 0, 0)",
1279b1651b8dSEwan Crawford 
1280b1651b8dSEwan Crawford     // Type* rsaAllocationGetType(Context*, Allocation*)
1281b1651b8dSEwan Crawford     "void* (*f) (void*, void*) = (void* (*) (void*, void*)) rsaAllocationGetType; (void*) f((void*) 0x%lx, (void*) 0x%lx)",
1282b1651b8dSEwan Crawford 
1283b1651b8dSEwan Crawford     // rsaTypeGetNativeData(Context*, Type*, void* typeData, size)
1284b1651b8dSEwan Crawford     // Pack the data in the following way mHal.state.dimX; mHal.state.dimY; mHal.state.dimZ;
1285b1651b8dSEwan Crawford     // mHal.state.lodCount; mHal.state.faces; mElement; into typeData
1286b1651b8dSEwan Crawford     // Need to specify 32 or 64 bit for uint_t since this differs between devices
1287b1651b8dSEwan Crawford     "uint%u_t data[6]; void* (*f)(void*, void*, uintptr_t*, uint32_t) = (void* (*)(void*, void*, uintptr_t*, uint32_t)) "
1288b1651b8dSEwan Crawford         "rsaTypeGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 6); data[0]",
1289b1651b8dSEwan Crawford     "uint%u_t data[6]; void* (*f)(void*, void*, uintptr_t*, uint32_t) = (void* (*)(void*, void*, uintptr_t*, uint32_t)) "
1290b1651b8dSEwan Crawford         "rsaTypeGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 6); data[1]",
1291b1651b8dSEwan Crawford     "uint%u_t data[6]; void* (*f)(void*, void*, uintptr_t*, uint32_t) = (void* (*)(void*, void*, uintptr_t*, uint32_t)) "
1292b1651b8dSEwan Crawford         "rsaTypeGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 6); data[2]",
1293b1651b8dSEwan Crawford     "uint%u_t data[6]; void* (*f)(void*, void*, uintptr_t*, uint32_t) = (void* (*)(void*, void*, uintptr_t*, uint32_t)) "
1294b1651b8dSEwan Crawford         "rsaTypeGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 6); data[5]",
1295b1651b8dSEwan Crawford 
1296b1651b8dSEwan Crawford     // rsaElementGetNativeData(Context*, Element*, uint32_t* elemData,size)
1297b1651b8dSEwan Crawford     // Pack mType; mKind; mNormalized; mVectorSize; NumSubElements into elemData
1298b1651b8dSEwan Crawford     "uint32_t data[5]; void* (*f)(void*, void*, uint32_t*, uint32_t) = (void* (*)(void*, void*, uint32_t*, uint32_t)) "
1299b1651b8dSEwan Crawford         "rsaElementGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 5); data[0]", // Type
1300b1651b8dSEwan Crawford     "uint32_t data[5]; void* (*f)(void*, void*, uint32_t*, uint32_t) = (void* (*)(void*, void*, uint32_t*, uint32_t)) "
1301b1651b8dSEwan Crawford         "rsaElementGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 5); data[1]", // Kind
1302b1651b8dSEwan Crawford     "uint32_t data[5]; void* (*f)(void*, void*, uint32_t*, uint32_t) = (void* (*)(void*, void*, uint32_t*, uint32_t)) "
1303b1651b8dSEwan Crawford         "rsaElementGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 5); data[3]", // Vector size
1304b1651b8dSEwan Crawford     "uint32_t data[5]; void* (*f)(void*, void*, uint32_t*, uint32_t) = (void* (*)(void*, void*, uint32_t*, uint32_t)) "
1305b1651b8dSEwan Crawford         "rsaElementGetNativeData; (void*) f((void*) 0x%lx, (void*) 0x%lx, data, 5); data[4]", // Field count
1306b1651b8dSEwan Crawford 
1307b1651b8dSEwan Crawford     // rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t *ids, const char **names,
1308b1651b8dSEwan Crawford     // size_t *arraySizes, uint32_t dataSize)
1309b1651b8dSEwan Crawford     // Needed for Allocations of structs to gather details about fields/Subelements
1310b1651b8dSEwan Crawford    "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
1311b1651b8dSEwan Crawford         "void* (*f) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t) = "
1312b1651b8dSEwan Crawford         "(void* (*) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t)) rsaElementGetSubElements;"
1313b1651b8dSEwan Crawford         "(void*) f((void*) 0x%lx, (void*) 0x%lx, (uintptr_t*) ids, names, arr_size, (uint32_t) %u);"
1314b1651b8dSEwan Crawford         "ids[%u]", // Element* of field
1315b1651b8dSEwan Crawford    "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
1316b1651b8dSEwan Crawford         "void* (*f) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t) = "
1317b1651b8dSEwan Crawford         "(void* (*) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t)) rsaElementGetSubElements;"
1318b1651b8dSEwan Crawford         "(void*) f((void*) 0x%lx, (void*) 0x%lx, (uintptr_t*) ids, names, arr_size, (uint32_t) %u);"
1319b1651b8dSEwan Crawford         "names[%u]", // Name of field
1320b1651b8dSEwan Crawford    "void* ids[%u]; const char* names[%u]; size_t arr_size[%u];"
1321b1651b8dSEwan Crawford         "void* (*f) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t) = "
1322b1651b8dSEwan Crawford         "(void* (*) (void*, void*, uintptr_t*, const char**, size_t*, uint32_t)) rsaElementGetSubElements;"
1323b1651b8dSEwan Crawford         "(void*) f((void*) 0x%lx, (void*) 0x%lx, (uintptr_t*) ids, names, arr_size, (uint32_t) %u);"
1324b1651b8dSEwan Crawford         "arr_size[%u]" // Array size of field
1325b1651b8dSEwan Crawford     };
1326b1651b8dSEwan Crawford 
1327b1651b8dSEwan Crawford } // end of the anonymous namespace
1328b1651b8dSEwan Crawford 
1329b1651b8dSEwan Crawford 
1330b1651b8dSEwan Crawford // Retrieve the string to JIT for the given expression
1331b1651b8dSEwan Crawford const char*
1332b1651b8dSEwan Crawford RenderScriptRuntime::JITTemplate(ExpressionStrings e)
1333b1651b8dSEwan Crawford {
1334b1651b8dSEwan Crawford     // be nice to your Mips friend when adding new expression strings
1335b1651b8dSEwan Crawford     static_assert(sizeof(runtimeExpressions)/sizeof(runtimeExpressions[0]) ==
1336b1651b8dSEwan Crawford             sizeof(runtimeExpressions_mips)/sizeof(runtimeExpressions_mips[0]),
1337b1651b8dSEwan Crawford             "#runtimeExpressions != #runtimeExpressions_mips");
1338b1651b8dSEwan Crawford 
1339b1651b8dSEwan Crawford     assert((e >= eExprGetOffsetPtr && e <= eExprSubelementsArrSize) &&
1340b1651b8dSEwan Crawford            "Expression string out of bounds");
1341b1651b8dSEwan Crawford 
1342b1651b8dSEwan Crawford     llvm::Triple::ArchType arch = GetTargetRef().GetArchitecture().GetMachine();
1343b1651b8dSEwan Crawford 
1344b1651b8dSEwan Crawford     // mips JAL workaround
1345b1651b8dSEwan Crawford     if(arch == llvm::Triple::ArchType::mips64el || arch == llvm::Triple::ArchType::mipsel)
1346b1651b8dSEwan Crawford         return runtimeExpressions_mips[e];
1347b1651b8dSEwan Crawford     else
1348b1651b8dSEwan Crawford         return runtimeExpressions[e];
1349b1651b8dSEwan Crawford }
1350b1651b8dSEwan Crawford 
1351b1651b8dSEwan Crawford 
135215f2bd95SEwan Crawford // JITs the RS runtime for the internal data pointer of an allocation.
135315f2bd95SEwan Crawford // Is passed x,y,z coordinates for the pointer to a specific element.
135415f2bd95SEwan Crawford // Then sets the data_ptr member in Allocation with the result.
135515f2bd95SEwan Crawford // Returns true on success, false otherwise
135615f2bd95SEwan Crawford bool
135715f2bd95SEwan Crawford RenderScriptRuntime::JITDataPointer(AllocationDetails* allocation, StackFrame* frame_ptr,
135815f2bd95SEwan Crawford                                     unsigned int x, unsigned int y, unsigned int z)
135915f2bd95SEwan Crawford {
136015f2bd95SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
136115f2bd95SEwan Crawford 
136215f2bd95SEwan Crawford     if (!allocation->address.isValid())
136315f2bd95SEwan Crawford     {
136415f2bd95SEwan Crawford         if (log)
136515f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITDataPointer - Failed to find allocation details");
136615f2bd95SEwan Crawford         return false;
136715f2bd95SEwan Crawford     }
136815f2bd95SEwan Crawford 
1369b1651b8dSEwan Crawford     const char* expr_cstr = JITTemplate(eExprGetOffsetPtr);
1370b1651b8dSEwan Crawford     char buffer[jit_max_expr_size];
137115f2bd95SEwan Crawford 
1372b1651b8dSEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(), x, y, z);
137315f2bd95SEwan Crawford     if (chars_written < 0)
137415f2bd95SEwan Crawford     {
137515f2bd95SEwan Crawford         if (log)
137615f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITDataPointer - Encoding error in snprintf()");
137715f2bd95SEwan Crawford         return false;
137815f2bd95SEwan Crawford     }
1379b1651b8dSEwan Crawford     else if (chars_written >= jit_max_expr_size)
138015f2bd95SEwan Crawford     {
138115f2bd95SEwan Crawford         if (log)
138215f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITDataPointer - Expression too long");
138315f2bd95SEwan Crawford         return false;
138415f2bd95SEwan Crawford     }
138515f2bd95SEwan Crawford 
138615f2bd95SEwan Crawford     uint64_t result = 0;
138715f2bd95SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
138815f2bd95SEwan Crawford         return false;
138915f2bd95SEwan Crawford 
139015f2bd95SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
139115f2bd95SEwan Crawford     allocation->data_ptr = mem_ptr;
139215f2bd95SEwan Crawford 
139315f2bd95SEwan Crawford     return true;
139415f2bd95SEwan Crawford }
139515f2bd95SEwan Crawford 
139615f2bd95SEwan Crawford // JITs the RS runtime for the internal pointer to the RS Type of an allocation
139715f2bd95SEwan Crawford // Then sets the type_ptr member in Allocation with the result.
139815f2bd95SEwan Crawford // Returns true on success, false otherwise
139915f2bd95SEwan Crawford bool
140015f2bd95SEwan Crawford RenderScriptRuntime::JITTypePointer(AllocationDetails* allocation, StackFrame* frame_ptr)
140115f2bd95SEwan Crawford {
140215f2bd95SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
140315f2bd95SEwan Crawford 
140415f2bd95SEwan Crawford     if (!allocation->address.isValid() || !allocation->context.isValid())
140515f2bd95SEwan Crawford     {
140615f2bd95SEwan Crawford         if (log)
140715f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITTypePointer - Failed to find allocation details");
140815f2bd95SEwan Crawford         return false;
140915f2bd95SEwan Crawford     }
141015f2bd95SEwan Crawford 
1411b1651b8dSEwan Crawford     const char* expr_cstr = JITTemplate(eExprAllocGetType);
1412b1651b8dSEwan Crawford     char buffer[jit_max_expr_size];
141315f2bd95SEwan Crawford 
1414b1651b8dSEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->context.get(), *allocation->address.get());
141515f2bd95SEwan Crawford     if (chars_written < 0)
141615f2bd95SEwan Crawford     {
141715f2bd95SEwan Crawford         if (log)
141815f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITDataPointer - Encoding error in snprintf()");
141915f2bd95SEwan Crawford         return false;
142015f2bd95SEwan Crawford     }
1421b1651b8dSEwan Crawford     else if (chars_written >= jit_max_expr_size)
142215f2bd95SEwan Crawford     {
142315f2bd95SEwan Crawford         if (log)
142415f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITTypePointer - Expression too long");
142515f2bd95SEwan Crawford         return false;
142615f2bd95SEwan Crawford     }
142715f2bd95SEwan Crawford 
142815f2bd95SEwan Crawford     uint64_t result = 0;
142915f2bd95SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
143015f2bd95SEwan Crawford         return false;
143115f2bd95SEwan Crawford 
143215f2bd95SEwan Crawford     addr_t type_ptr = static_cast<lldb::addr_t>(result);
143315f2bd95SEwan Crawford     allocation->type_ptr = type_ptr;
143415f2bd95SEwan Crawford 
143515f2bd95SEwan Crawford     return true;
143615f2bd95SEwan Crawford }
143715f2bd95SEwan Crawford 
143815f2bd95SEwan Crawford // JITs the RS runtime for information about the dimensions and type of an allocation
143915f2bd95SEwan Crawford // Then sets dimension and element_ptr members in Allocation with the result.
144015f2bd95SEwan Crawford // Returns true on success, false otherwise
144115f2bd95SEwan Crawford bool
144215f2bd95SEwan Crawford RenderScriptRuntime::JITTypePacked(AllocationDetails* allocation, StackFrame* frame_ptr)
144315f2bd95SEwan Crawford {
144415f2bd95SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
144515f2bd95SEwan Crawford 
144615f2bd95SEwan Crawford     if (!allocation->type_ptr.isValid() || !allocation->context.isValid())
144715f2bd95SEwan Crawford     {
144815f2bd95SEwan Crawford         if (log)
144915f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITTypePacked - Failed to find allocation details");
145015f2bd95SEwan Crawford         return false;
145115f2bd95SEwan Crawford     }
145215f2bd95SEwan Crawford 
145315f2bd95SEwan Crawford     // Expression is different depending on if device is 32 or 64 bit
145415f2bd95SEwan Crawford     uint32_t archByteSize = GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
145515f2bd95SEwan Crawford     const unsigned int bits = archByteSize == 4 ? 32 : 64;
145615f2bd95SEwan Crawford 
145715f2bd95SEwan Crawford     // We want 4 elements from packed data
145815f2bd95SEwan Crawford     const unsigned int num_exprs = 4;
145915f2bd95SEwan Crawford     assert(num_exprs == (eExprTypeElemPtr - eExprTypeDimX + 1) && "Invalid number of expressions");
146015f2bd95SEwan Crawford 
1461b1651b8dSEwan Crawford     char buffer[num_exprs][jit_max_expr_size];
146215f2bd95SEwan Crawford     uint64_t results[num_exprs];
146315f2bd95SEwan Crawford 
146415f2bd95SEwan Crawford     for (unsigned int i = 0; i < num_exprs; ++i)
146515f2bd95SEwan Crawford     {
1466b1651b8dSEwan Crawford         const char* expr_cstr = JITTemplate((ExpressionStrings) (eExprTypeDimX + i));
1467b1651b8dSEwan Crawford         int chars_written = snprintf(buffer[i], jit_max_expr_size, expr_cstr, bits,
146815f2bd95SEwan Crawford                                      *allocation->context.get(), *allocation->type_ptr.get());
146915f2bd95SEwan Crawford         if (chars_written < 0)
147015f2bd95SEwan Crawford         {
147115f2bd95SEwan Crawford             if (log)
147215f2bd95SEwan Crawford                 log->Printf("RenderScriptRuntime::JITDataPointer - Encoding error in snprintf()");
147315f2bd95SEwan Crawford             return false;
147415f2bd95SEwan Crawford         }
1475b1651b8dSEwan Crawford         else if (chars_written >= jit_max_expr_size)
147615f2bd95SEwan Crawford         {
147715f2bd95SEwan Crawford             if (log)
147815f2bd95SEwan Crawford                 log->Printf("RenderScriptRuntime::JITTypePacked - Expression too long");
147915f2bd95SEwan Crawford             return false;
148015f2bd95SEwan Crawford         }
148115f2bd95SEwan Crawford 
148215f2bd95SEwan Crawford         // Perform expression evaluation
148315f2bd95SEwan Crawford         if (!EvalRSExpression(buffer[i], frame_ptr, &results[i]))
148415f2bd95SEwan Crawford             return false;
148515f2bd95SEwan Crawford     }
148615f2bd95SEwan Crawford 
148715f2bd95SEwan Crawford     // Assign results to allocation members
148815f2bd95SEwan Crawford     AllocationDetails::Dimension dims;
148915f2bd95SEwan Crawford     dims.dim_1 = static_cast<uint32_t>(results[0]);
149015f2bd95SEwan Crawford     dims.dim_2 = static_cast<uint32_t>(results[1]);
149115f2bd95SEwan Crawford     dims.dim_3 = static_cast<uint32_t>(results[2]);
149215f2bd95SEwan Crawford     allocation->dimension = dims;
149315f2bd95SEwan Crawford 
149415f2bd95SEwan Crawford     addr_t elem_ptr = static_cast<lldb::addr_t>(results[3]);
14958b244e21SEwan Crawford     allocation->element.element_ptr = elem_ptr;
149615f2bd95SEwan Crawford 
149715f2bd95SEwan Crawford     if (log)
149815f2bd95SEwan Crawford         log->Printf("RenderScriptRuntime::JITTypePacked - dims (%u, %u, %u) Element*: 0x%" PRIx64,
149915f2bd95SEwan Crawford                     dims.dim_1, dims.dim_2, dims.dim_3, elem_ptr);
150015f2bd95SEwan Crawford 
150115f2bd95SEwan Crawford     return true;
150215f2bd95SEwan Crawford }
150315f2bd95SEwan Crawford 
150415f2bd95SEwan Crawford // JITs the RS runtime for information about the Element of an allocation
15058b244e21SEwan Crawford // Then sets type, type_vec_size, field_count and type_kind members in Element with the result.
150615f2bd95SEwan Crawford // Returns true on success, false otherwise
150715f2bd95SEwan Crawford bool
15088b244e21SEwan Crawford RenderScriptRuntime::JITElementPacked(Element& elem, const lldb::addr_t context, StackFrame* frame_ptr)
150915f2bd95SEwan Crawford {
151015f2bd95SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
151115f2bd95SEwan Crawford 
15128b244e21SEwan Crawford     if (!elem.element_ptr.isValid())
151315f2bd95SEwan Crawford     {
151415f2bd95SEwan Crawford         if (log)
151515f2bd95SEwan Crawford             log->Printf("RenderScriptRuntime::JITElementPacked - Failed to find allocation details");
151615f2bd95SEwan Crawford         return false;
151715f2bd95SEwan Crawford     }
151815f2bd95SEwan Crawford 
15198b244e21SEwan Crawford     // We want 4 elements from packed data
15208b244e21SEwan Crawford     const unsigned int num_exprs = 4;
15218b244e21SEwan Crawford     assert(num_exprs == (eExprElementFieldCount - eExprElementType + 1) && "Invalid number of expressions");
152215f2bd95SEwan Crawford 
1523b1651b8dSEwan Crawford     char buffer[num_exprs][jit_max_expr_size];
152415f2bd95SEwan Crawford     uint64_t results[num_exprs];
152515f2bd95SEwan Crawford 
152615f2bd95SEwan Crawford     for (unsigned int i = 0; i < num_exprs; i++)
152715f2bd95SEwan Crawford     {
1528b1651b8dSEwan Crawford         const char* expr_cstr = JITTemplate((ExpressionStrings) (eExprElementType + i));
1529b1651b8dSEwan Crawford         int chars_written = snprintf(buffer[i], jit_max_expr_size, expr_cstr, context, *elem.element_ptr.get());
153015f2bd95SEwan Crawford         if (chars_written < 0)
153115f2bd95SEwan Crawford         {
153215f2bd95SEwan Crawford             if (log)
15338b244e21SEwan Crawford                 log->Printf("RenderScriptRuntime::JITElementPacked - Encoding error in snprintf()");
153415f2bd95SEwan Crawford             return false;
153515f2bd95SEwan Crawford         }
1536b1651b8dSEwan Crawford         else if (chars_written >= jit_max_expr_size)
153715f2bd95SEwan Crawford         {
153815f2bd95SEwan Crawford             if (log)
153915f2bd95SEwan Crawford                 log->Printf("RenderScriptRuntime::JITElementPacked - Expression too long");
154015f2bd95SEwan Crawford             return false;
154115f2bd95SEwan Crawford         }
154215f2bd95SEwan Crawford 
154315f2bd95SEwan Crawford         // Perform expression evaluation
154415f2bd95SEwan Crawford         if (!EvalRSExpression(buffer[i], frame_ptr, &results[i]))
154515f2bd95SEwan Crawford             return false;
154615f2bd95SEwan Crawford     }
154715f2bd95SEwan Crawford 
154815f2bd95SEwan Crawford     // Assign results to allocation members
15498b244e21SEwan Crawford     elem.type = static_cast<RenderScriptRuntime::Element::DataType>(results[0]);
15508b244e21SEwan Crawford     elem.type_kind = static_cast<RenderScriptRuntime::Element::DataKind>(results[1]);
15518b244e21SEwan Crawford     elem.type_vec_size = static_cast<uint32_t>(results[2]);
15528b244e21SEwan Crawford     elem.field_count = static_cast<uint32_t>(results[3]);
155315f2bd95SEwan Crawford 
155415f2bd95SEwan Crawford     if (log)
15558b244e21SEwan Crawford         log->Printf("RenderScriptRuntime::JITElementPacked - data type %u, pixel type %u, vector size %u, field count %u",
15568b244e21SEwan Crawford                     *elem.type.get(), *elem.type_kind.get(), *elem.type_vec_size.get(), *elem.field_count.get());
15578b244e21SEwan Crawford 
15588b244e21SEwan Crawford     // If this Element has subelements then JIT rsaElementGetSubElements() for details about its fields
15598b244e21SEwan Crawford     if (*elem.field_count.get() > 0 && !JITSubelements(elem, context, frame_ptr))
15608b244e21SEwan Crawford         return false;
15618b244e21SEwan Crawford 
15628b244e21SEwan Crawford     return true;
15638b244e21SEwan Crawford }
15648b244e21SEwan Crawford 
15658b244e21SEwan Crawford // JITs the RS runtime for information about the subelements/fields of a struct allocation
15668b244e21SEwan Crawford // This is necessary for infering the struct type so we can pretty print the allocation's contents.
15678b244e21SEwan Crawford // Returns true on success, false otherwise
15688b244e21SEwan Crawford bool
15698b244e21SEwan Crawford RenderScriptRuntime::JITSubelements(Element& elem, const lldb::addr_t context, StackFrame* frame_ptr)
15708b244e21SEwan Crawford {
15718b244e21SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
15728b244e21SEwan Crawford 
15738b244e21SEwan Crawford     if (!elem.element_ptr.isValid() || !elem.field_count.isValid())
15748b244e21SEwan Crawford     {
15758b244e21SEwan Crawford         if (log)
15768b244e21SEwan Crawford             log->Printf("RenderScriptRuntime::JITSubelements - Failed to find allocation details");
15778b244e21SEwan Crawford         return false;
15788b244e21SEwan Crawford     }
15798b244e21SEwan Crawford 
15808b244e21SEwan Crawford     const short num_exprs = 3;
15818b244e21SEwan Crawford     assert(num_exprs == (eExprSubelementsArrSize - eExprSubelementsId + 1) && "Invalid number of expressions");
15828b244e21SEwan Crawford 
1583b1651b8dSEwan Crawford     char expr_buffer[jit_max_expr_size];
15848b244e21SEwan Crawford     uint64_t results;
15858b244e21SEwan Crawford 
15868b244e21SEwan Crawford     // Iterate over struct fields.
15878b244e21SEwan Crawford     const uint32_t field_count = *elem.field_count.get();
15888b244e21SEwan Crawford     for (unsigned int field_index = 0; field_index < field_count; ++field_index)
15898b244e21SEwan Crawford     {
15908b244e21SEwan Crawford         Element child;
15918b244e21SEwan Crawford         for (unsigned int expr_index = 0; expr_index < num_exprs; ++expr_index)
15928b244e21SEwan Crawford         {
1593b1651b8dSEwan Crawford             const char* expr_cstr = JITTemplate((ExpressionStrings) (eExprSubelementsId + expr_index));
1594b1651b8dSEwan Crawford             int chars_written = snprintf(expr_buffer, jit_max_expr_size, expr_cstr,
15958b244e21SEwan Crawford                                          field_count, field_count, field_count,
15968b244e21SEwan Crawford                                          context, *elem.element_ptr.get(), field_count, field_index);
15978b244e21SEwan Crawford             if (chars_written < 0)
15988b244e21SEwan Crawford             {
15998b244e21SEwan Crawford                 if (log)
16008b244e21SEwan Crawford                     log->Printf("RenderScriptRuntime::JITSubelements - Encoding error in snprintf()");
16018b244e21SEwan Crawford                 return false;
16028b244e21SEwan Crawford             }
1603b1651b8dSEwan Crawford             else if (chars_written >= jit_max_expr_size)
16048b244e21SEwan Crawford             {
16058b244e21SEwan Crawford                 if (log)
16068b244e21SEwan Crawford                     log->Printf("RenderScriptRuntime::JITSubelements - Expression too long");
16078b244e21SEwan Crawford                 return false;
16088b244e21SEwan Crawford             }
16098b244e21SEwan Crawford 
16108b244e21SEwan Crawford             // Perform expression evaluation
16118b244e21SEwan Crawford             if (!EvalRSExpression(expr_buffer, frame_ptr, &results))
16128b244e21SEwan Crawford                 return false;
16138b244e21SEwan Crawford 
16148b244e21SEwan Crawford             if (log)
16158b244e21SEwan Crawford                 log->Printf("RenderScriptRuntime::JITSubelements - Expr result 0x%" PRIx64, results);
16168b244e21SEwan Crawford 
16178b244e21SEwan Crawford             switch(expr_index)
16188b244e21SEwan Crawford             {
16198b244e21SEwan Crawford                 case 0: // Element* of child
16208b244e21SEwan Crawford                     child.element_ptr = static_cast<addr_t>(results);
16218b244e21SEwan Crawford                     break;
16228b244e21SEwan Crawford                 case 1: // Name of child
16238b244e21SEwan Crawford                 {
16248b244e21SEwan Crawford                     lldb::addr_t address = static_cast<addr_t>(results);
16258b244e21SEwan Crawford                     Error err;
16268b244e21SEwan Crawford                     std::string name;
16278b244e21SEwan Crawford                     GetProcess()->ReadCStringFromMemory(address, name, err);
16288b244e21SEwan Crawford                     if (!err.Fail())
16298b244e21SEwan Crawford                         child.type_name = ConstString(name);
16308b244e21SEwan Crawford                     else
16318b244e21SEwan Crawford                     {
16328b244e21SEwan Crawford                         if (log)
16338b244e21SEwan Crawford                             log->Printf("RenderScriptRuntime::JITSubelements - Warning: Couldn't read field name");
16348b244e21SEwan Crawford                     }
16358b244e21SEwan Crawford                     break;
16368b244e21SEwan Crawford                 }
16378b244e21SEwan Crawford                 case 2: // Array size of child
16388b244e21SEwan Crawford                     child.array_size = static_cast<uint32_t>(results);
16398b244e21SEwan Crawford                     break;
16408b244e21SEwan Crawford             }
16418b244e21SEwan Crawford         }
16428b244e21SEwan Crawford 
16438b244e21SEwan Crawford         // We need to recursively JIT each Element field of the struct since
16448b244e21SEwan Crawford         // structs can be nested inside structs.
16458b244e21SEwan Crawford         if (!JITElementPacked(child, context, frame_ptr))
16468b244e21SEwan Crawford             return false;
16478b244e21SEwan Crawford         elem.children.push_back(child);
16488b244e21SEwan Crawford     }
16498b244e21SEwan Crawford 
16508b244e21SEwan Crawford     // Try to infer the name of the struct type so we can pretty print the allocation contents.
16518b244e21SEwan Crawford     FindStructTypeName(elem, frame_ptr);
165215f2bd95SEwan Crawford 
165315f2bd95SEwan Crawford     return true;
165415f2bd95SEwan Crawford }
165515f2bd95SEwan Crawford 
1656a0f08674SEwan Crawford // JITs the RS runtime for the address of the last element in the allocation.
1657a0f08674SEwan Crawford // The `elem_size` paramter represents the size of a single element, including padding.
1658a0f08674SEwan Crawford // Which is needed as an offset from the last element pointer.
1659a0f08674SEwan Crawford // Using this offset minus the starting address we can calculate the size of the allocation.
1660a0f08674SEwan Crawford // Returns true on success, false otherwise
1661a0f08674SEwan Crawford bool
16628b244e21SEwan Crawford RenderScriptRuntime::JITAllocationSize(AllocationDetails* allocation, StackFrame* frame_ptr)
1663a0f08674SEwan Crawford {
1664a0f08674SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1665a0f08674SEwan Crawford 
1666a0f08674SEwan Crawford     if (!allocation->address.isValid() || !allocation->dimension.isValid()
16678b244e21SEwan Crawford         || !allocation->data_ptr.isValid() || !allocation->element.datum_size.isValid())
1668a0f08674SEwan Crawford     {
1669a0f08674SEwan Crawford         if (log)
1670a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationSize - Failed to find allocation details");
1671a0f08674SEwan Crawford         return false;
1672a0f08674SEwan Crawford     }
1673a0f08674SEwan Crawford 
1674a0f08674SEwan Crawford     // Find dimensions
1675a0f08674SEwan Crawford     unsigned int dim_x = allocation->dimension.get()->dim_1;
1676a0f08674SEwan Crawford     unsigned int dim_y = allocation->dimension.get()->dim_2;
1677a0f08674SEwan Crawford     unsigned int dim_z = allocation->dimension.get()->dim_3;
1678a0f08674SEwan Crawford 
16798b244e21SEwan Crawford     // Our plan of jitting the last element address doesn't seem to work for struct Allocations
16808b244e21SEwan Crawford     // Instead try to infer the size ourselves without any inter element padding.
16818b244e21SEwan Crawford     if (allocation->element.children.size() > 0)
16828b244e21SEwan Crawford     {
16838b244e21SEwan Crawford         if (dim_x == 0) dim_x = 1;
16848b244e21SEwan Crawford         if (dim_y == 0) dim_y = 1;
16858b244e21SEwan Crawford         if (dim_z == 0) dim_z = 1;
16868b244e21SEwan Crawford 
16878b244e21SEwan Crawford         allocation->size = dim_x * dim_y * dim_z * *allocation->element.datum_size.get();
16888b244e21SEwan Crawford 
16898b244e21SEwan Crawford         if (log)
16908b244e21SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationSize - Infered size of struct allocation %u", *allocation->size.get());
16918b244e21SEwan Crawford 
16928b244e21SEwan Crawford         return true;
16938b244e21SEwan Crawford     }
16948b244e21SEwan Crawford 
1695b1651b8dSEwan Crawford     const char* expr_cstr = JITTemplate(eExprGetOffsetPtr);
1696b1651b8dSEwan Crawford     char buffer[jit_max_expr_size];
16978b244e21SEwan Crawford 
1698a0f08674SEwan Crawford     // Calculate last element
1699a0f08674SEwan Crawford     dim_x = dim_x == 0 ? 0 : dim_x - 1;
1700a0f08674SEwan Crawford     dim_y = dim_y == 0 ? 0 : dim_y - 1;
1701a0f08674SEwan Crawford     dim_z = dim_z == 0 ? 0 : dim_z - 1;
1702a0f08674SEwan Crawford 
1703b1651b8dSEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(),
1704a0f08674SEwan Crawford                                  dim_x, dim_y, dim_z);
1705a0f08674SEwan Crawford     if (chars_written < 0)
1706a0f08674SEwan Crawford     {
1707a0f08674SEwan Crawford         if (log)
1708a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationSize - Encoding error in snprintf()");
1709a0f08674SEwan Crawford         return false;
1710a0f08674SEwan Crawford     }
1711b1651b8dSEwan Crawford     else if (chars_written >= jit_max_expr_size)
1712a0f08674SEwan Crawford     {
1713a0f08674SEwan Crawford         if (log)
1714a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationSize - Expression too long");
1715a0f08674SEwan Crawford         return false;
1716a0f08674SEwan Crawford     }
1717a0f08674SEwan Crawford 
1718a0f08674SEwan Crawford     uint64_t result = 0;
1719a0f08674SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
1720a0f08674SEwan Crawford         return false;
1721a0f08674SEwan Crawford 
1722a0f08674SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
1723a0f08674SEwan Crawford     // Find pointer to last element and add on size of an element
17248b244e21SEwan Crawford     allocation->size = static_cast<uint32_t>(mem_ptr - *allocation->data_ptr.get()) + *allocation->element.datum_size.get();
1725a0f08674SEwan Crawford 
1726a0f08674SEwan Crawford     return true;
1727a0f08674SEwan Crawford }
1728a0f08674SEwan Crawford 
1729a0f08674SEwan Crawford // JITs the RS runtime for information about the stride between rows in the allocation.
1730a0f08674SEwan Crawford // This is done to detect padding, since allocated memory is 16-byte aligned.
1731a0f08674SEwan Crawford // Returns true on success, false otherwise
1732a0f08674SEwan Crawford bool
1733a0f08674SEwan Crawford RenderScriptRuntime::JITAllocationStride(AllocationDetails* allocation, StackFrame* frame_ptr)
1734a0f08674SEwan Crawford {
1735a0f08674SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1736a0f08674SEwan Crawford 
1737a0f08674SEwan Crawford     if (!allocation->address.isValid() || !allocation->data_ptr.isValid())
1738a0f08674SEwan Crawford     {
1739a0f08674SEwan Crawford         if (log)
1740a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationStride - Failed to find allocation details");
1741a0f08674SEwan Crawford         return false;
1742a0f08674SEwan Crawford     }
1743a0f08674SEwan Crawford 
1744b1651b8dSEwan Crawford     const char* expr_cstr = JITTemplate(eExprGetOffsetPtr);
1745b1651b8dSEwan Crawford     char buffer[jit_max_expr_size];
1746a0f08674SEwan Crawford 
1747b1651b8dSEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(),
1748a0f08674SEwan Crawford                                  0, 1, 0);
1749a0f08674SEwan Crawford     if (chars_written < 0)
1750a0f08674SEwan Crawford     {
1751a0f08674SEwan Crawford         if (log)
1752a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationStride - Encoding error in snprintf()");
1753a0f08674SEwan Crawford         return false;
1754a0f08674SEwan Crawford     }
1755b1651b8dSEwan Crawford     else if (chars_written >= jit_max_expr_size)
1756a0f08674SEwan Crawford     {
1757a0f08674SEwan Crawford         if (log)
1758a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::JITAllocationStride - Expression too long");
1759a0f08674SEwan Crawford         return false;
1760a0f08674SEwan Crawford     }
1761a0f08674SEwan Crawford 
1762a0f08674SEwan Crawford     uint64_t result = 0;
1763a0f08674SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
1764a0f08674SEwan Crawford         return false;
1765a0f08674SEwan Crawford 
1766a0f08674SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
1767a0f08674SEwan Crawford     allocation->stride = static_cast<uint32_t>(mem_ptr - *allocation->data_ptr.get());
1768a0f08674SEwan Crawford 
1769a0f08674SEwan Crawford     return true;
1770a0f08674SEwan Crawford }
1771a0f08674SEwan Crawford 
177215f2bd95SEwan Crawford // JIT all the current runtime info regarding an allocation
177315f2bd95SEwan Crawford bool
177415f2bd95SEwan Crawford RenderScriptRuntime::RefreshAllocation(AllocationDetails* allocation, StackFrame* frame_ptr)
177515f2bd95SEwan Crawford {
177615f2bd95SEwan Crawford     // GetOffsetPointer()
177715f2bd95SEwan Crawford     if (!JITDataPointer(allocation, frame_ptr))
177815f2bd95SEwan Crawford         return false;
177915f2bd95SEwan Crawford 
178015f2bd95SEwan Crawford     // rsaAllocationGetType()
178115f2bd95SEwan Crawford     if (!JITTypePointer(allocation, frame_ptr))
178215f2bd95SEwan Crawford         return false;
178315f2bd95SEwan Crawford 
178415f2bd95SEwan Crawford     // rsaTypeGetNativeData()
178515f2bd95SEwan Crawford     if (!JITTypePacked(allocation, frame_ptr))
178615f2bd95SEwan Crawford         return false;
178715f2bd95SEwan Crawford 
178815f2bd95SEwan Crawford     // rsaElementGetNativeData()
17898b244e21SEwan Crawford     if (!JITElementPacked(allocation->element, *allocation->context.get(), frame_ptr))
179015f2bd95SEwan Crawford         return false;
179115f2bd95SEwan Crawford 
17928b244e21SEwan Crawford     // Sets the datum_size member in Element
17938b244e21SEwan Crawford     SetElementSize(allocation->element);
17948b244e21SEwan Crawford 
179555232f09SEwan Crawford     // Use GetOffsetPointer() to infer size of the allocation
17968b244e21SEwan Crawford     if (!JITAllocationSize(allocation, frame_ptr))
179755232f09SEwan Crawford         return false;
179855232f09SEwan Crawford 
179955232f09SEwan Crawford     return true;
180055232f09SEwan Crawford }
180155232f09SEwan Crawford 
18028b244e21SEwan Crawford // Function attempts to set the type_name member of the paramaterised Element object.
18038b244e21SEwan Crawford // This string should be the name of the struct type the Element represents.
18048b244e21SEwan Crawford // We need this string for pretty printing the Element to users.
18058b244e21SEwan Crawford void
18068b244e21SEwan Crawford RenderScriptRuntime::FindStructTypeName(Element& elem, StackFrame* frame_ptr)
180755232f09SEwan Crawford {
18088b244e21SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
18098b244e21SEwan Crawford 
18108b244e21SEwan Crawford     if (!elem.type_name.IsEmpty()) // Name already set
18118b244e21SEwan Crawford         return;
18128b244e21SEwan Crawford     else
1813fe06b5adSAdrian McCarthy         elem.type_name = Element::GetFallbackStructName(); // Default type name if we don't succeed
18148b244e21SEwan Crawford 
18158b244e21SEwan Crawford     // Find all the global variables from the script rs modules
18168b244e21SEwan Crawford     VariableList variable_list;
18178b244e21SEwan Crawford     for (auto module_sp : m_rsmodules)
18188b244e21SEwan Crawford         module_sp->m_module->FindGlobalVariables(RegularExpression("."), true, UINT32_MAX, variable_list);
18198b244e21SEwan Crawford 
18208b244e21SEwan Crawford     // Iterate over all the global variables looking for one with a matching type to the Element.
18218b244e21SEwan Crawford     // We make the assumption a match exists since there needs to be a global variable to reflect the
18228b244e21SEwan Crawford     // struct type back into java host code.
18238b244e21SEwan Crawford     for (uint32_t var_index = 0; var_index < variable_list.GetSize(); ++var_index)
18248b244e21SEwan Crawford     {
18258b244e21SEwan Crawford         const VariableSP var_sp(variable_list.GetVariableAtIndex(var_index));
18268b244e21SEwan Crawford         if (!var_sp)
18278b244e21SEwan Crawford            continue;
18288b244e21SEwan Crawford 
18298b244e21SEwan Crawford         ValueObjectSP valobj_sp = ValueObjectVariable::Create(frame_ptr, var_sp);
18308b244e21SEwan Crawford         if (!valobj_sp)
18318b244e21SEwan Crawford             continue;
18328b244e21SEwan Crawford 
18338b244e21SEwan Crawford         // Find the number of variable fields.
18348b244e21SEwan Crawford         // If it has no fields, or more fields than our Element, then it can't be the struct we're looking for.
18358b244e21SEwan Crawford         // Don't check for equality since RS can add extra struct members for padding.
18368b244e21SEwan Crawford         size_t num_children = valobj_sp->GetNumChildren();
18378b244e21SEwan Crawford         if (num_children > elem.children.size() || num_children == 0)
18388b244e21SEwan Crawford             continue;
18398b244e21SEwan Crawford 
18408b244e21SEwan Crawford         // Iterate over children looking for members with matching field names.
18418b244e21SEwan Crawford         // If all the field names match, this is likely the struct we want.
18428b244e21SEwan Crawford         //
18438b244e21SEwan Crawford         //   TODO: This could be made more robust by also checking children data sizes, or array size
18448b244e21SEwan Crawford         bool found = true;
18458b244e21SEwan Crawford         for (size_t child_index = 0; child_index < num_children; ++child_index)
18468b244e21SEwan Crawford         {
18478b244e21SEwan Crawford             ValueObjectSP child = valobj_sp->GetChildAtIndex(child_index, true);
18488b244e21SEwan Crawford             if (!child || (child->GetName() != elem.children[child_index].type_name))
18498b244e21SEwan Crawford             {
18508b244e21SEwan Crawford                 found = false;
18518b244e21SEwan Crawford                 break;
18528b244e21SEwan Crawford             }
18538b244e21SEwan Crawford         }
18548b244e21SEwan Crawford 
18558b244e21SEwan Crawford         // RS can add extra struct members for padding in the format '#rs_padding_[0-9]+'
18568b244e21SEwan Crawford         if (found && num_children < elem.children.size())
18578b244e21SEwan Crawford         {
18588b244e21SEwan Crawford             const unsigned int size_diff = elem.children.size() - num_children;
18598b244e21SEwan Crawford             if (log)
18608b244e21SEwan Crawford                 log->Printf("RenderScriptRuntime::FindStructTypeName - %u padding struct entries", size_diff);
18618b244e21SEwan Crawford 
18628b244e21SEwan Crawford             for (unsigned int padding_index = 0; padding_index < size_diff; ++padding_index)
18638b244e21SEwan Crawford             {
18648b244e21SEwan Crawford                 const ConstString& name = elem.children[num_children + padding_index].type_name;
18658b244e21SEwan Crawford                 if (strcmp(name.AsCString(), "#rs_padding") < 0)
18668b244e21SEwan Crawford                     found = false;
18678b244e21SEwan Crawford             }
18688b244e21SEwan Crawford         }
18698b244e21SEwan Crawford 
18708b244e21SEwan Crawford         // We've found a global var with matching type
18718b244e21SEwan Crawford         if (found)
18728b244e21SEwan Crawford         {
18738b244e21SEwan Crawford             // Dereference since our Element type isn't a pointer.
18748b244e21SEwan Crawford             if (valobj_sp->IsPointerType())
18758b244e21SEwan Crawford             {
18768b244e21SEwan Crawford                 Error err;
18778b244e21SEwan Crawford                 ValueObjectSP deref_valobj = valobj_sp->Dereference(err);
18788b244e21SEwan Crawford                 if (!err.Fail())
18798b244e21SEwan Crawford                     valobj_sp = deref_valobj;
18808b244e21SEwan Crawford             }
18818b244e21SEwan Crawford 
18828b244e21SEwan Crawford             // Save name of variable in Element.
18838b244e21SEwan Crawford             elem.type_name = valobj_sp->GetTypeName();
18848b244e21SEwan Crawford             if (log)
18858b244e21SEwan Crawford                 log->Printf("RenderScriptRuntime::FindStructTypeName - Element name set to %s", elem.type_name.AsCString());
18868b244e21SEwan Crawford 
18878b244e21SEwan Crawford             return;
18888b244e21SEwan Crawford         }
18898b244e21SEwan Crawford     }
18908b244e21SEwan Crawford }
18918b244e21SEwan Crawford 
18928b244e21SEwan Crawford // Function sets the datum_size member of Element. Representing the size of a single instance including padding.
18938b244e21SEwan Crawford // Assumes the relevant allocation information has already been jitted.
18948b244e21SEwan Crawford void
18958b244e21SEwan Crawford RenderScriptRuntime::SetElementSize(Element& elem)
18968b244e21SEwan Crawford {
18978b244e21SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
18988b244e21SEwan Crawford     const Element::DataType type = *elem.type.get();
18998b244e21SEwan Crawford     assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_BOOLEAN
190055232f09SEwan Crawford                                                    && "Invalid allocation type");
190155232f09SEwan Crawford 
19028b244e21SEwan Crawford     const unsigned int vec_size = *elem.type_vec_size.get();
19038b244e21SEwan Crawford     unsigned int data_size = 0;
190455232f09SEwan Crawford     const unsigned int padding = vec_size == 3 ? AllocationDetails::RSTypeToFormat[type][eElementSize] : 0;
190555232f09SEwan Crawford 
19068b244e21SEwan Crawford     // Element is of a struct type, calculate size recursively.
19078b244e21SEwan Crawford     if ((type == Element::RS_TYPE_NONE) && (elem.children.size() > 0))
19088b244e21SEwan Crawford     {
19098b244e21SEwan Crawford         for (Element& child : elem.children)
19108b244e21SEwan Crawford         {
19118b244e21SEwan Crawford             SetElementSize(child);
19128b244e21SEwan Crawford             const unsigned int array_size = child.array_size.isValid() ? *child.array_size.get() : 1;
19138b244e21SEwan Crawford             data_size += *child.datum_size.get() * array_size;
19148b244e21SEwan Crawford         }
19158b244e21SEwan Crawford     }
19168b244e21SEwan Crawford     else
19178b244e21SEwan Crawford         data_size = vec_size * AllocationDetails::RSTypeToFormat[type][eElementSize];
19188b244e21SEwan Crawford 
19198b244e21SEwan Crawford     elem.padding = padding;
19208b244e21SEwan Crawford     elem.datum_size = data_size + padding;
19218b244e21SEwan Crawford     if (log)
19228b244e21SEwan Crawford         log->Printf("RenderScriptRuntime::SetElementSize - element size set to %u", data_size + padding);
192355232f09SEwan Crawford }
192455232f09SEwan Crawford 
192555232f09SEwan Crawford // Given an allocation, this function copies the allocation contents from device into a buffer on the heap.
192655232f09SEwan Crawford // Returning a shared pointer to the buffer containing the data.
192755232f09SEwan Crawford std::shared_ptr<uint8_t>
192855232f09SEwan Crawford RenderScriptRuntime::GetAllocationData(AllocationDetails* allocation, StackFrame* frame_ptr)
192955232f09SEwan Crawford {
193055232f09SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
193155232f09SEwan Crawford 
193255232f09SEwan Crawford     // JIT all the allocation details
19338b59062aSEwan Crawford     if (allocation->shouldRefresh())
193455232f09SEwan Crawford     {
193555232f09SEwan Crawford         if (log)
193655232f09SEwan Crawford             log->Printf("RenderScriptRuntime::GetAllocationData - Allocation details not calculated yet, jitting info");
193755232f09SEwan Crawford 
193855232f09SEwan Crawford         if (!RefreshAllocation(allocation, frame_ptr))
193955232f09SEwan Crawford         {
194055232f09SEwan Crawford             if (log)
194155232f09SEwan Crawford                 log->Printf("RenderScriptRuntime::GetAllocationData - Couldn't JIT allocation details");
194255232f09SEwan Crawford             return nullptr;
194355232f09SEwan Crawford         }
194455232f09SEwan Crawford     }
194555232f09SEwan Crawford 
19468b244e21SEwan Crawford     assert(allocation->data_ptr.isValid() && allocation->element.type.isValid() && allocation->element.type_vec_size.isValid()
194755232f09SEwan Crawford            && allocation->size.isValid() && "Allocation information not available");
194855232f09SEwan Crawford 
194955232f09SEwan Crawford     // Allocate a buffer to copy data into
195055232f09SEwan Crawford     const unsigned int size = *allocation->size.get();
195155232f09SEwan Crawford     std::shared_ptr<uint8_t> buffer(new uint8_t[size]);
195255232f09SEwan Crawford     if (!buffer)
195355232f09SEwan Crawford     {
195455232f09SEwan Crawford         if (log)
195555232f09SEwan Crawford             log->Printf("RenderScriptRuntime::GetAllocationData - Couldn't allocate a %u byte buffer", size);
195655232f09SEwan Crawford         return nullptr;
195755232f09SEwan Crawford     }
195855232f09SEwan Crawford 
195955232f09SEwan Crawford     // Read the inferior memory
196055232f09SEwan Crawford     Error error;
196155232f09SEwan Crawford     lldb::addr_t data_ptr = *allocation->data_ptr.get();
196255232f09SEwan Crawford     GetProcess()->ReadMemory(data_ptr, buffer.get(), size, error);
196355232f09SEwan Crawford     if (error.Fail())
196455232f09SEwan Crawford     {
196555232f09SEwan Crawford         if (log)
196655232f09SEwan Crawford             log->Printf("RenderScriptRuntime::GetAllocationData - '%s' Couldn't read %u bytes of allocation data from 0x%" PRIx64,
196755232f09SEwan Crawford                         error.AsCString(), size, data_ptr);
196855232f09SEwan Crawford         return nullptr;
196955232f09SEwan Crawford     }
197055232f09SEwan Crawford 
197155232f09SEwan Crawford     return buffer;
197255232f09SEwan Crawford }
197355232f09SEwan Crawford 
197455232f09SEwan Crawford // Function copies data from a binary file into an allocation.
197555232f09SEwan Crawford // There is a header at the start of the file, FileHeader, before the data content itself.
197655232f09SEwan Crawford // Information from this header is used to display warnings to the user about incompatabilities
197755232f09SEwan Crawford bool
197855232f09SEwan Crawford RenderScriptRuntime::LoadAllocation(Stream &strm, const uint32_t alloc_id, const char* filename, StackFrame* frame_ptr)
197955232f09SEwan Crawford {
198055232f09SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
198155232f09SEwan Crawford 
198255232f09SEwan Crawford     // Find allocation with the given id
198355232f09SEwan Crawford     AllocationDetails* alloc = FindAllocByID(strm, alloc_id);
198455232f09SEwan Crawford     if (!alloc)
198555232f09SEwan Crawford         return false;
198655232f09SEwan Crawford 
198755232f09SEwan Crawford     if (log)
198855232f09SEwan Crawford         log->Printf("RenderScriptRuntime::LoadAllocation - Found allocation 0x%" PRIx64, *alloc->address.get());
198955232f09SEwan Crawford 
199055232f09SEwan Crawford     // JIT all the allocation details
19918b59062aSEwan Crawford     if (alloc->shouldRefresh())
199255232f09SEwan Crawford     {
199355232f09SEwan Crawford         if (log)
199455232f09SEwan Crawford             log->Printf("RenderScriptRuntime::LoadAllocation - Allocation details not calculated yet, jitting info");
199555232f09SEwan Crawford 
199655232f09SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
199755232f09SEwan Crawford         {
199855232f09SEwan Crawford             if (log)
199955232f09SEwan Crawford                 log->Printf("RenderScriptRuntime::LoadAllocation - Couldn't JIT allocation details");
20004cfc9198SSylvestre Ledru             return false;
200155232f09SEwan Crawford         }
200255232f09SEwan Crawford     }
200355232f09SEwan Crawford 
20048b244e21SEwan Crawford     assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() && alloc->element.type_vec_size.isValid()
20058b244e21SEwan Crawford            && alloc->size.isValid() && alloc->element.datum_size.isValid() && "Allocation information not available");
200655232f09SEwan Crawford 
200755232f09SEwan Crawford     // Check we can read from file
200855232f09SEwan Crawford     FileSpec file(filename, true);
200955232f09SEwan Crawford     if (!file.Exists())
201055232f09SEwan Crawford     {
201155232f09SEwan Crawford         strm.Printf("Error: File %s does not exist", filename);
201255232f09SEwan Crawford         strm.EOL();
201355232f09SEwan Crawford         return false;
201455232f09SEwan Crawford     }
201555232f09SEwan Crawford 
201655232f09SEwan Crawford     if (!file.Readable())
201755232f09SEwan Crawford     {
201855232f09SEwan Crawford         strm.Printf("Error: File %s does not have readable permissions", filename);
201955232f09SEwan Crawford         strm.EOL();
202055232f09SEwan Crawford         return false;
202155232f09SEwan Crawford     }
202255232f09SEwan Crawford 
202355232f09SEwan Crawford     // Read file into data buffer
202455232f09SEwan Crawford     DataBufferSP data_sp(file.ReadFileContents());
202555232f09SEwan Crawford 
202655232f09SEwan Crawford     // Cast start of buffer to FileHeader and use pointer to read metadata
202755232f09SEwan Crawford     void* file_buffer = data_sp->GetBytes();
202855232f09SEwan Crawford     const AllocationDetails::FileHeader* head = static_cast<AllocationDetails::FileHeader*>(file_buffer);
202955232f09SEwan Crawford 
203055232f09SEwan Crawford     // Advance buffer past header
203155232f09SEwan Crawford     file_buffer = static_cast<uint8_t*>(file_buffer) + head->hdr_size;
203255232f09SEwan Crawford 
203355232f09SEwan Crawford     if (log)
203455232f09SEwan Crawford         log->Printf("RenderScriptRuntime::LoadAllocation - header type %u, element size %u",
203555232f09SEwan Crawford                     head->type, head->element_size);
203655232f09SEwan Crawford 
203755232f09SEwan Crawford     // Check if the target allocation and file both have the same number of bytes for an Element
20388b244e21SEwan Crawford     if (*alloc->element.datum_size.get() != head->element_size)
203955232f09SEwan Crawford     {
204055232f09SEwan Crawford         strm.Printf("Warning: Mismatched Element sizes - file %u bytes, allocation %u bytes",
20418b244e21SEwan Crawford                     head->element_size, *alloc->element.datum_size.get());
204255232f09SEwan Crawford         strm.EOL();
204355232f09SEwan Crawford     }
204455232f09SEwan Crawford 
204555232f09SEwan Crawford     // Check if the target allocation and file both have the same integral type
20468b244e21SEwan Crawford     const unsigned int type = static_cast<unsigned int>(*alloc->element.type.get());
204755232f09SEwan Crawford     if (type != head->type)
204855232f09SEwan Crawford     {
204955232f09SEwan Crawford         const char* file_type_cstr = AllocationDetails::RsDataTypeToString[head->type][0];
205055232f09SEwan Crawford         const char* alloc_type_cstr = AllocationDetails::RsDataTypeToString[type][0];
205155232f09SEwan Crawford 
205255232f09SEwan Crawford         strm.Printf("Warning: Mismatched Types - file '%s' type, allocation '%s' type",
205355232f09SEwan Crawford                     file_type_cstr, alloc_type_cstr);
205455232f09SEwan Crawford         strm.EOL();
205555232f09SEwan Crawford     }
205655232f09SEwan Crawford 
205755232f09SEwan Crawford     // Calculate size of allocation data in file
205855232f09SEwan Crawford     size_t length = data_sp->GetByteSize() - head->hdr_size;
205955232f09SEwan Crawford 
206055232f09SEwan Crawford     // Check if the target allocation and file both have the same total data size.
206155232f09SEwan Crawford     const unsigned int alloc_size = *alloc->size.get();
206255232f09SEwan Crawford     if (alloc_size != length)
206355232f09SEwan Crawford     {
206455232f09SEwan Crawford         strm.Printf("Warning: Mismatched allocation sizes - file 0x%" PRIx64 " bytes, allocation 0x%x bytes",
2065eba832beSJason Molenda                     (uint64_t) length, alloc_size);
206655232f09SEwan Crawford         strm.EOL();
206755232f09SEwan Crawford         length = alloc_size < length ? alloc_size : length; // Set length to copy to minimum
206855232f09SEwan Crawford     }
206955232f09SEwan Crawford 
207055232f09SEwan Crawford     // Copy file data from our buffer into the target allocation.
207155232f09SEwan Crawford     lldb::addr_t alloc_data = *alloc->data_ptr.get();
207255232f09SEwan Crawford     Error error;
207355232f09SEwan Crawford     size_t bytes_written = GetProcess()->WriteMemory(alloc_data, file_buffer, length, error);
207455232f09SEwan Crawford     if (!error.Success() || bytes_written != length)
207555232f09SEwan Crawford     {
207655232f09SEwan Crawford         strm.Printf("Error: Couldn't write data to allocation %s", error.AsCString());
207755232f09SEwan Crawford         strm.EOL();
207855232f09SEwan Crawford         return false;
207955232f09SEwan Crawford     }
208055232f09SEwan Crawford 
208155232f09SEwan Crawford     strm.Printf("Contents of file '%s' read into allocation %u", filename, alloc->id);
208255232f09SEwan Crawford     strm.EOL();
208355232f09SEwan Crawford 
208455232f09SEwan Crawford     return true;
208555232f09SEwan Crawford }
208655232f09SEwan Crawford 
208755232f09SEwan Crawford // Function copies allocation contents into a binary file.
208855232f09SEwan Crawford // This file can then be loaded later into a different allocation.
208955232f09SEwan Crawford // There is a header, FileHeader, before the allocation data containing meta-data.
209055232f09SEwan Crawford bool
209155232f09SEwan Crawford RenderScriptRuntime::SaveAllocation(Stream &strm, const uint32_t alloc_id, const char* filename, StackFrame* frame_ptr)
209255232f09SEwan Crawford {
209355232f09SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
209455232f09SEwan Crawford 
209555232f09SEwan Crawford     // Find allocation with the given id
209655232f09SEwan Crawford     AllocationDetails* alloc = FindAllocByID(strm, alloc_id);
209755232f09SEwan Crawford     if (!alloc)
209855232f09SEwan Crawford         return false;
209955232f09SEwan Crawford 
210055232f09SEwan Crawford     if (log)
210155232f09SEwan Crawford         log->Printf("RenderScriptRuntime::SaveAllocation - Found allocation 0x%" PRIx64, *alloc->address.get());
210255232f09SEwan Crawford 
210355232f09SEwan Crawford      // JIT all the allocation details
21048b59062aSEwan Crawford     if (alloc->shouldRefresh())
210555232f09SEwan Crawford     {
210655232f09SEwan Crawford         if (log)
210755232f09SEwan Crawford             log->Printf("RenderScriptRuntime::SaveAllocation - Allocation details not calculated yet, jitting info");
210855232f09SEwan Crawford 
210955232f09SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
211055232f09SEwan Crawford         {
211155232f09SEwan Crawford             if (log)
211255232f09SEwan Crawford                 log->Printf("RenderScriptRuntime::SaveAllocation - Couldn't JIT allocation details");
21134cfc9198SSylvestre Ledru             return false;
211455232f09SEwan Crawford         }
211555232f09SEwan Crawford     }
211655232f09SEwan Crawford 
21178b244e21SEwan Crawford     assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() && alloc->element.type_vec_size.isValid() && alloc->element.datum_size.get()
21188b244e21SEwan Crawford            && alloc->element.type_kind.isValid() && alloc->dimension.isValid() && "Allocation information not available");
211955232f09SEwan Crawford 
212055232f09SEwan Crawford     // Check we can create writable file
212155232f09SEwan Crawford     FileSpec file_spec(filename, true);
212255232f09SEwan Crawford     File file(file_spec, File::eOpenOptionWrite | File::eOpenOptionCanCreate | File::eOpenOptionTruncate);
212355232f09SEwan Crawford     if (!file)
212455232f09SEwan Crawford     {
212555232f09SEwan Crawford         strm.Printf("Error: Failed to open '%s' for writing", filename);
212655232f09SEwan Crawford         strm.EOL();
212755232f09SEwan Crawford         return false;
212855232f09SEwan Crawford     }
212955232f09SEwan Crawford 
213055232f09SEwan Crawford     // Read allocation into buffer of heap memory
213155232f09SEwan Crawford     const std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
213255232f09SEwan Crawford     if (!buffer)
213355232f09SEwan Crawford     {
213455232f09SEwan Crawford         strm.Printf("Error: Couldn't read allocation data into buffer");
213555232f09SEwan Crawford         strm.EOL();
213655232f09SEwan Crawford         return false;
213755232f09SEwan Crawford     }
213855232f09SEwan Crawford 
213955232f09SEwan Crawford     // Create the file header
214055232f09SEwan Crawford     AllocationDetails::FileHeader head;
214155232f09SEwan Crawford     head.ident[0] = 'R'; head.ident[1] = 'S'; head.ident[2] = 'A'; head.ident[3] = 'D';
214255232f09SEwan Crawford     head.hdr_size = static_cast<uint16_t>(sizeof(AllocationDetails::FileHeader));
21438b244e21SEwan Crawford     head.type = static_cast<uint16_t>(*alloc->element.type.get());
21448b244e21SEwan Crawford     head.kind = static_cast<uint32_t>(*alloc->element.type_kind.get());
21452d62328aSEwan Crawford     head.dims[0] = static_cast<uint32_t>(alloc->dimension.get()->dim_1);
21462d62328aSEwan Crawford     head.dims[1] = static_cast<uint32_t>(alloc->dimension.get()->dim_2);
21472d62328aSEwan Crawford     head.dims[2] = static_cast<uint32_t>(alloc->dimension.get()->dim_3);
21488b244e21SEwan Crawford     head.element_size = static_cast<uint32_t>(*alloc->element.datum_size.get());
214955232f09SEwan Crawford 
215055232f09SEwan Crawford     // Write the file header
215155232f09SEwan Crawford     size_t num_bytes = sizeof(AllocationDetails::FileHeader);
215255232f09SEwan Crawford     Error err = file.Write(static_cast<const void*>(&head), num_bytes);
215355232f09SEwan Crawford     if (!err.Success())
215455232f09SEwan Crawford     {
215555232f09SEwan Crawford         strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), filename);
215655232f09SEwan Crawford         strm.EOL();
215755232f09SEwan Crawford         return false;
215855232f09SEwan Crawford     }
215955232f09SEwan Crawford 
216055232f09SEwan Crawford     // Write allocation data to file
216155232f09SEwan Crawford     num_bytes = static_cast<size_t>(*alloc->size.get());
216255232f09SEwan Crawford     if (log)
2163eba832beSJason Molenda         log->Printf("RenderScriptRuntime::SaveAllocation - Writing 0x%" PRIx64 " bytes from %p", (uint64_t) num_bytes, buffer.get());
216455232f09SEwan Crawford 
216555232f09SEwan Crawford     err = file.Write(buffer.get(), num_bytes);
216655232f09SEwan Crawford     if (!err.Success())
216755232f09SEwan Crawford     {
216855232f09SEwan Crawford         strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), filename);
216955232f09SEwan Crawford         strm.EOL();
217055232f09SEwan Crawford         return false;
217155232f09SEwan Crawford     }
217255232f09SEwan Crawford 
217355232f09SEwan Crawford     strm.Printf("Allocation written to file '%s'", filename);
217455232f09SEwan Crawford     strm.EOL();
217515f2bd95SEwan Crawford     return true;
217615f2bd95SEwan Crawford }
217715f2bd95SEwan Crawford 
21785ec532a9SColin Riley bool
21795ec532a9SColin Riley RenderScriptRuntime::LoadModule(const lldb::ModuleSP &module_sp)
21805ec532a9SColin Riley {
21814640cde1SColin Riley     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
21824640cde1SColin Riley 
21835ec532a9SColin Riley     if (module_sp)
21845ec532a9SColin Riley     {
21855ec532a9SColin Riley         for (const auto &rs_module : m_rsmodules)
21865ec532a9SColin Riley         {
21874640cde1SColin Riley             if (rs_module->m_module == module_sp)
21887dc7771cSEwan Crawford             {
21897dc7771cSEwan Crawford                 // Check if the user has enabled automatically breaking on
21907dc7771cSEwan Crawford                 // all RS kernels.
21917dc7771cSEwan Crawford                 if (m_breakAllKernels)
21927dc7771cSEwan Crawford                     BreakOnModuleKernels(rs_module);
21937dc7771cSEwan Crawford 
21945ec532a9SColin Riley                 return false;
21955ec532a9SColin Riley             }
21967dc7771cSEwan Crawford         }
2197ef20b08fSColin Riley         bool module_loaded = false;
2198ef20b08fSColin Riley         switch (GetModuleKind(module_sp))
2199ef20b08fSColin Riley         {
2200ef20b08fSColin Riley             case eModuleKindKernelObj:
2201ef20b08fSColin Riley             {
22024640cde1SColin Riley                 RSModuleDescriptorSP module_desc;
22034640cde1SColin Riley                 module_desc.reset(new RSModuleDescriptor(module_sp));
22044640cde1SColin Riley                 if (module_desc->ParseRSInfo())
22055ec532a9SColin Riley                 {
22065ec532a9SColin Riley                     m_rsmodules.push_back(module_desc);
2207ef20b08fSColin Riley                     module_loaded = true;
22085ec532a9SColin Riley                 }
22094640cde1SColin Riley                 if (module_loaded)
22104640cde1SColin Riley                 {
22114640cde1SColin Riley                     FixupScriptDetails(module_desc);
22124640cde1SColin Riley                 }
2213ef20b08fSColin Riley                 break;
2214ef20b08fSColin Riley             }
2215ef20b08fSColin Riley             case eModuleKindDriver:
22164640cde1SColin Riley             {
22174640cde1SColin Riley                 if (!m_libRSDriver)
22184640cde1SColin Riley                 {
22194640cde1SColin Riley                     m_libRSDriver = module_sp;
22204640cde1SColin Riley                     LoadRuntimeHooks(m_libRSDriver, RenderScriptRuntime::eModuleKindDriver);
22214640cde1SColin Riley                 }
22224640cde1SColin Riley                 break;
22234640cde1SColin Riley             }
2224ef20b08fSColin Riley             case eModuleKindImpl:
22254640cde1SColin Riley             {
22264640cde1SColin Riley                 m_libRSCpuRef = module_sp;
22274640cde1SColin Riley                 break;
22284640cde1SColin Riley             }
2229ef20b08fSColin Riley             case eModuleKindLibRS:
22304640cde1SColin Riley             {
22314640cde1SColin Riley                 if (!m_libRS)
22324640cde1SColin Riley                 {
22334640cde1SColin Riley                     m_libRS = module_sp;
22344640cde1SColin Riley                     static ConstString gDbgPresentStr("gDebuggerPresent");
22354640cde1SColin Riley                     const Symbol* debug_present = m_libRS->FindFirstSymbolWithNameAndType(gDbgPresentStr, eSymbolTypeData);
22364640cde1SColin Riley                     if (debug_present)
22374640cde1SColin Riley                     {
22384640cde1SColin Riley                         Error error;
22394640cde1SColin Riley                         uint32_t flag = 0x00000001U;
22404640cde1SColin Riley                         Target &target = GetProcess()->GetTarget();
2241358cf1eaSGreg Clayton                         addr_t addr = debug_present->GetLoadAddress(&target);
22424640cde1SColin Riley                         GetProcess()->WriteMemory(addr, &flag, sizeof(flag), error);
22434640cde1SColin Riley                         if(error.Success())
22444640cde1SColin Riley                         {
22454640cde1SColin Riley                             if (log)
22464640cde1SColin Riley                                 log->Printf ("RenderScriptRuntime::LoadModule - Debugger present flag set on debugee");
22474640cde1SColin Riley 
22484640cde1SColin Riley                             m_debuggerPresentFlagged = true;
22494640cde1SColin Riley                         }
22504640cde1SColin Riley                         else if (log)
22514640cde1SColin Riley                         {
22524640cde1SColin Riley                             log->Printf ("RenderScriptRuntime::LoadModule - Error writing debugger present flags '%s' ", error.AsCString());
22534640cde1SColin Riley                         }
22544640cde1SColin Riley                     }
22554640cde1SColin Riley                     else if (log)
22564640cde1SColin Riley                     {
22574640cde1SColin Riley                         log->Printf ("RenderScriptRuntime::LoadModule - Error writing debugger present flags - symbol not found");
22584640cde1SColin Riley                     }
22594640cde1SColin Riley                 }
22604640cde1SColin Riley                 break;
22614640cde1SColin Riley             }
2262ef20b08fSColin Riley             default:
2263ef20b08fSColin Riley                 break;
2264ef20b08fSColin Riley         }
2265ef20b08fSColin Riley         if (module_loaded)
2266ef20b08fSColin Riley             Update();
2267ef20b08fSColin Riley         return module_loaded;
22685ec532a9SColin Riley     }
22695ec532a9SColin Riley     return false;
22705ec532a9SColin Riley }
22715ec532a9SColin Riley 
2272ef20b08fSColin Riley void
2273ef20b08fSColin Riley RenderScriptRuntime::Update()
2274ef20b08fSColin Riley {
2275ef20b08fSColin Riley     if (m_rsmodules.size() > 0)
2276ef20b08fSColin Riley     {
2277ef20b08fSColin Riley         if (!m_initiated)
2278ef20b08fSColin Riley         {
2279ef20b08fSColin Riley             Initiate();
2280ef20b08fSColin Riley         }
2281ef20b08fSColin Riley     }
2282ef20b08fSColin Riley }
2283ef20b08fSColin Riley 
22845ec532a9SColin Riley // The maximum line length of an .rs.info packet
22855ec532a9SColin Riley #define MAXLINE 500
22865ec532a9SColin Riley 
22875ec532a9SColin Riley // The .rs.info symbol in renderscript modules contains a string which needs to be parsed.
22885ec532a9SColin Riley // The string is basic and is parsed on a line by line basis.
22895ec532a9SColin Riley bool
22905ec532a9SColin Riley RSModuleDescriptor::ParseRSInfo()
22915ec532a9SColin Riley {
22925ec532a9SColin Riley     const Symbol *info_sym = m_module->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData);
22935ec532a9SColin Riley     if (info_sym)
22945ec532a9SColin Riley     {
2295358cf1eaSGreg Clayton         const addr_t addr = info_sym->GetAddressRef().GetFileAddress();
22965ec532a9SColin Riley         const addr_t size = info_sym->GetByteSize();
22975ec532a9SColin Riley         const FileSpec fs = m_module->GetFileSpec();
22985ec532a9SColin Riley 
22995ec532a9SColin Riley         DataBufferSP buffer = fs.ReadFileContents(addr, size);
23005ec532a9SColin Riley 
23015ec532a9SColin Riley         if (!buffer)
23025ec532a9SColin Riley             return false;
23035ec532a9SColin Riley 
23045ec532a9SColin Riley         std::string info((const char *)buffer->GetBytes());
23055ec532a9SColin Riley 
23065ec532a9SColin Riley         std::vector<std::string> info_lines;
2307e8433cc1SBruce Mitchener         size_t lpos = info.find('\n');
23085ec532a9SColin Riley         while (lpos != std::string::npos)
23095ec532a9SColin Riley         {
23105ec532a9SColin Riley             info_lines.push_back(info.substr(0, lpos));
23115ec532a9SColin Riley             info = info.substr(lpos + 1);
2312e8433cc1SBruce Mitchener             lpos = info.find('\n');
23135ec532a9SColin Riley         }
23145ec532a9SColin Riley         size_t offset = 0;
23155ec532a9SColin Riley         while (offset < info_lines.size())
23165ec532a9SColin Riley         {
23175ec532a9SColin Riley             std::string line = info_lines[offset];
23185ec532a9SColin Riley             // Parse directives
23195ec532a9SColin Riley             uint32_t numDefns = 0;
23205ec532a9SColin Riley             if (sscanf(line.c_str(), "exportVarCount: %u", &numDefns) == 1)
23215ec532a9SColin Riley             {
23225ec532a9SColin Riley                 while (numDefns--)
23234640cde1SColin Riley                     m_globals.push_back(RSGlobalDescriptor(this, info_lines[++offset].c_str()));
23245ec532a9SColin Riley             }
23255ec532a9SColin Riley             else if (sscanf(line.c_str(), "exportFuncCount: %u", &numDefns) == 1)
23265ec532a9SColin Riley             {
23275ec532a9SColin Riley             }
23285ec532a9SColin Riley             else if (sscanf(line.c_str(), "exportForEachCount: %u", &numDefns) == 1)
23295ec532a9SColin Riley             {
23305ec532a9SColin Riley                 char name[MAXLINE];
23315ec532a9SColin Riley                 while (numDefns--)
23325ec532a9SColin Riley                 {
23335ec532a9SColin Riley                     uint32_t slot = 0;
23345ec532a9SColin Riley                     name[0] = '\0';
23355ec532a9SColin Riley                     if (sscanf(info_lines[++offset].c_str(), "%u - %s", &slot, &name[0]) == 2)
23365ec532a9SColin Riley                     {
23374640cde1SColin Riley                         m_kernels.push_back(RSKernelDescriptor(this, name, slot));
23384640cde1SColin Riley                     }
23394640cde1SColin Riley                 }
23404640cde1SColin Riley             }
23414640cde1SColin Riley             else if (sscanf(line.c_str(), "pragmaCount: %u", &numDefns) == 1)
23424640cde1SColin Riley             {
23434640cde1SColin Riley                 char name[MAXLINE];
23444640cde1SColin Riley                 char value[MAXLINE];
23454640cde1SColin Riley                 while (numDefns--)
23464640cde1SColin Riley                 {
23474640cde1SColin Riley                     name[0] = '\0';
23484640cde1SColin Riley                     value[0] = '\0';
23494640cde1SColin Riley                     if (sscanf(info_lines[++offset].c_str(), "%s - %s", &name[0], &value[0]) != 0
23504640cde1SColin Riley                         && (name[0] != '\0'))
23514640cde1SColin Riley                     {
23524640cde1SColin Riley                         m_pragmas[std::string(name)] = value;
23535ec532a9SColin Riley                     }
23545ec532a9SColin Riley                 }
23555ec532a9SColin Riley             }
23565ec532a9SColin Riley             else if (sscanf(line.c_str(), "objectSlotCount: %u", &numDefns) == 1)
23575ec532a9SColin Riley             {
23585ec532a9SColin Riley             }
23595ec532a9SColin Riley 
23605ec532a9SColin Riley             offset++;
23615ec532a9SColin Riley         }
23625ec532a9SColin Riley         return m_kernels.size() > 0;
23635ec532a9SColin Riley     }
23645ec532a9SColin Riley     return false;
23655ec532a9SColin Riley }
23665ec532a9SColin Riley 
23675ec532a9SColin Riley bool
23685ec532a9SColin Riley RenderScriptRuntime::ProbeModules(const ModuleList module_list)
23695ec532a9SColin Riley {
23705ec532a9SColin Riley     bool rs_found = false;
23715ec532a9SColin Riley     size_t num_modules = module_list.GetSize();
23725ec532a9SColin Riley     for (size_t i = 0; i < num_modules; i++)
23735ec532a9SColin Riley     {
23745ec532a9SColin Riley         auto module = module_list.GetModuleAtIndex(i);
23755ec532a9SColin Riley         rs_found |= LoadModule(module);
23765ec532a9SColin Riley     }
23775ec532a9SColin Riley     return rs_found;
23785ec532a9SColin Riley }
23795ec532a9SColin Riley 
23805ec532a9SColin Riley void
23814640cde1SColin Riley RenderScriptRuntime::Status(Stream &strm) const
23824640cde1SColin Riley {
23834640cde1SColin Riley     if (m_libRS)
23844640cde1SColin Riley     {
23854640cde1SColin Riley         strm.Printf("Runtime Library discovered.");
23864640cde1SColin Riley         strm.EOL();
23874640cde1SColin Riley     }
23884640cde1SColin Riley     if (m_libRSDriver)
23894640cde1SColin Riley     {
23904640cde1SColin Riley         strm.Printf("Runtime Driver discovered.");
23914640cde1SColin Riley         strm.EOL();
23924640cde1SColin Riley     }
23934640cde1SColin Riley     if (m_libRSCpuRef)
23944640cde1SColin Riley     {
23954640cde1SColin Riley         strm.Printf("CPU Reference Implementation discovered.");
23964640cde1SColin Riley         strm.EOL();
23974640cde1SColin Riley     }
23984640cde1SColin Riley 
23994640cde1SColin Riley     if (m_runtimeHooks.size())
24004640cde1SColin Riley     {
24014640cde1SColin Riley         strm.Printf("Runtime functions hooked:");
24024640cde1SColin Riley         strm.EOL();
24034640cde1SColin Riley         for (auto b : m_runtimeHooks)
24044640cde1SColin Riley         {
24054640cde1SColin Riley             strm.Indent(b.second->defn->name);
24064640cde1SColin Riley             strm.EOL();
24074640cde1SColin Riley         }
24084640cde1SColin Riley     }
24094640cde1SColin Riley     else
24104640cde1SColin Riley     {
24114640cde1SColin Riley         strm.Printf("Runtime is not hooked.");
24124640cde1SColin Riley         strm.EOL();
24134640cde1SColin Riley     }
24144640cde1SColin Riley }
24154640cde1SColin Riley 
24164640cde1SColin Riley void
24174640cde1SColin Riley RenderScriptRuntime::DumpContexts(Stream &strm) const
24184640cde1SColin Riley {
24194640cde1SColin Riley     strm.Printf("Inferred RenderScript Contexts:");
24204640cde1SColin Riley     strm.EOL();
24214640cde1SColin Riley     strm.IndentMore();
24224640cde1SColin Riley 
24234640cde1SColin Riley     std::map<addr_t, uint64_t> contextReferences;
24244640cde1SColin Riley 
242578f339d1SEwan Crawford     // Iterate over all of the currently discovered scripts.
242678f339d1SEwan Crawford     // Note: We cant push or pop from m_scripts inside this loop or it may invalidate script.
24274640cde1SColin Riley     for (const auto & script : m_scripts)
24284640cde1SColin Riley     {
242978f339d1SEwan Crawford         if (!script->context.isValid())
243078f339d1SEwan Crawford             continue;
243178f339d1SEwan Crawford         lldb::addr_t context = *script->context;
243278f339d1SEwan Crawford 
243378f339d1SEwan Crawford         if (contextReferences.find(context) != contextReferences.end())
24344640cde1SColin Riley         {
243578f339d1SEwan Crawford             contextReferences[context]++;
24364640cde1SColin Riley         }
24374640cde1SColin Riley         else
24384640cde1SColin Riley         {
243978f339d1SEwan Crawford             contextReferences[context] = 1;
24404640cde1SColin Riley         }
24414640cde1SColin Riley     }
24424640cde1SColin Riley 
24434640cde1SColin Riley     for (const auto& cRef : contextReferences)
24444640cde1SColin Riley     {
24454640cde1SColin Riley         strm.Printf("Context 0x%" PRIx64 ": %" PRIu64 " script instances", cRef.first, cRef.second);
24464640cde1SColin Riley         strm.EOL();
24474640cde1SColin Riley     }
24484640cde1SColin Riley     strm.IndentLess();
24494640cde1SColin Riley }
24504640cde1SColin Riley 
24514640cde1SColin Riley void
24524640cde1SColin Riley RenderScriptRuntime::DumpKernels(Stream &strm) const
24534640cde1SColin Riley {
24544640cde1SColin Riley     strm.Printf("RenderScript Kernels:");
24554640cde1SColin Riley     strm.EOL();
24564640cde1SColin Riley     strm.IndentMore();
24574640cde1SColin Riley     for (const auto &module : m_rsmodules)
24584640cde1SColin Riley     {
24594640cde1SColin Riley         strm.Printf("Resource '%s':",module->m_resname.c_str());
24604640cde1SColin Riley         strm.EOL();
24614640cde1SColin Riley         for (const auto &kernel : module->m_kernels)
24624640cde1SColin Riley         {
24634640cde1SColin Riley             strm.Indent(kernel.m_name.AsCString());
24644640cde1SColin Riley             strm.EOL();
24654640cde1SColin Riley         }
24664640cde1SColin Riley     }
24674640cde1SColin Riley     strm.IndentLess();
24684640cde1SColin Riley }
24694640cde1SColin Riley 
2470a0f08674SEwan Crawford RenderScriptRuntime::AllocationDetails*
2471a0f08674SEwan Crawford RenderScriptRuntime::FindAllocByID(Stream &strm, const uint32_t alloc_id)
2472a0f08674SEwan Crawford {
2473a0f08674SEwan Crawford     AllocationDetails* alloc = nullptr;
2474a0f08674SEwan Crawford 
2475a0f08674SEwan Crawford     // See if we can find allocation using id as an index;
2476a0f08674SEwan Crawford     if (alloc_id <= m_allocations.size() && alloc_id != 0
2477a0f08674SEwan Crawford         && m_allocations[alloc_id-1]->id == alloc_id)
2478a0f08674SEwan Crawford     {
2479a0f08674SEwan Crawford         alloc = m_allocations[alloc_id-1].get();
2480a0f08674SEwan Crawford         return alloc;
2481a0f08674SEwan Crawford     }
2482a0f08674SEwan Crawford 
2483a0f08674SEwan Crawford     // Fallback to searching
2484a0f08674SEwan Crawford     for (const auto & a : m_allocations)
2485a0f08674SEwan Crawford     {
2486a0f08674SEwan Crawford        if (a->id == alloc_id)
2487a0f08674SEwan Crawford        {
2488a0f08674SEwan Crawford            alloc = a.get();
2489a0f08674SEwan Crawford            break;
2490a0f08674SEwan Crawford        }
2491a0f08674SEwan Crawford     }
2492a0f08674SEwan Crawford 
2493a0f08674SEwan Crawford     if (alloc == nullptr)
2494a0f08674SEwan Crawford     {
2495a0f08674SEwan Crawford         strm.Printf("Error: Couldn't find allocation with id matching %u", alloc_id);
2496a0f08674SEwan Crawford         strm.EOL();
2497a0f08674SEwan Crawford     }
2498a0f08674SEwan Crawford 
2499a0f08674SEwan Crawford     return alloc;
2500a0f08674SEwan Crawford }
2501a0f08674SEwan Crawford 
2502a0f08674SEwan Crawford // Prints the contents of an allocation to the output stream, which may be a file
2503a0f08674SEwan Crawford bool
2504a0f08674SEwan Crawford RenderScriptRuntime::DumpAllocation(Stream &strm, StackFrame* frame_ptr, const uint32_t id)
2505a0f08674SEwan Crawford {
2506a0f08674SEwan Crawford     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2507a0f08674SEwan Crawford 
2508a0f08674SEwan Crawford     // Check we can find the desired allocation
2509a0f08674SEwan Crawford     AllocationDetails* alloc = FindAllocByID(strm, id);
2510a0f08674SEwan Crawford     if (!alloc)
2511a0f08674SEwan Crawford         return false; // FindAllocByID() will print error message for us here
2512a0f08674SEwan Crawford 
2513a0f08674SEwan Crawford     if (log)
2514a0f08674SEwan Crawford         log->Printf("RenderScriptRuntime::DumpAllocation - Found allocation 0x%" PRIx64, *alloc->address.get());
2515a0f08674SEwan Crawford 
2516a0f08674SEwan Crawford     // Check we have information about the allocation, if not calculate it
25178b59062aSEwan Crawford     if (alloc->shouldRefresh())
2518a0f08674SEwan Crawford     {
2519a0f08674SEwan Crawford         if (log)
2520a0f08674SEwan Crawford             log->Printf("RenderScriptRuntime::DumpAllocation - Allocation details not calculated yet, jitting info");
2521a0f08674SEwan Crawford 
2522a0f08674SEwan Crawford         // JIT all the allocation information
2523a0f08674SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
2524a0f08674SEwan Crawford         {
2525a0f08674SEwan Crawford             strm.Printf("Error: Couldn't JIT allocation details");
2526a0f08674SEwan Crawford             strm.EOL();
2527a0f08674SEwan Crawford             return false;
2528a0f08674SEwan Crawford         }
2529a0f08674SEwan Crawford     }
2530a0f08674SEwan Crawford 
2531a0f08674SEwan Crawford     // Establish format and size of each data element
25328b244e21SEwan Crawford     const unsigned int vec_size = *alloc->element.type_vec_size.get();
25338b244e21SEwan Crawford     const Element::DataType type = *alloc->element.type.get();
2534a0f08674SEwan Crawford 
25358b244e21SEwan Crawford     assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_BOOLEAN
2536a0f08674SEwan Crawford                                                    && "Invalid allocation type");
2537a0f08674SEwan Crawford 
2538a0f08674SEwan Crawford     lldb::Format format = vec_size == 1 ? static_cast<lldb::Format>(AllocationDetails::RSTypeToFormat[type][eFormatSingle])
2539a0f08674SEwan Crawford                                         : static_cast<lldb::Format>(AllocationDetails::RSTypeToFormat[type][eFormatVector]);
2540a0f08674SEwan Crawford 
25418b244e21SEwan Crawford     const unsigned int data_size = *alloc->element.datum_size.get();
2542a0f08674SEwan Crawford 
2543a0f08674SEwan Crawford     if (log)
25448b244e21SEwan Crawford         log->Printf("RenderScriptRuntime::DumpAllocation - Element size %u bytes, including padding", data_size);
2545a0f08674SEwan Crawford 
254655232f09SEwan Crawford     // Allocate a buffer to copy data into
254755232f09SEwan Crawford     std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
254855232f09SEwan Crawford     if (!buffer)
254955232f09SEwan Crawford     {
255055232f09SEwan Crawford         strm.Printf("Error: Couldn't allocate a read allocation data into memory");
255155232f09SEwan Crawford         strm.EOL();
255255232f09SEwan Crawford         return false;
255355232f09SEwan Crawford     }
255455232f09SEwan Crawford 
2555a0f08674SEwan Crawford     // Calculate stride between rows as there may be padding at end of rows since
2556a0f08674SEwan Crawford     // allocated memory is 16-byte aligned
2557a0f08674SEwan Crawford     if (!alloc->stride.isValid())
2558a0f08674SEwan Crawford     {
2559a0f08674SEwan Crawford         if (alloc->dimension.get()->dim_2 == 0) // We only have one dimension
2560a0f08674SEwan Crawford             alloc->stride = 0;
2561a0f08674SEwan Crawford         else if (!JITAllocationStride(alloc, frame_ptr))
2562a0f08674SEwan Crawford         {
2563a0f08674SEwan Crawford             strm.Printf("Error: Couldn't calculate allocation row stride");
2564a0f08674SEwan Crawford             strm.EOL();
2565a0f08674SEwan Crawford             return false;
2566a0f08674SEwan Crawford         }
2567a0f08674SEwan Crawford     }
2568a0f08674SEwan Crawford     const unsigned int stride = *alloc->stride.get();
25698b244e21SEwan Crawford     const unsigned int size = *alloc->size.get(); // Size of whole allocation
25708b244e21SEwan Crawford     const unsigned int padding = alloc->element.padding.isValid() ? *alloc->element.padding.get() : 0;
2571a0f08674SEwan Crawford     if (log)
25728b244e21SEwan Crawford         log->Printf("RenderScriptRuntime::DumpAllocation - stride %u bytes, size %u bytes, padding %u", stride, size, padding);
2573a0f08674SEwan Crawford 
2574a0f08674SEwan Crawford     // Find dimensions used to index loops, so need to be non-zero
2575a0f08674SEwan Crawford     unsigned int dim_x = alloc->dimension.get()->dim_1;
2576a0f08674SEwan Crawford     dim_x = dim_x == 0 ? 1 : dim_x;
2577a0f08674SEwan Crawford 
2578a0f08674SEwan Crawford     unsigned int dim_y = alloc->dimension.get()->dim_2;
2579a0f08674SEwan Crawford     dim_y = dim_y == 0 ? 1 : dim_y;
2580a0f08674SEwan Crawford 
2581a0f08674SEwan Crawford     unsigned int dim_z = alloc->dimension.get()->dim_3;
2582a0f08674SEwan Crawford     dim_z = dim_z == 0 ? 1 : dim_z;
2583a0f08674SEwan Crawford 
258455232f09SEwan Crawford     // Use data extractor to format output
258555232f09SEwan Crawford     const uint32_t archByteSize = GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
258655232f09SEwan Crawford     DataExtractor alloc_data(buffer.get(), size, GetProcess()->GetByteOrder(), archByteSize);
258755232f09SEwan Crawford 
2588a0f08674SEwan Crawford     unsigned int offset = 0;   // Offset in buffer to next element to be printed
2589a0f08674SEwan Crawford     unsigned int prev_row = 0; // Offset to the start of the previous row
2590a0f08674SEwan Crawford 
2591a0f08674SEwan Crawford     // Iterate over allocation dimensions, printing results to user
2592a0f08674SEwan Crawford     strm.Printf("Data (X, Y, Z):");
2593a0f08674SEwan Crawford     for (unsigned int z = 0; z < dim_z; ++z)
2594a0f08674SEwan Crawford     {
2595a0f08674SEwan Crawford         for (unsigned int y = 0; y < dim_y; ++y)
2596a0f08674SEwan Crawford         {
2597a0f08674SEwan Crawford             // Use stride to index start of next row.
2598a0f08674SEwan Crawford             if (!(y==0 && z==0))
2599a0f08674SEwan Crawford                 offset = prev_row + stride;
2600a0f08674SEwan Crawford             prev_row = offset;
2601a0f08674SEwan Crawford 
2602a0f08674SEwan Crawford             // Print each element in the row individually
2603a0f08674SEwan Crawford             for (unsigned int x = 0; x < dim_x; ++x)
2604a0f08674SEwan Crawford             {
2605a0f08674SEwan Crawford                 strm.Printf("\n(%u, %u, %u) = ", x, y, z);
26068b244e21SEwan Crawford                 if ((type == Element::RS_TYPE_NONE) && (alloc->element.children.size() > 0) &&
2607fe06b5adSAdrian McCarthy                     (alloc->element.type_name != Element::GetFallbackStructName()))
26088b244e21SEwan Crawford                 {
26098b244e21SEwan Crawford                     // Here we are dumping an Element of struct type.
26108b244e21SEwan Crawford                     // This is done using expression evaluation with the name of the struct type and pointer to element.
26118b244e21SEwan Crawford 
26128b244e21SEwan Crawford                     // Don't print the name of the resulting expression, since this will be '$[0-9]+'
26138b244e21SEwan Crawford                     DumpValueObjectOptions expr_options;
26148b244e21SEwan Crawford                     expr_options.SetHideName(true);
26158b244e21SEwan Crawford 
26168b244e21SEwan Crawford                     // Setup expression as derefrencing a pointer cast to element address.
2617b1651b8dSEwan Crawford                     char expr_char_buffer[jit_max_expr_size];
2618b1651b8dSEwan Crawford                     int chars_written = snprintf(expr_char_buffer, jit_max_expr_size, "*(%s*) 0x%" PRIx64,
26198b244e21SEwan Crawford                                         alloc->element.type_name.AsCString(), *alloc->data_ptr.get() + offset);
26208b244e21SEwan Crawford 
2621b1651b8dSEwan Crawford                     if (chars_written < 0 || chars_written >= jit_max_expr_size)
26228b244e21SEwan Crawford                     {
26238b244e21SEwan Crawford                         if (log)
26248b244e21SEwan Crawford                             log->Printf("RenderScriptRuntime::DumpAllocation- Error in snprintf()");
26258b244e21SEwan Crawford                         continue;
26268b244e21SEwan Crawford                     }
26278b244e21SEwan Crawford 
26288b244e21SEwan Crawford                     // Evaluate expression
26298b244e21SEwan Crawford                     ValueObjectSP expr_result;
26308b244e21SEwan Crawford                     GetProcess()->GetTarget().EvaluateExpression(expr_char_buffer, frame_ptr, expr_result);
26318b244e21SEwan Crawford 
26328b244e21SEwan Crawford                     // Print the results to our stream.
26338b244e21SEwan Crawford                     expr_result->Dump(strm, expr_options);
26348b244e21SEwan Crawford                 }
26358b244e21SEwan Crawford                 else
26368b244e21SEwan Crawford                 {
26378b244e21SEwan Crawford                     alloc_data.Dump(&strm, offset, format, data_size - padding, 1, 1, LLDB_INVALID_ADDRESS, 0, 0);
26388b244e21SEwan Crawford                 }
26398b244e21SEwan Crawford                 offset += data_size;
2640a0f08674SEwan Crawford             }
2641a0f08674SEwan Crawford         }
2642a0f08674SEwan Crawford     }
2643a0f08674SEwan Crawford     strm.EOL();
2644a0f08674SEwan Crawford 
2645a0f08674SEwan Crawford     return true;
2646a0f08674SEwan Crawford }
2647a0f08674SEwan Crawford 
264815f2bd95SEwan Crawford // Prints infomation regarding all the currently loaded allocations.
264915f2bd95SEwan Crawford // These details are gathered by jitting the runtime, which has as latency.
265015f2bd95SEwan Crawford void
265115f2bd95SEwan Crawford RenderScriptRuntime::ListAllocations(Stream &strm, StackFrame* frame_ptr, bool recompute)
265215f2bd95SEwan Crawford {
265315f2bd95SEwan Crawford     strm.Printf("RenderScript Allocations:");
265415f2bd95SEwan Crawford     strm.EOL();
265515f2bd95SEwan Crawford     strm.IndentMore();
265615f2bd95SEwan Crawford 
265715f2bd95SEwan Crawford     for (auto &alloc : m_allocations)
265815f2bd95SEwan Crawford     {
265915f2bd95SEwan Crawford         // JIT the allocation info if we haven't done it, or the user forces us to.
26608b59062aSEwan Crawford         bool do_refresh = alloc->shouldRefresh() || recompute;
266115f2bd95SEwan Crawford 
266215f2bd95SEwan Crawford         // JIT current allocation information
266315f2bd95SEwan Crawford         if (do_refresh && !RefreshAllocation(alloc.get(), frame_ptr))
266415f2bd95SEwan Crawford         {
266515f2bd95SEwan Crawford             strm.Printf("Error: Couldn't evaluate details for allocation %u\n", alloc->id);
266615f2bd95SEwan Crawford             continue;
266715f2bd95SEwan Crawford         }
266815f2bd95SEwan Crawford 
266915f2bd95SEwan Crawford         strm.Printf("%u:\n",alloc->id);
267015f2bd95SEwan Crawford         strm.IndentMore();
267115f2bd95SEwan Crawford 
267215f2bd95SEwan Crawford         strm.Indent("Context: ");
267315f2bd95SEwan Crawford         if (!alloc->context.isValid())
267415f2bd95SEwan Crawford             strm.Printf("unknown\n");
267515f2bd95SEwan Crawford         else
267615f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->context.get());
267715f2bd95SEwan Crawford 
267815f2bd95SEwan Crawford         strm.Indent("Address: ");
267915f2bd95SEwan Crawford         if (!alloc->address.isValid())
268015f2bd95SEwan Crawford             strm.Printf("unknown\n");
268115f2bd95SEwan Crawford         else
268215f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->address.get());
268315f2bd95SEwan Crawford 
268415f2bd95SEwan Crawford         strm.Indent("Data pointer: ");
268515f2bd95SEwan Crawford         if (!alloc->data_ptr.isValid())
268615f2bd95SEwan Crawford             strm.Printf("unknown\n");
268715f2bd95SEwan Crawford         else
268815f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->data_ptr.get());
268915f2bd95SEwan Crawford 
269015f2bd95SEwan Crawford         strm.Indent("Dimensions: ");
269115f2bd95SEwan Crawford         if (!alloc->dimension.isValid())
269215f2bd95SEwan Crawford             strm.Printf("unknown\n");
269315f2bd95SEwan Crawford         else
269415f2bd95SEwan Crawford             strm.Printf("(%d, %d, %d)\n", alloc->dimension.get()->dim_1,
269515f2bd95SEwan Crawford                                           alloc->dimension.get()->dim_2,
269615f2bd95SEwan Crawford                                           alloc->dimension.get()->dim_3);
269715f2bd95SEwan Crawford 
269815f2bd95SEwan Crawford         strm.Indent("Data Type: ");
26998b244e21SEwan Crawford         if (!alloc->element.type.isValid() || !alloc->element.type_vec_size.isValid())
270015f2bd95SEwan Crawford             strm.Printf("unknown\n");
270115f2bd95SEwan Crawford         else
270215f2bd95SEwan Crawford         {
27038b244e21SEwan Crawford             const int vector_size = *alloc->element.type_vec_size.get();
27048b244e21SEwan Crawford             const Element::DataType type = *alloc->element.type.get();
270515f2bd95SEwan Crawford 
27068b244e21SEwan Crawford             if (!alloc->element.type_name.IsEmpty())
27078b244e21SEwan Crawford                 strm.Printf("%s\n", alloc->element.type_name.AsCString());
27088b244e21SEwan Crawford             else if (vector_size > 4 || vector_size < 1 ||
27098b244e21SEwan Crawford                 type < Element::RS_TYPE_NONE || type > Element::RS_TYPE_BOOLEAN)
271015f2bd95SEwan Crawford                 strm.Printf("invalid type\n");
271115f2bd95SEwan Crawford             else
271215f2bd95SEwan Crawford                 strm.Printf("%s\n", AllocationDetails::RsDataTypeToString[static_cast<unsigned int>(type)][vector_size-1]);
271315f2bd95SEwan Crawford         }
271415f2bd95SEwan Crawford 
271515f2bd95SEwan Crawford         strm.Indent("Data Kind: ");
27168b244e21SEwan Crawford         if (!alloc->element.type_kind.isValid())
271715f2bd95SEwan Crawford             strm.Printf("unknown\n");
271815f2bd95SEwan Crawford         else
271915f2bd95SEwan Crawford         {
27208b244e21SEwan Crawford             const Element::DataKind kind = *alloc->element.type_kind.get();
27218b244e21SEwan Crawford             if (kind < Element::RS_KIND_USER || kind > Element::RS_KIND_PIXEL_YUV)
272215f2bd95SEwan Crawford                 strm.Printf("invalid kind\n");
272315f2bd95SEwan Crawford             else
272415f2bd95SEwan Crawford                 strm.Printf("%s\n", AllocationDetails::RsDataKindToString[static_cast<unsigned int>(kind)]);
272515f2bd95SEwan Crawford         }
272615f2bd95SEwan Crawford 
272715f2bd95SEwan Crawford         strm.EOL();
272815f2bd95SEwan Crawford         strm.IndentLess();
272915f2bd95SEwan Crawford     }
273015f2bd95SEwan Crawford     strm.IndentLess();
273115f2bd95SEwan Crawford }
273215f2bd95SEwan Crawford 
27337dc7771cSEwan Crawford // Set breakpoints on every kernel found in RS module
27347dc7771cSEwan Crawford void
27357dc7771cSEwan Crawford RenderScriptRuntime::BreakOnModuleKernels(const RSModuleDescriptorSP rsmodule_sp)
27367dc7771cSEwan Crawford {
27377dc7771cSEwan Crawford     for (const auto &kernel : rsmodule_sp->m_kernels)
27387dc7771cSEwan Crawford     {
27397dc7771cSEwan Crawford         // Don't set breakpoint on 'root' kernel
27407dc7771cSEwan Crawford         if (strcmp(kernel.m_name.AsCString(), "root") == 0)
27417dc7771cSEwan Crawford             continue;
27427dc7771cSEwan Crawford 
27437dc7771cSEwan Crawford         CreateKernelBreakpoint(kernel.m_name);
27447dc7771cSEwan Crawford     }
27457dc7771cSEwan Crawford }
27467dc7771cSEwan Crawford 
27477dc7771cSEwan Crawford // Method is internally called by the 'kernel breakpoint all' command to
27487dc7771cSEwan Crawford // enable or disable breaking on all kernels.
27497dc7771cSEwan Crawford //
27507dc7771cSEwan Crawford // When do_break is true we want to enable this functionality.
27517dc7771cSEwan Crawford // When do_break is false we want to disable it.
27527dc7771cSEwan Crawford void
27537dc7771cSEwan Crawford RenderScriptRuntime::SetBreakAllKernels(bool do_break, TargetSP target)
27547dc7771cSEwan Crawford {
275554782db7SEwan Crawford     Log* log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
27567dc7771cSEwan Crawford 
27577dc7771cSEwan Crawford     InitSearchFilter(target);
27587dc7771cSEwan Crawford 
27597dc7771cSEwan Crawford     // Set breakpoints on all the kernels
27607dc7771cSEwan Crawford     if (do_break && !m_breakAllKernels)
27617dc7771cSEwan Crawford     {
27627dc7771cSEwan Crawford         m_breakAllKernels = true;
27637dc7771cSEwan Crawford 
27647dc7771cSEwan Crawford         for (const auto &module : m_rsmodules)
27657dc7771cSEwan Crawford             BreakOnModuleKernels(module);
27667dc7771cSEwan Crawford 
27677dc7771cSEwan Crawford         if (log)
27687dc7771cSEwan Crawford             log->Printf("RenderScriptRuntime::SetBreakAllKernels(True)"
27697dc7771cSEwan Crawford                         "- breakpoints set on all currently loaded kernels");
27707dc7771cSEwan Crawford     }
27717dc7771cSEwan Crawford     else if (!do_break && m_breakAllKernels) // Breakpoints won't be set on any new kernels.
27727dc7771cSEwan Crawford     {
27737dc7771cSEwan Crawford         m_breakAllKernels = false;
27747dc7771cSEwan Crawford 
27757dc7771cSEwan Crawford         if (log)
27767dc7771cSEwan Crawford             log->Printf("RenderScriptRuntime::SetBreakAllKernels(False) - breakpoints no longer automatically set");
27777dc7771cSEwan Crawford     }
27787dc7771cSEwan Crawford }
27797dc7771cSEwan Crawford 
27807dc7771cSEwan Crawford // Given the name of a kernel this function creates a breakpoint using our
27817dc7771cSEwan Crawford // own breakpoint resolver, and returns the Breakpoint shared pointer.
27827dc7771cSEwan Crawford BreakpointSP
27837dc7771cSEwan Crawford RenderScriptRuntime::CreateKernelBreakpoint(const ConstString& name)
27847dc7771cSEwan Crawford {
278554782db7SEwan Crawford     Log* log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
27867dc7771cSEwan Crawford 
27877dc7771cSEwan Crawford     if (!m_filtersp)
27887dc7771cSEwan Crawford     {
27897dc7771cSEwan Crawford         if (log)
27907dc7771cSEwan Crawford             log->Printf("RenderScriptRuntime::CreateKernelBreakpoint - Error: No breakpoint search filter set");
27917dc7771cSEwan Crawford         return nullptr;
27927dc7771cSEwan Crawford     }
27937dc7771cSEwan Crawford 
27947dc7771cSEwan Crawford     BreakpointResolverSP resolver_sp(new RSBreakpointResolver(nullptr, name));
27957dc7771cSEwan Crawford     BreakpointSP bp = GetProcess()->GetTarget().CreateBreakpoint(m_filtersp, resolver_sp, false, false, false);
27967dc7771cSEwan Crawford 
279754782db7SEwan Crawford     // Give RS breakpoints a specific name, so the user can manipulate them as a group.
279854782db7SEwan Crawford     Error err;
279954782db7SEwan Crawford     if (!bp->AddName("RenderScriptKernel", err) && log)
280054782db7SEwan Crawford         log->Printf("RenderScriptRuntime::CreateKernelBreakpoint: Error setting break name, %s", err.AsCString());
280154782db7SEwan Crawford 
28027dc7771cSEwan Crawford     return bp;
28037dc7771cSEwan Crawford }
28047dc7771cSEwan Crawford 
2805018f5a7eSEwan Crawford // Given an expression for a variable this function tries to calculate the variable's value.
2806018f5a7eSEwan Crawford // If this is possible it returns true and sets the uint64_t parameter to the variables unsigned value.
2807018f5a7eSEwan Crawford // Otherwise function returns false.
2808018f5a7eSEwan Crawford bool
2809018f5a7eSEwan Crawford RenderScriptRuntime::GetFrameVarAsUnsigned(const StackFrameSP frame_sp, const char* var_name, uint64_t& val)
2810018f5a7eSEwan Crawford {
2811018f5a7eSEwan Crawford     Log* log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2812018f5a7eSEwan Crawford     Error error;
2813018f5a7eSEwan Crawford     VariableSP var_sp;
2814018f5a7eSEwan Crawford 
2815018f5a7eSEwan Crawford     // Find variable in stack frame
2816018f5a7eSEwan Crawford     ValueObjectSP value_sp(frame_sp->GetValueForVariableExpressionPath(var_name,
2817018f5a7eSEwan Crawford                                                                        eNoDynamicValues,
2818018f5a7eSEwan Crawford                                                                        StackFrame::eExpressionPathOptionCheckPtrVsMember |
2819018f5a7eSEwan Crawford                                                                        StackFrame::eExpressionPathOptionsAllowDirectIVarAccess,
2820018f5a7eSEwan Crawford                                                                        var_sp,
2821018f5a7eSEwan Crawford                                                                        error));
2822018f5a7eSEwan Crawford     if (!error.Success())
2823018f5a7eSEwan Crawford     {
2824018f5a7eSEwan Crawford         if (log)
2825018f5a7eSEwan Crawford             log->Printf("RenderScriptRuntime::GetFrameVarAsUnsigned - Error, couldn't find '%s' in frame", var_name);
2826018f5a7eSEwan Crawford 
2827018f5a7eSEwan Crawford         return false;
2828018f5a7eSEwan Crawford     }
2829018f5a7eSEwan Crawford 
2830018f5a7eSEwan Crawford     // Find the unsigned int value for the variable
2831018f5a7eSEwan Crawford     bool success = false;
2832018f5a7eSEwan Crawford     val = value_sp->GetValueAsUnsigned(0, &success);
2833018f5a7eSEwan Crawford     if (!success)
2834018f5a7eSEwan Crawford     {
2835018f5a7eSEwan Crawford         if (log)
2836018f5a7eSEwan Crawford             log->Printf("RenderScriptRuntime::GetFrameVarAsUnsigned - Error, couldn't parse '%s' as an unsigned int", var_name);
2837018f5a7eSEwan Crawford 
2838018f5a7eSEwan Crawford         return false;
2839018f5a7eSEwan Crawford     }
2840018f5a7eSEwan Crawford 
2841018f5a7eSEwan Crawford     return true;
2842018f5a7eSEwan Crawford }
2843018f5a7eSEwan Crawford 
2844018f5a7eSEwan Crawford // Callback when a kernel breakpoint hits and we're looking for a specific coordinate.
2845018f5a7eSEwan Crawford // Baton parameter contains a pointer to the target coordinate we want to break on.
2846018f5a7eSEwan Crawford // Function then checks the .expand frame for the current coordinate and breaks to user if it matches.
2847018f5a7eSEwan Crawford // Parameter 'break_id' is the id of the Breakpoint which made the callback.
2848018f5a7eSEwan Crawford // Parameter 'break_loc_id' is the id for the BreakpointLocation which was hit,
2849018f5a7eSEwan Crawford // a single logical breakpoint can have multiple addresses.
2850018f5a7eSEwan Crawford bool
2851018f5a7eSEwan Crawford RenderScriptRuntime::KernelBreakpointHit(void *baton, StoppointCallbackContext *ctx,
2852018f5a7eSEwan Crawford                                          user_id_t break_id, user_id_t break_loc_id)
2853018f5a7eSEwan Crawford {
2854018f5a7eSEwan Crawford     Log* log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
2855018f5a7eSEwan Crawford 
2856018f5a7eSEwan Crawford     assert(baton && "Error: null baton in conditional kernel breakpoint callback");
2857018f5a7eSEwan Crawford 
2858018f5a7eSEwan Crawford     // Coordinate we want to stop on
2859018f5a7eSEwan Crawford     const int* target_coord = static_cast<const int*>(baton);
2860018f5a7eSEwan Crawford 
2861018f5a7eSEwan Crawford     if (log)
2862018f5a7eSEwan Crawford         log->Printf("RenderScriptRuntime::KernelBreakpointHit - Break ID %" PRIu64 ", target coord (%d, %d, %d)",
2863018f5a7eSEwan Crawford                     break_id, target_coord[0], target_coord[1], target_coord[2]);
2864018f5a7eSEwan Crawford 
2865018f5a7eSEwan Crawford     // Go up one stack frame to .expand kernel
2866018f5a7eSEwan Crawford     ExecutionContext context(ctx->exe_ctx_ref);
2867018f5a7eSEwan Crawford     ThreadSP thread_sp = context.GetThreadSP();
2868018f5a7eSEwan Crawford     if (!thread_sp->SetSelectedFrameByIndex(1))
2869018f5a7eSEwan Crawford     {
2870018f5a7eSEwan Crawford         if (log)
2871018f5a7eSEwan Crawford             log->Printf("RenderScriptRuntime::KernelBreakpointHit - Error, couldn't go up stack frame");
2872018f5a7eSEwan Crawford 
2873018f5a7eSEwan Crawford        return false;
2874018f5a7eSEwan Crawford     }
2875018f5a7eSEwan Crawford 
2876018f5a7eSEwan Crawford     StackFrameSP frame_sp = thread_sp->GetSelectedFrame();
2877018f5a7eSEwan Crawford     if (!frame_sp)
2878018f5a7eSEwan Crawford     {
2879018f5a7eSEwan Crawford         if (log)
2880018f5a7eSEwan Crawford             log->Printf("RenderScriptRuntime::KernelBreakpointHit - Error, couldn't select .expand stack frame");
2881018f5a7eSEwan Crawford 
2882018f5a7eSEwan Crawford         return false;
2883018f5a7eSEwan Crawford     }
2884018f5a7eSEwan Crawford 
2885018f5a7eSEwan Crawford     // Get values for variables in .expand frame that tell us the current kernel invocation
2886018f5a7eSEwan Crawford     const char* coord_expressions[] = {"rsIndex", "p->current.y", "p->current.z"};
2887018f5a7eSEwan Crawford     uint64_t current_coord[3] = {0, 0, 0};
2888018f5a7eSEwan Crawford 
2889018f5a7eSEwan Crawford     for(int i = 0; i < 3; ++i)
2890018f5a7eSEwan Crawford     {
2891018f5a7eSEwan Crawford         if (!GetFrameVarAsUnsigned(frame_sp, coord_expressions[i], current_coord[i]))
2892018f5a7eSEwan Crawford             return false;
2893018f5a7eSEwan Crawford 
2894018f5a7eSEwan Crawford         if (log)
2895018f5a7eSEwan Crawford             log->Printf("RenderScriptRuntime::KernelBreakpointHit, %s = %" PRIu64, coord_expressions[i], current_coord[i]);
2896018f5a7eSEwan Crawford     }
2897018f5a7eSEwan Crawford 
2898018f5a7eSEwan Crawford     // Check if the current kernel invocation coordinate matches our target coordinate
2899018f5a7eSEwan Crawford     if (current_coord[0] == static_cast<uint64_t>(target_coord[0]) &&
2900018f5a7eSEwan Crawford         current_coord[1] == static_cast<uint64_t>(target_coord[1]) &&
2901018f5a7eSEwan Crawford         current_coord[2] == static_cast<uint64_t>(target_coord[2]))
2902018f5a7eSEwan Crawford     {
2903018f5a7eSEwan Crawford         if (log)
2904018f5a7eSEwan Crawford              log->Printf("RenderScriptRuntime::KernelBreakpointHit, BREAKING %" PRIu64 ", %" PRIu64 ", %" PRIu64,
2905018f5a7eSEwan Crawford                          current_coord[0], current_coord[1], current_coord[2]);
2906018f5a7eSEwan Crawford 
2907018f5a7eSEwan Crawford         BreakpointSP breakpoint_sp = context.GetTargetPtr()->GetBreakpointByID(break_id);
2908018f5a7eSEwan Crawford         assert(breakpoint_sp != nullptr && "Error: Couldn't find breakpoint matching break id for callback");
2909018f5a7eSEwan Crawford         breakpoint_sp->SetEnabled(false); // Optimise since conditional breakpoint should only be hit once.
2910018f5a7eSEwan Crawford         return true;
2911018f5a7eSEwan Crawford     }
2912018f5a7eSEwan Crawford 
2913018f5a7eSEwan Crawford     // No match on coordinate
2914018f5a7eSEwan Crawford     return false;
2915018f5a7eSEwan Crawford }
2916018f5a7eSEwan Crawford 
2917018f5a7eSEwan Crawford // Tries to set a breakpoint on the start of a kernel, resolved using the kernel name.
2918018f5a7eSEwan Crawford // Argument 'coords', represents a three dimensional coordinate which can be used to specify
2919018f5a7eSEwan Crawford // a single kernel instance to break on. If this is set then we add a callback to the breakpoint.
29204640cde1SColin Riley void
2921018f5a7eSEwan Crawford RenderScriptRuntime::PlaceBreakpointOnKernel(Stream &strm, const char* name, const std::array<int,3> coords,
2922018f5a7eSEwan Crawford                                              Error& error, TargetSP target)
29234640cde1SColin Riley {
29244640cde1SColin Riley     if (!name)
29254640cde1SColin Riley     {
29264640cde1SColin Riley         error.SetErrorString("invalid kernel name");
29274640cde1SColin Riley         return;
29284640cde1SColin Riley     }
29294640cde1SColin Riley 
29307dc7771cSEwan Crawford     InitSearchFilter(target);
293198156583SEwan Crawford 
29324640cde1SColin Riley     ConstString kernel_name(name);
29337dc7771cSEwan Crawford     BreakpointSP bp = CreateKernelBreakpoint(kernel_name);
2934018f5a7eSEwan Crawford 
2935018f5a7eSEwan Crawford     // We have a conditional breakpoint on a specific coordinate
2936018f5a7eSEwan Crawford     if (coords[0] != -1)
2937018f5a7eSEwan Crawford     {
2938018f5a7eSEwan Crawford         strm.Printf("Conditional kernel breakpoint on coordinate %d, %d, %d", coords[0], coords[1], coords[2]);
2939018f5a7eSEwan Crawford         strm.EOL();
2940018f5a7eSEwan Crawford 
2941018f5a7eSEwan Crawford         // Allocate memory for the baton, and copy over coordinate
2942018f5a7eSEwan Crawford         int* baton = new int[3];
2943018f5a7eSEwan Crawford         baton[0] = coords[0]; baton[1] = coords[1]; baton[2] = coords[2];
2944018f5a7eSEwan Crawford 
2945018f5a7eSEwan Crawford         // Create a callback that will be invoked everytime the breakpoint is hit.
2946018f5a7eSEwan Crawford         // The baton object passed to the handler is the target coordinate we want to break on.
2947018f5a7eSEwan Crawford         bp->SetCallback(KernelBreakpointHit, baton, true);
2948018f5a7eSEwan Crawford 
2949018f5a7eSEwan Crawford         // Store a shared pointer to the baton, so the memory will eventually be cleaned up after destruction
2950018f5a7eSEwan Crawford         m_conditional_breaks[bp->GetID()] = std::shared_ptr<int>(baton);
2951018f5a7eSEwan Crawford     }
2952018f5a7eSEwan Crawford 
295398156583SEwan Crawford     if (bp)
295498156583SEwan Crawford         bp->GetDescription(&strm, lldb::eDescriptionLevelInitial, false);
29554640cde1SColin Riley }
29564640cde1SColin Riley 
29574640cde1SColin Riley void
29585ec532a9SColin Riley RenderScriptRuntime::DumpModules(Stream &strm) const
29595ec532a9SColin Riley {
29605ec532a9SColin Riley     strm.Printf("RenderScript Modules:");
29615ec532a9SColin Riley     strm.EOL();
29625ec532a9SColin Riley     strm.IndentMore();
29635ec532a9SColin Riley     for (const auto &module : m_rsmodules)
29645ec532a9SColin Riley     {
29654640cde1SColin Riley         module->Dump(strm);
29665ec532a9SColin Riley     }
29675ec532a9SColin Riley     strm.IndentLess();
29685ec532a9SColin Riley }
29695ec532a9SColin Riley 
297078f339d1SEwan Crawford RenderScriptRuntime::ScriptDetails*
297178f339d1SEwan Crawford RenderScriptRuntime::LookUpScript(addr_t address, bool create)
297278f339d1SEwan Crawford {
297378f339d1SEwan Crawford     for (const auto & s : m_scripts)
297478f339d1SEwan Crawford     {
297578f339d1SEwan Crawford         if (s->script.isValid())
297678f339d1SEwan Crawford             if (*s->script == address)
297778f339d1SEwan Crawford                 return s.get();
297878f339d1SEwan Crawford     }
297978f339d1SEwan Crawford     if (create)
298078f339d1SEwan Crawford     {
298178f339d1SEwan Crawford         std::unique_ptr<ScriptDetails> s(new ScriptDetails);
298278f339d1SEwan Crawford         s->script = address;
298378f339d1SEwan Crawford         m_scripts.push_back(std::move(s));
2984d10ca9deSEwan Crawford         return m_scripts.back().get();
298578f339d1SEwan Crawford     }
298678f339d1SEwan Crawford     return nullptr;
298778f339d1SEwan Crawford }
298878f339d1SEwan Crawford 
298978f339d1SEwan Crawford RenderScriptRuntime::AllocationDetails*
299078f339d1SEwan Crawford RenderScriptRuntime::LookUpAllocation(addr_t address, bool create)
299178f339d1SEwan Crawford {
299278f339d1SEwan Crawford     for (const auto & a : m_allocations)
299378f339d1SEwan Crawford     {
299478f339d1SEwan Crawford         if (a->address.isValid())
299578f339d1SEwan Crawford             if (*a->address == address)
299678f339d1SEwan Crawford                 return a.get();
299778f339d1SEwan Crawford     }
299878f339d1SEwan Crawford     if (create)
299978f339d1SEwan Crawford     {
300078f339d1SEwan Crawford         std::unique_ptr<AllocationDetails> a(new AllocationDetails);
300178f339d1SEwan Crawford         a->address = address;
300278f339d1SEwan Crawford         m_allocations.push_back(std::move(a));
3003d10ca9deSEwan Crawford         return m_allocations.back().get();
300478f339d1SEwan Crawford     }
300578f339d1SEwan Crawford     return nullptr;
300678f339d1SEwan Crawford }
300778f339d1SEwan Crawford 
30085ec532a9SColin Riley void
30095ec532a9SColin Riley RSModuleDescriptor::Dump(Stream &strm) const
30105ec532a9SColin Riley {
30115ec532a9SColin Riley     strm.Indent();
30125ec532a9SColin Riley     m_module->GetFileSpec().Dump(&strm);
30134640cde1SColin Riley     if(m_module->GetNumCompileUnits())
30144640cde1SColin Riley     {
30154640cde1SColin Riley         strm.Indent("Debug info loaded.");
30164640cde1SColin Riley     }
30174640cde1SColin Riley     else
30184640cde1SColin Riley     {
30194640cde1SColin Riley         strm.Indent("Debug info does not exist.");
30204640cde1SColin Riley     }
30215ec532a9SColin Riley     strm.EOL();
30225ec532a9SColin Riley     strm.IndentMore();
30235ec532a9SColin Riley     strm.Indent();
3024189598edSColin Riley     strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
30255ec532a9SColin Riley     strm.EOL();
30265ec532a9SColin Riley     strm.IndentMore();
30275ec532a9SColin Riley     for (const auto &global : m_globals)
30285ec532a9SColin Riley     {
30295ec532a9SColin Riley         global.Dump(strm);
30305ec532a9SColin Riley     }
30315ec532a9SColin Riley     strm.IndentLess();
30325ec532a9SColin Riley     strm.Indent();
3033189598edSColin Riley     strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
30345ec532a9SColin Riley     strm.EOL();
30355ec532a9SColin Riley     strm.IndentMore();
30365ec532a9SColin Riley     for (const auto &kernel : m_kernels)
30375ec532a9SColin Riley     {
30385ec532a9SColin Riley         kernel.Dump(strm);
30395ec532a9SColin Riley     }
30404640cde1SColin Riley     strm.Printf("Pragmas: %"  PRIu64 , static_cast<uint64_t>(m_pragmas.size()));
30414640cde1SColin Riley     strm.EOL();
30424640cde1SColin Riley     strm.IndentMore();
30434640cde1SColin Riley     for (const auto &key_val : m_pragmas)
30444640cde1SColin Riley     {
30454640cde1SColin Riley         strm.Printf("%s: %s", key_val.first.c_str(), key_val.second.c_str());
30464640cde1SColin Riley         strm.EOL();
30474640cde1SColin Riley     }
30485ec532a9SColin Riley     strm.IndentLess(4);
30495ec532a9SColin Riley }
30505ec532a9SColin Riley 
30515ec532a9SColin Riley void
30525ec532a9SColin Riley RSGlobalDescriptor::Dump(Stream &strm) const
30535ec532a9SColin Riley {
30545ec532a9SColin Riley     strm.Indent(m_name.AsCString());
30554640cde1SColin Riley     VariableList var_list;
30564640cde1SColin Riley     m_module->m_module->FindGlobalVariables(m_name, nullptr, true, 1U, var_list);
30574640cde1SColin Riley     if (var_list.GetSize() == 1)
30584640cde1SColin Riley     {
30594640cde1SColin Riley         auto var = var_list.GetVariableAtIndex(0);
30604640cde1SColin Riley         auto type = var->GetType();
30614640cde1SColin Riley         if(type)
30624640cde1SColin Riley         {
30634640cde1SColin Riley             strm.Printf(" - ");
30644640cde1SColin Riley             type->DumpTypeName(&strm);
30654640cde1SColin Riley         }
30664640cde1SColin Riley         else
30674640cde1SColin Riley         {
30684640cde1SColin Riley             strm.Printf(" - Unknown Type");
30694640cde1SColin Riley         }
30704640cde1SColin Riley     }
30714640cde1SColin Riley     else
30724640cde1SColin Riley     {
30734640cde1SColin Riley         strm.Printf(" - variable identified, but not found in binary");
30744640cde1SColin Riley         const Symbol* s = m_module->m_module->FindFirstSymbolWithNameAndType(m_name, eSymbolTypeData);
30754640cde1SColin Riley         if (s)
30764640cde1SColin Riley         {
30774640cde1SColin Riley             strm.Printf(" (symbol exists) ");
30784640cde1SColin Riley         }
30794640cde1SColin Riley     }
30804640cde1SColin Riley 
30815ec532a9SColin Riley     strm.EOL();
30825ec532a9SColin Riley }
30835ec532a9SColin Riley 
30845ec532a9SColin Riley void
30855ec532a9SColin Riley RSKernelDescriptor::Dump(Stream &strm) const
30865ec532a9SColin Riley {
30875ec532a9SColin Riley     strm.Indent(m_name.AsCString());
30885ec532a9SColin Riley     strm.EOL();
30895ec532a9SColin Riley }
30905ec532a9SColin Riley 
30915ec532a9SColin Riley class CommandObjectRenderScriptRuntimeModuleProbe : public CommandObjectParsed
30925ec532a9SColin Riley {
30935ec532a9SColin Riley public:
30945ec532a9SColin Riley     CommandObjectRenderScriptRuntimeModuleProbe(CommandInterpreter &interpreter)
30955ec532a9SColin Riley         : CommandObjectParsed(interpreter, "renderscript module probe",
30965ec532a9SColin Riley                               "Initiates a Probe of all loaded modules for kernels and other renderscript objects.",
30975ec532a9SColin Riley                               "renderscript module probe",
3098e87764f2SEnrico Granata                               eCommandRequiresTarget | eCommandRequiresProcess | eCommandProcessMustBeLaunched)
30995ec532a9SColin Riley     {
31005ec532a9SColin Riley     }
31015ec532a9SColin Riley 
3102222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeModuleProbe() override = default;
31035ec532a9SColin Riley 
31045ec532a9SColin Riley     bool
3105222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
31065ec532a9SColin Riley     {
31075ec532a9SColin Riley         const size_t argc = command.GetArgumentCount();
31085ec532a9SColin Riley         if (argc == 0)
31095ec532a9SColin Riley         {
31105ec532a9SColin Riley             Target *target = m_exe_ctx.GetTargetPtr();
31115ec532a9SColin Riley             RenderScriptRuntime *runtime =
31125ec532a9SColin Riley                 (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
31135ec532a9SColin Riley             auto module_list = target->GetImages();
31145ec532a9SColin Riley             bool new_rs_details = runtime->ProbeModules(module_list);
31155ec532a9SColin Riley             if (new_rs_details)
31165ec532a9SColin Riley             {
31175ec532a9SColin Riley                 result.AppendMessage("New renderscript modules added to runtime model.");
31185ec532a9SColin Riley             }
31195ec532a9SColin Riley             result.SetStatus(eReturnStatusSuccessFinishResult);
31205ec532a9SColin Riley             return true;
31215ec532a9SColin Riley         }
31225ec532a9SColin Riley 
31235ec532a9SColin Riley         result.AppendErrorWithFormat("'%s' takes no arguments", m_cmd_name.c_str());
31245ec532a9SColin Riley         result.SetStatus(eReturnStatusFailed);
31255ec532a9SColin Riley         return false;
31265ec532a9SColin Riley     }
31275ec532a9SColin Riley };
31285ec532a9SColin Riley 
31295ec532a9SColin Riley class CommandObjectRenderScriptRuntimeModuleDump : public CommandObjectParsed
31305ec532a9SColin Riley {
31315ec532a9SColin Riley public:
31325ec532a9SColin Riley     CommandObjectRenderScriptRuntimeModuleDump(CommandInterpreter &interpreter)
31335ec532a9SColin Riley         : CommandObjectParsed(interpreter, "renderscript module dump",
31345ec532a9SColin Riley                               "Dumps renderscript specific information for all modules.", "renderscript module dump",
3135e87764f2SEnrico Granata                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
31365ec532a9SColin Riley     {
31375ec532a9SColin Riley     }
31385ec532a9SColin Riley 
3139222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeModuleDump() override = default;
31405ec532a9SColin Riley 
31415ec532a9SColin Riley     bool
3142222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
31435ec532a9SColin Riley     {
31445ec532a9SColin Riley         RenderScriptRuntime *runtime =
31455ec532a9SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
31465ec532a9SColin Riley         runtime->DumpModules(result.GetOutputStream());
31475ec532a9SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
31485ec532a9SColin Riley         return true;
31495ec532a9SColin Riley     }
31505ec532a9SColin Riley };
31515ec532a9SColin Riley 
31525ec532a9SColin Riley class CommandObjectRenderScriptRuntimeModule : public CommandObjectMultiword
31535ec532a9SColin Riley {
31545ec532a9SColin Riley public:
31555ec532a9SColin Riley     CommandObjectRenderScriptRuntimeModule(CommandInterpreter &interpreter)
31565ec532a9SColin Riley         : CommandObjectMultiword(interpreter, "renderscript module", "Commands that deal with renderscript modules.",
31575ec532a9SColin Riley                                  NULL)
31585ec532a9SColin Riley     {
31595ec532a9SColin Riley         LoadSubCommand("probe", CommandObjectSP(new CommandObjectRenderScriptRuntimeModuleProbe(interpreter)));
31605ec532a9SColin Riley         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeModuleDump(interpreter)));
31615ec532a9SColin Riley     }
31625ec532a9SColin Riley 
3163222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeModule() override = default;
31645ec532a9SColin Riley };
31655ec532a9SColin Riley 
31664640cde1SColin Riley class CommandObjectRenderScriptRuntimeKernelList : public CommandObjectParsed
31674640cde1SColin Riley {
31684640cde1SColin Riley public:
31694640cde1SColin Riley     CommandObjectRenderScriptRuntimeKernelList(CommandInterpreter &interpreter)
31704640cde1SColin Riley         : CommandObjectParsed(interpreter, "renderscript kernel list",
31714640cde1SColin Riley                               "Lists renderscript kernel names and associated script resources.", "renderscript kernel list",
31724640cde1SColin Riley                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
31734640cde1SColin Riley     {
31744640cde1SColin Riley     }
31754640cde1SColin Riley 
3176222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelList() override = default;
31774640cde1SColin Riley 
31784640cde1SColin Riley     bool
3179222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
31804640cde1SColin Riley     {
31814640cde1SColin Riley         RenderScriptRuntime *runtime =
31824640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
31834640cde1SColin Riley         runtime->DumpKernels(result.GetOutputStream());
31844640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
31854640cde1SColin Riley         return true;
31864640cde1SColin Riley     }
31874640cde1SColin Riley };
31884640cde1SColin Riley 
31897dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpointSet : public CommandObjectParsed
31904640cde1SColin Riley {
31914640cde1SColin Riley public:
31927dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpointSet(CommandInterpreter &interpreter)
31937dc7771cSEwan Crawford         : CommandObjectParsed(interpreter, "renderscript kernel breakpoint set",
3194018f5a7eSEwan Crawford                               "Sets a breakpoint on a renderscript kernel.", "renderscript kernel breakpoint set <kernel_name> [-c x,y,z]",
3195018f5a7eSEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused), m_options(interpreter)
31964640cde1SColin Riley     {
31974640cde1SColin Riley     }
31984640cde1SColin Riley 
3199222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpointSet() override = default;
3200222b937cSEugene Zelenko 
3201222b937cSEugene Zelenko     Options*
3202222b937cSEugene Zelenko     GetOptions() override
3203018f5a7eSEwan Crawford     {
3204018f5a7eSEwan Crawford         return &m_options;
3205018f5a7eSEwan Crawford     }
3206018f5a7eSEwan Crawford 
3207018f5a7eSEwan Crawford     class CommandOptions : public Options
3208018f5a7eSEwan Crawford     {
3209018f5a7eSEwan Crawford     public:
3210018f5a7eSEwan Crawford         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter)
3211018f5a7eSEwan Crawford         {
3212018f5a7eSEwan Crawford         }
3213018f5a7eSEwan Crawford 
3214222b937cSEugene Zelenko         ~CommandOptions() override = default;
3215018f5a7eSEwan Crawford 
3216222b937cSEugene Zelenko         Error
3217222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
3218018f5a7eSEwan Crawford         {
3219018f5a7eSEwan Crawford             Error error;
3220018f5a7eSEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
3221018f5a7eSEwan Crawford 
3222018f5a7eSEwan Crawford             switch (short_option)
3223018f5a7eSEwan Crawford             {
3224018f5a7eSEwan Crawford                 case 'c':
3225018f5a7eSEwan Crawford                     if (!ParseCoordinate(option_arg))
3226018f5a7eSEwan Crawford                         error.SetErrorStringWithFormat("Couldn't parse coordinate '%s', should be in format 'x,y,z'.", option_arg);
3227018f5a7eSEwan Crawford                     break;
3228018f5a7eSEwan Crawford                 default:
3229018f5a7eSEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
3230018f5a7eSEwan Crawford                     break;
3231018f5a7eSEwan Crawford             }
3232018f5a7eSEwan Crawford             return error;
3233018f5a7eSEwan Crawford         }
3234018f5a7eSEwan Crawford 
3235018f5a7eSEwan Crawford         // -c takes an argument of the form 'num[,num][,num]'.
3236018f5a7eSEwan Crawford         // Where 'id_cstr' is this argument with the whitespace trimmed.
3237018f5a7eSEwan Crawford         // Missing coordinates are defaulted to zero.
3238018f5a7eSEwan Crawford         bool
3239018f5a7eSEwan Crawford         ParseCoordinate(const char* id_cstr)
3240018f5a7eSEwan Crawford         {
3241018f5a7eSEwan Crawford             RegularExpression regex;
3242018f5a7eSEwan Crawford             RegularExpression::Match regex_match(3);
3243018f5a7eSEwan Crawford 
3244018f5a7eSEwan Crawford             bool matched = false;
3245018f5a7eSEwan Crawford             if(regex.Compile("^([0-9]+),([0-9]+),([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3246018f5a7eSEwan Crawford                 matched = true;
3247018f5a7eSEwan Crawford             else if(regex.Compile("^([0-9]+),([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3248018f5a7eSEwan Crawford                 matched = true;
3249018f5a7eSEwan Crawford             else if(regex.Compile("^([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3250018f5a7eSEwan Crawford                 matched = true;
3251018f5a7eSEwan Crawford             for(uint32_t i = 0; i < 3; i++)
3252018f5a7eSEwan Crawford             {
3253018f5a7eSEwan Crawford                 std::string group;
3254018f5a7eSEwan Crawford                 if(regex_match.GetMatchAtIndex(id_cstr, i + 1, group))
3255018f5a7eSEwan Crawford                     m_coord[i] = (uint32_t)strtoul(group.c_str(), NULL, 0);
3256018f5a7eSEwan Crawford                 else
3257018f5a7eSEwan Crawford                     m_coord[i] = 0;
3258018f5a7eSEwan Crawford             }
3259018f5a7eSEwan Crawford             return matched;
3260018f5a7eSEwan Crawford         }
3261018f5a7eSEwan Crawford 
3262018f5a7eSEwan Crawford         void
3263222b937cSEugene Zelenko         OptionParsingStarting() override
3264018f5a7eSEwan Crawford         {
3265018f5a7eSEwan Crawford             // -1 means the -c option hasn't been set
3266018f5a7eSEwan Crawford             m_coord[0] = -1;
3267018f5a7eSEwan Crawford             m_coord[1] = -1;
3268018f5a7eSEwan Crawford             m_coord[2] = -1;
3269018f5a7eSEwan Crawford         }
3270018f5a7eSEwan Crawford 
3271018f5a7eSEwan Crawford         const OptionDefinition*
3272222b937cSEugene Zelenko         GetDefinitions() override
3273018f5a7eSEwan Crawford         {
3274018f5a7eSEwan Crawford             return g_option_table;
3275018f5a7eSEwan Crawford         }
3276018f5a7eSEwan Crawford 
3277018f5a7eSEwan Crawford         static OptionDefinition g_option_table[];
3278018f5a7eSEwan Crawford         std::array<int,3> m_coord;
3279018f5a7eSEwan Crawford     };
3280018f5a7eSEwan Crawford 
32814640cde1SColin Riley     bool
3282222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
32834640cde1SColin Riley     {
32844640cde1SColin Riley         const size_t argc = command.GetArgumentCount();
3285018f5a7eSEwan Crawford         if (argc < 1)
32864640cde1SColin Riley         {
3287018f5a7eSEwan Crawford             result.AppendErrorWithFormat("'%s' takes 1 argument of kernel name, and an optional coordinate.", m_cmd_name.c_str());
3288018f5a7eSEwan Crawford             result.SetStatus(eReturnStatusFailed);
3289018f5a7eSEwan Crawford             return false;
3290018f5a7eSEwan Crawford         }
3291018f5a7eSEwan Crawford 
32924640cde1SColin Riley         RenderScriptRuntime *runtime =
32934640cde1SColin Riley                 (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
32944640cde1SColin Riley 
32954640cde1SColin Riley         Error error;
3296018f5a7eSEwan Crawford         runtime->PlaceBreakpointOnKernel(result.GetOutputStream(), command.GetArgumentAtIndex(0), m_options.m_coord,
329798156583SEwan Crawford                                          error, m_exe_ctx.GetTargetSP());
32984640cde1SColin Riley 
32994640cde1SColin Riley         if (error.Success())
33004640cde1SColin Riley         {
33014640cde1SColin Riley             result.AppendMessage("Breakpoint(s) created");
33024640cde1SColin Riley             result.SetStatus(eReturnStatusSuccessFinishResult);
33034640cde1SColin Riley             return true;
33044640cde1SColin Riley         }
33054640cde1SColin Riley         result.SetStatus(eReturnStatusFailed);
33064640cde1SColin Riley         result.AppendErrorWithFormat("Error: %s", error.AsCString());
33074640cde1SColin Riley         return false;
33084640cde1SColin Riley     }
33094640cde1SColin Riley 
3310018f5a7eSEwan Crawford private:
3311018f5a7eSEwan Crawford     CommandOptions m_options;
33124640cde1SColin Riley };
33134640cde1SColin Riley 
3314018f5a7eSEwan Crawford OptionDefinition
3315018f5a7eSEwan Crawford CommandObjectRenderScriptRuntimeKernelBreakpointSet::CommandOptions::g_option_table[] =
3316018f5a7eSEwan Crawford {
3317018f5a7eSEwan Crawford     { LLDB_OPT_SET_1, false, "coordinate", 'c', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeValue,
3318018f5a7eSEwan Crawford       "Set a breakpoint on a single invocation of the kernel with specified coordinate.\n"
3319018f5a7eSEwan Crawford       "Coordinate takes the form 'x[,y][,z] where x,y,z are positive integers representing kernel dimensions. "
3320018f5a7eSEwan Crawford       "Any unset dimensions will be defaulted to zero."},
3321018f5a7eSEwan Crawford     { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
3322018f5a7eSEwan Crawford };
3323018f5a7eSEwan Crawford 
33247dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpointAll : public CommandObjectParsed
33257dc7771cSEwan Crawford {
33267dc7771cSEwan Crawford public:
33277dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpointAll(CommandInterpreter &interpreter)
33287dc7771cSEwan Crawford         : CommandObjectParsed(interpreter, "renderscript kernel breakpoint all",
33297dc7771cSEwan Crawford                               "Automatically sets a breakpoint on all renderscript kernels that are or will be loaded.\n"
33307dc7771cSEwan Crawford                               "Disabling option means breakpoints will no longer be set on any kernels loaded in the future, "
33317dc7771cSEwan Crawford                               "but does not remove currently set breakpoints.",
33327dc7771cSEwan Crawford                               "renderscript kernel breakpoint all <enable/disable>",
33337dc7771cSEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused)
33347dc7771cSEwan Crawford     {
33357dc7771cSEwan Crawford     }
33367dc7771cSEwan Crawford 
3337222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpointAll() override = default;
33387dc7771cSEwan Crawford 
33397dc7771cSEwan Crawford     bool
3340222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
33417dc7771cSEwan Crawford     {
33427dc7771cSEwan Crawford         const size_t argc = command.GetArgumentCount();
33437dc7771cSEwan Crawford         if (argc != 1)
33447dc7771cSEwan Crawford         {
33457dc7771cSEwan Crawford             result.AppendErrorWithFormat("'%s' takes 1 argument of 'enable' or 'disable'", m_cmd_name.c_str());
33467dc7771cSEwan Crawford             result.SetStatus(eReturnStatusFailed);
33477dc7771cSEwan Crawford             return false;
33487dc7771cSEwan Crawford         }
33497dc7771cSEwan Crawford 
33507dc7771cSEwan Crawford         RenderScriptRuntime *runtime =
33517dc7771cSEwan Crawford           static_cast<RenderScriptRuntime *>(m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
33527dc7771cSEwan Crawford 
33537dc7771cSEwan Crawford         bool do_break = false;
33547dc7771cSEwan Crawford         const char* argument = command.GetArgumentAtIndex(0);
33557dc7771cSEwan Crawford         if (strcmp(argument, "enable") == 0)
33567dc7771cSEwan Crawford         {
33577dc7771cSEwan Crawford             do_break = true;
33587dc7771cSEwan Crawford             result.AppendMessage("Breakpoints will be set on all kernels.");
33597dc7771cSEwan Crawford         }
33607dc7771cSEwan Crawford         else if (strcmp(argument, "disable") == 0)
33617dc7771cSEwan Crawford         {
33627dc7771cSEwan Crawford             do_break = false;
33637dc7771cSEwan Crawford             result.AppendMessage("Breakpoints will not be set on any new kernels.");
33647dc7771cSEwan Crawford         }
33657dc7771cSEwan Crawford         else
33667dc7771cSEwan Crawford         {
33677dc7771cSEwan Crawford             result.AppendErrorWithFormat("Argument must be either 'enable' or 'disable'");
33687dc7771cSEwan Crawford             result.SetStatus(eReturnStatusFailed);
33697dc7771cSEwan Crawford             return false;
33707dc7771cSEwan Crawford         }
33717dc7771cSEwan Crawford 
33727dc7771cSEwan Crawford         runtime->SetBreakAllKernels(do_break, m_exe_ctx.GetTargetSP());
33737dc7771cSEwan Crawford 
33747dc7771cSEwan Crawford         result.SetStatus(eReturnStatusSuccessFinishResult);
33757dc7771cSEwan Crawford         return true;
33767dc7771cSEwan Crawford     }
33777dc7771cSEwan Crawford };
33787dc7771cSEwan Crawford 
33797dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpoint : public CommandObjectMultiword
33807dc7771cSEwan Crawford {
33817dc7771cSEwan Crawford public:
33827dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpoint(CommandInterpreter &interpreter)
33837dc7771cSEwan Crawford         : CommandObjectMultiword(interpreter, "renderscript kernel", "Commands that generate breakpoints on renderscript kernels.",
33847dc7771cSEwan Crawford                                  nullptr)
33857dc7771cSEwan Crawford     {
33867dc7771cSEwan Crawford         LoadSubCommand("set", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointSet(interpreter)));
33877dc7771cSEwan Crawford         LoadSubCommand("all", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointAll(interpreter)));
33887dc7771cSEwan Crawford     }
33897dc7771cSEwan Crawford 
3390222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpoint() override = default;
33917dc7771cSEwan Crawford };
33927dc7771cSEwan Crawford 
33934640cde1SColin Riley class CommandObjectRenderScriptRuntimeKernel : public CommandObjectMultiword
33944640cde1SColin Riley {
33954640cde1SColin Riley public:
33964640cde1SColin Riley     CommandObjectRenderScriptRuntimeKernel(CommandInterpreter &interpreter)
33974640cde1SColin Riley         : CommandObjectMultiword(interpreter, "renderscript kernel", "Commands that deal with renderscript kernels.",
33984640cde1SColin Riley                                  NULL)
33994640cde1SColin Riley     {
34004640cde1SColin Riley         LoadSubCommand("list", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelList(interpreter)));
34014640cde1SColin Riley         LoadSubCommand("breakpoint", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpoint(interpreter)));
34024640cde1SColin Riley     }
34034640cde1SColin Riley 
3404222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernel() override = default;
34054640cde1SColin Riley };
34064640cde1SColin Riley 
34074640cde1SColin Riley class CommandObjectRenderScriptRuntimeContextDump : public CommandObjectParsed
34084640cde1SColin Riley {
34094640cde1SColin Riley public:
34104640cde1SColin Riley     CommandObjectRenderScriptRuntimeContextDump(CommandInterpreter &interpreter)
34114640cde1SColin Riley         : CommandObjectParsed(interpreter, "renderscript context dump",
34124640cde1SColin Riley                               "Dumps renderscript context information.", "renderscript context dump",
34134640cde1SColin Riley                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
34144640cde1SColin Riley     {
34154640cde1SColin Riley     }
34164640cde1SColin Riley 
3417222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeContextDump() override = default;
34184640cde1SColin Riley 
34194640cde1SColin Riley     bool
3420222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
34214640cde1SColin Riley     {
34224640cde1SColin Riley         RenderScriptRuntime *runtime =
34234640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
34244640cde1SColin Riley         runtime->DumpContexts(result.GetOutputStream());
34254640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
34264640cde1SColin Riley         return true;
34274640cde1SColin Riley     }
34284640cde1SColin Riley };
34294640cde1SColin Riley 
34304640cde1SColin Riley class CommandObjectRenderScriptRuntimeContext : public CommandObjectMultiword
34314640cde1SColin Riley {
34324640cde1SColin Riley public:
34334640cde1SColin Riley     CommandObjectRenderScriptRuntimeContext(CommandInterpreter &interpreter)
34344640cde1SColin Riley         : CommandObjectMultiword(interpreter, "renderscript context", "Commands that deal with renderscript contexts.",
34354640cde1SColin Riley                                  NULL)
34364640cde1SColin Riley     {
34374640cde1SColin Riley         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeContextDump(interpreter)));
34384640cde1SColin Riley     }
34394640cde1SColin Riley 
3440222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeContext() override = default;
34414640cde1SColin Riley };
34424640cde1SColin Riley 
3443a0f08674SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationDump : public CommandObjectParsed
3444a0f08674SEwan Crawford {
3445a0f08674SEwan Crawford public:
3446a0f08674SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationDump(CommandInterpreter &interpreter)
3447a0f08674SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation dump",
3448a0f08674SEwan Crawford                               "Displays the contents of a particular allocation", "renderscript allocation dump <ID>",
3449a0f08674SEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched), m_options(interpreter)
3450a0f08674SEwan Crawford     {
3451a0f08674SEwan Crawford     }
3452a0f08674SEwan Crawford 
3453222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationDump() override = default;
3454222b937cSEugene Zelenko 
3455222b937cSEugene Zelenko     Options*
3456222b937cSEugene Zelenko     GetOptions() override
3457a0f08674SEwan Crawford     {
3458a0f08674SEwan Crawford         return &m_options;
3459a0f08674SEwan Crawford     }
3460a0f08674SEwan Crawford 
3461a0f08674SEwan Crawford     class CommandOptions : public Options
3462a0f08674SEwan Crawford     {
3463a0f08674SEwan Crawford     public:
3464a0f08674SEwan Crawford         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter)
3465a0f08674SEwan Crawford         {
3466a0f08674SEwan Crawford         }
3467a0f08674SEwan Crawford 
3468222b937cSEugene Zelenko         ~CommandOptions() override = default;
3469a0f08674SEwan Crawford 
3470222b937cSEugene Zelenko         Error
3471222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
3472a0f08674SEwan Crawford         {
3473a0f08674SEwan Crawford             Error error;
3474a0f08674SEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
3475a0f08674SEwan Crawford 
3476a0f08674SEwan Crawford             switch (short_option)
3477a0f08674SEwan Crawford             {
3478a0f08674SEwan Crawford                 case 'f':
3479a0f08674SEwan Crawford                     m_outfile.SetFile(option_arg, true);
3480a0f08674SEwan Crawford                     if (m_outfile.Exists())
3481a0f08674SEwan Crawford                     {
3482a0f08674SEwan Crawford                         m_outfile.Clear();
3483a0f08674SEwan Crawford                         error.SetErrorStringWithFormat("file already exists: '%s'", option_arg);
3484a0f08674SEwan Crawford                     }
3485a0f08674SEwan Crawford                     break;
3486a0f08674SEwan Crawford                 default:
3487a0f08674SEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
3488a0f08674SEwan Crawford                     break;
3489a0f08674SEwan Crawford             }
3490a0f08674SEwan Crawford             return error;
3491a0f08674SEwan Crawford         }
3492a0f08674SEwan Crawford 
3493a0f08674SEwan Crawford         void
3494222b937cSEugene Zelenko         OptionParsingStarting() override
3495a0f08674SEwan Crawford         {
3496a0f08674SEwan Crawford             m_outfile.Clear();
3497a0f08674SEwan Crawford         }
3498a0f08674SEwan Crawford 
3499a0f08674SEwan Crawford         const OptionDefinition*
3500222b937cSEugene Zelenko         GetDefinitions() override
3501a0f08674SEwan Crawford         {
3502a0f08674SEwan Crawford             return g_option_table;
3503a0f08674SEwan Crawford         }
3504a0f08674SEwan Crawford 
3505a0f08674SEwan Crawford         static OptionDefinition g_option_table[];
3506a0f08674SEwan Crawford         FileSpec m_outfile;
3507a0f08674SEwan Crawford     };
3508a0f08674SEwan Crawford 
3509a0f08674SEwan Crawford     bool
3510222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
3511a0f08674SEwan Crawford     {
3512a0f08674SEwan Crawford         const size_t argc = command.GetArgumentCount();
3513a0f08674SEwan Crawford         if (argc < 1)
3514a0f08674SEwan Crawford         {
3515a0f08674SEwan Crawford             result.AppendErrorWithFormat("'%s' takes 1 argument, an allocation ID. As well as an optional -f argument",
3516a0f08674SEwan Crawford                                          m_cmd_name.c_str());
3517a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
3518a0f08674SEwan Crawford             return false;
3519a0f08674SEwan Crawford         }
3520a0f08674SEwan Crawford 
3521a0f08674SEwan Crawford         RenderScriptRuntime *runtime =
3522a0f08674SEwan Crawford           static_cast<RenderScriptRuntime *>(m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
3523a0f08674SEwan Crawford 
3524a0f08674SEwan Crawford         const char* id_cstr = command.GetArgumentAtIndex(0);
3525a0f08674SEwan Crawford         bool convert_complete = false;
3526a0f08674SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
3527a0f08674SEwan Crawford         if (!convert_complete)
3528a0f08674SEwan Crawford         {
3529a0f08674SEwan Crawford             result.AppendErrorWithFormat("invalid allocation id argument '%s'", id_cstr);
3530a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
3531a0f08674SEwan Crawford             return false;
3532a0f08674SEwan Crawford         }
3533a0f08674SEwan Crawford 
3534a0f08674SEwan Crawford         Stream* output_strm = nullptr;
3535a0f08674SEwan Crawford         StreamFile outfile_stream;
3536a0f08674SEwan Crawford         const FileSpec &outfile_spec = m_options.m_outfile; // Dump allocation to file instead
3537a0f08674SEwan Crawford         if (outfile_spec)
3538a0f08674SEwan Crawford         {
3539a0f08674SEwan Crawford             // Open output file
3540a0f08674SEwan Crawford             char path[256];
3541a0f08674SEwan Crawford             outfile_spec.GetPath(path, sizeof(path));
3542a0f08674SEwan Crawford             if (outfile_stream.GetFile().Open(path, File::eOpenOptionWrite | File::eOpenOptionCanCreate).Success())
3543a0f08674SEwan Crawford             {
3544a0f08674SEwan Crawford                 output_strm = &outfile_stream;
3545a0f08674SEwan Crawford                 result.GetOutputStream().Printf("Results written to '%s'", path);
3546a0f08674SEwan Crawford                 result.GetOutputStream().EOL();
3547a0f08674SEwan Crawford             }
3548a0f08674SEwan Crawford             else
3549a0f08674SEwan Crawford             {
3550a0f08674SEwan Crawford                 result.AppendErrorWithFormat("Couldn't open file '%s'", path);
3551a0f08674SEwan Crawford                 result.SetStatus(eReturnStatusFailed);
3552a0f08674SEwan Crawford                 return false;
3553a0f08674SEwan Crawford             }
3554a0f08674SEwan Crawford         }
3555a0f08674SEwan Crawford         else
3556a0f08674SEwan Crawford             output_strm = &result.GetOutputStream();
3557a0f08674SEwan Crawford 
3558a0f08674SEwan Crawford         assert(output_strm != nullptr);
3559a0f08674SEwan Crawford         bool success = runtime->DumpAllocation(*output_strm, m_exe_ctx.GetFramePtr(), id);
3560a0f08674SEwan Crawford 
3561a0f08674SEwan Crawford         if (success)
3562a0f08674SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
3563a0f08674SEwan Crawford         else
3564a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
3565a0f08674SEwan Crawford 
3566a0f08674SEwan Crawford         return true;
3567a0f08674SEwan Crawford     }
3568a0f08674SEwan Crawford 
3569a0f08674SEwan Crawford private:
3570a0f08674SEwan Crawford     CommandOptions m_options;
3571a0f08674SEwan Crawford };
3572a0f08674SEwan Crawford 
3573a0f08674SEwan Crawford OptionDefinition
3574a0f08674SEwan Crawford CommandObjectRenderScriptRuntimeAllocationDump::CommandOptions::g_option_table[] =
3575a0f08674SEwan Crawford {
3576a0f08674SEwan Crawford     { LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename,
3577a0f08674SEwan Crawford       "Print results to specified file instead of command line."},
3578a0f08674SEwan Crawford     { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
3579a0f08674SEwan Crawford };
3580a0f08674SEwan Crawford 
358115f2bd95SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationList : public CommandObjectParsed
358215f2bd95SEwan Crawford {
358315f2bd95SEwan Crawford public:
358415f2bd95SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationList(CommandInterpreter &interpreter)
358515f2bd95SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation list",
358615f2bd95SEwan Crawford                               "List renderscript allocations and their information.", "renderscript allocation list",
358715f2bd95SEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched), m_options(interpreter)
358815f2bd95SEwan Crawford     {
358915f2bd95SEwan Crawford     }
359015f2bd95SEwan Crawford 
3591222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationList() override = default;
3592222b937cSEugene Zelenko 
3593222b937cSEugene Zelenko     Options*
3594222b937cSEugene Zelenko     GetOptions() override
359515f2bd95SEwan Crawford     {
359615f2bd95SEwan Crawford         return &m_options;
359715f2bd95SEwan Crawford     }
359815f2bd95SEwan Crawford 
359915f2bd95SEwan Crawford     class CommandOptions : public Options
360015f2bd95SEwan Crawford     {
360115f2bd95SEwan Crawford     public:
360215f2bd95SEwan Crawford         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter), m_refresh(false)
360315f2bd95SEwan Crawford         {
360415f2bd95SEwan Crawford         }
360515f2bd95SEwan Crawford 
3606222b937cSEugene Zelenko         ~CommandOptions() override = default;
360715f2bd95SEwan Crawford 
3608222b937cSEugene Zelenko         Error
3609222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
361015f2bd95SEwan Crawford         {
361115f2bd95SEwan Crawford             Error error;
361215f2bd95SEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
361315f2bd95SEwan Crawford 
361415f2bd95SEwan Crawford             switch (short_option)
361515f2bd95SEwan Crawford             {
361615f2bd95SEwan Crawford                 case 'r':
361715f2bd95SEwan Crawford                     m_refresh = true;
361815f2bd95SEwan Crawford                     break;
361915f2bd95SEwan Crawford                 default:
362015f2bd95SEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
362115f2bd95SEwan Crawford                     break;
362215f2bd95SEwan Crawford             }
362315f2bd95SEwan Crawford             return error;
362415f2bd95SEwan Crawford         }
362515f2bd95SEwan Crawford 
362615f2bd95SEwan Crawford         void
3627222b937cSEugene Zelenko         OptionParsingStarting() override
362815f2bd95SEwan Crawford         {
362915f2bd95SEwan Crawford             m_refresh = false;
363015f2bd95SEwan Crawford         }
363115f2bd95SEwan Crawford 
363215f2bd95SEwan Crawford         const OptionDefinition*
3633222b937cSEugene Zelenko         GetDefinitions() override
363415f2bd95SEwan Crawford         {
363515f2bd95SEwan Crawford             return g_option_table;
363615f2bd95SEwan Crawford         }
363715f2bd95SEwan Crawford 
363815f2bd95SEwan Crawford         static OptionDefinition g_option_table[];
363915f2bd95SEwan Crawford         bool m_refresh;
364015f2bd95SEwan Crawford     };
364115f2bd95SEwan Crawford 
364215f2bd95SEwan Crawford     bool
3643222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
364415f2bd95SEwan Crawford     {
364515f2bd95SEwan Crawford         RenderScriptRuntime *runtime =
364615f2bd95SEwan Crawford           static_cast<RenderScriptRuntime *>(m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
364715f2bd95SEwan Crawford         runtime->ListAllocations(result.GetOutputStream(), m_exe_ctx.GetFramePtr(), m_options.m_refresh);
364815f2bd95SEwan Crawford         result.SetStatus(eReturnStatusSuccessFinishResult);
364915f2bd95SEwan Crawford         return true;
365015f2bd95SEwan Crawford     }
365115f2bd95SEwan Crawford 
365215f2bd95SEwan Crawford private:
365315f2bd95SEwan Crawford     CommandOptions m_options;
365415f2bd95SEwan Crawford };
365515f2bd95SEwan Crawford 
365615f2bd95SEwan Crawford OptionDefinition
365715f2bd95SEwan Crawford CommandObjectRenderScriptRuntimeAllocationList::CommandOptions::g_option_table[] =
365815f2bd95SEwan Crawford {
365915f2bd95SEwan Crawford     { LLDB_OPT_SET_1, false, "refresh", 'r', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone,
366015f2bd95SEwan Crawford       "Recompute allocation details."},
366115f2bd95SEwan Crawford     { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
366215f2bd95SEwan Crawford };
366315f2bd95SEwan Crawford 
366455232f09SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationLoad : public CommandObjectParsed
366555232f09SEwan Crawford {
366655232f09SEwan Crawford public:
366755232f09SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationLoad(CommandInterpreter &interpreter)
366855232f09SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation load",
366955232f09SEwan Crawford                               "Loads renderscript allocation contents from a file.", "renderscript allocation load <ID> <filename>",
367055232f09SEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
367155232f09SEwan Crawford     {
367255232f09SEwan Crawford     }
367355232f09SEwan Crawford 
3674222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationLoad() override = default;
367555232f09SEwan Crawford 
367655232f09SEwan Crawford     bool
3677222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
367855232f09SEwan Crawford     {
367955232f09SEwan Crawford         const size_t argc = command.GetArgumentCount();
368055232f09SEwan Crawford         if (argc != 2)
368155232f09SEwan Crawford         {
368255232f09SEwan Crawford             result.AppendErrorWithFormat("'%s' takes 2 arguments, an allocation ID and filename to read from.", m_cmd_name.c_str());
368355232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
368455232f09SEwan Crawford             return false;
368555232f09SEwan Crawford         }
368655232f09SEwan Crawford 
368755232f09SEwan Crawford         RenderScriptRuntime *runtime =
368855232f09SEwan Crawford           static_cast<RenderScriptRuntime *>(m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
368955232f09SEwan Crawford 
369055232f09SEwan Crawford         const char* id_cstr = command.GetArgumentAtIndex(0);
369155232f09SEwan Crawford         bool convert_complete = false;
369255232f09SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
369355232f09SEwan Crawford         if (!convert_complete)
369455232f09SEwan Crawford         {
369555232f09SEwan Crawford             result.AppendErrorWithFormat ("invalid allocation id argument '%s'", id_cstr);
369655232f09SEwan Crawford             result.SetStatus (eReturnStatusFailed);
369755232f09SEwan Crawford             return false;
369855232f09SEwan Crawford         }
369955232f09SEwan Crawford 
370055232f09SEwan Crawford         const char* filename = command.GetArgumentAtIndex(1);
370155232f09SEwan Crawford         bool success = runtime->LoadAllocation(result.GetOutputStream(), id, filename, m_exe_ctx.GetFramePtr());
370255232f09SEwan Crawford 
370355232f09SEwan Crawford         if (success)
370455232f09SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
370555232f09SEwan Crawford         else
370655232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
370755232f09SEwan Crawford 
370855232f09SEwan Crawford         return true;
370955232f09SEwan Crawford     }
371055232f09SEwan Crawford };
371155232f09SEwan Crawford 
371255232f09SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationSave : public CommandObjectParsed
371355232f09SEwan Crawford {
371455232f09SEwan Crawford public:
371555232f09SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationSave(CommandInterpreter &interpreter)
371655232f09SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation save",
371755232f09SEwan Crawford                               "Write renderscript allocation contents to a file.", "renderscript allocation save <ID> <filename>",
371855232f09SEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
371955232f09SEwan Crawford     {
372055232f09SEwan Crawford     }
372155232f09SEwan Crawford 
3722222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationSave() override = default;
372355232f09SEwan Crawford 
372455232f09SEwan Crawford     bool
3725222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
372655232f09SEwan Crawford     {
372755232f09SEwan Crawford         const size_t argc = command.GetArgumentCount();
372855232f09SEwan Crawford         if (argc != 2)
372955232f09SEwan Crawford         {
373055232f09SEwan Crawford             result.AppendErrorWithFormat("'%s' takes 2 arguments, an allocation ID and filename to read from.", m_cmd_name.c_str());
373155232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
373255232f09SEwan Crawford             return false;
373355232f09SEwan Crawford         }
373455232f09SEwan Crawford 
373555232f09SEwan Crawford         RenderScriptRuntime *runtime =
373655232f09SEwan Crawford           static_cast<RenderScriptRuntime *>(m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
373755232f09SEwan Crawford 
373855232f09SEwan Crawford         const char* id_cstr = command.GetArgumentAtIndex(0);
373955232f09SEwan Crawford         bool convert_complete = false;
374055232f09SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
374155232f09SEwan Crawford         if (!convert_complete)
374255232f09SEwan Crawford         {
374355232f09SEwan Crawford             result.AppendErrorWithFormat ("invalid allocation id argument '%s'", id_cstr);
374455232f09SEwan Crawford             result.SetStatus (eReturnStatusFailed);
374555232f09SEwan Crawford             return false;
374655232f09SEwan Crawford         }
374755232f09SEwan Crawford 
374855232f09SEwan Crawford         const char* filename = command.GetArgumentAtIndex(1);
374955232f09SEwan Crawford         bool success = runtime->SaveAllocation(result.GetOutputStream(), id, filename, m_exe_ctx.GetFramePtr());
375055232f09SEwan Crawford 
375155232f09SEwan Crawford         if (success)
375255232f09SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
375355232f09SEwan Crawford         else
375455232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
375555232f09SEwan Crawford 
375655232f09SEwan Crawford         return true;
375755232f09SEwan Crawford     }
375855232f09SEwan Crawford };
375955232f09SEwan Crawford 
376015f2bd95SEwan Crawford class CommandObjectRenderScriptRuntimeAllocation : public CommandObjectMultiword
376115f2bd95SEwan Crawford {
376215f2bd95SEwan Crawford public:
376315f2bd95SEwan Crawford     CommandObjectRenderScriptRuntimeAllocation(CommandInterpreter &interpreter)
376415f2bd95SEwan Crawford         : CommandObjectMultiword(interpreter, "renderscript allocation", "Commands that deal with renderscript allocations.",
376515f2bd95SEwan Crawford                                  NULL)
376615f2bd95SEwan Crawford     {
376715f2bd95SEwan Crawford         LoadSubCommand("list", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationList(interpreter)));
3768a0f08674SEwan Crawford         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationDump(interpreter)));
376955232f09SEwan Crawford         LoadSubCommand("save", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationSave(interpreter)));
377055232f09SEwan Crawford         LoadSubCommand("load", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationLoad(interpreter)));
377115f2bd95SEwan Crawford     }
377215f2bd95SEwan Crawford 
3773222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocation() override = default;
377415f2bd95SEwan Crawford };
377515f2bd95SEwan Crawford 
37764640cde1SColin Riley class CommandObjectRenderScriptRuntimeStatus : public CommandObjectParsed
37774640cde1SColin Riley {
37784640cde1SColin Riley public:
37794640cde1SColin Riley     CommandObjectRenderScriptRuntimeStatus(CommandInterpreter &interpreter)
37804640cde1SColin Riley         : CommandObjectParsed(interpreter, "renderscript status",
37814640cde1SColin Riley                               "Displays current renderscript runtime status.", "renderscript status",
37824640cde1SColin Riley                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
37834640cde1SColin Riley     {
37844640cde1SColin Riley     }
37854640cde1SColin Riley 
3786222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeStatus() override = default;
37874640cde1SColin Riley 
37884640cde1SColin Riley     bool
3789222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
37904640cde1SColin Riley     {
37914640cde1SColin Riley         RenderScriptRuntime *runtime =
37924640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
37934640cde1SColin Riley         runtime->Status(result.GetOutputStream());
37944640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
37954640cde1SColin Riley         return true;
37964640cde1SColin Riley     }
37974640cde1SColin Riley };
37984640cde1SColin Riley 
37995ec532a9SColin Riley class CommandObjectRenderScriptRuntime : public CommandObjectMultiword
38005ec532a9SColin Riley {
38015ec532a9SColin Riley public:
38025ec532a9SColin Riley     CommandObjectRenderScriptRuntime(CommandInterpreter &interpreter)
38035ec532a9SColin Riley         : CommandObjectMultiword(interpreter, "renderscript", "A set of commands for operating on renderscript.",
38045ec532a9SColin Riley                                  "renderscript <subcommand> [<subcommand-options>]")
38055ec532a9SColin Riley     {
38065ec532a9SColin Riley         LoadSubCommand("module", CommandObjectSP(new CommandObjectRenderScriptRuntimeModule(interpreter)));
38074640cde1SColin Riley         LoadSubCommand("status", CommandObjectSP(new CommandObjectRenderScriptRuntimeStatus(interpreter)));
38084640cde1SColin Riley         LoadSubCommand("kernel", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernel(interpreter)));
38094640cde1SColin Riley         LoadSubCommand("context", CommandObjectSP(new CommandObjectRenderScriptRuntimeContext(interpreter)));
381015f2bd95SEwan Crawford         LoadSubCommand("allocation", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocation(interpreter)));
38115ec532a9SColin Riley     }
38125ec532a9SColin Riley 
3813222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntime() override = default;
38145ec532a9SColin Riley };
3815ef20b08fSColin Riley 
3816ef20b08fSColin Riley void
3817ef20b08fSColin Riley RenderScriptRuntime::Initiate()
38185ec532a9SColin Riley {
3819ef20b08fSColin Riley     assert(!m_initiated);
38205ec532a9SColin Riley }
3821ef20b08fSColin Riley 
3822ef20b08fSColin Riley RenderScriptRuntime::RenderScriptRuntime(Process *process)
38237dc7771cSEwan Crawford     : lldb_private::CPPLanguageRuntime(process), m_initiated(false), m_debuggerPresentFlagged(false),
38247dc7771cSEwan Crawford       m_breakAllKernels(false)
3825ef20b08fSColin Riley {
38264640cde1SColin Riley     ModulesDidLoad(process->GetTarget().GetImages());
3827ef20b08fSColin Riley }
38284640cde1SColin Riley 
38294640cde1SColin Riley lldb::CommandObjectSP
38304640cde1SColin Riley RenderScriptRuntime::GetCommandObject(lldb_private::CommandInterpreter& interpreter)
38314640cde1SColin Riley {
38324640cde1SColin Riley     static CommandObjectSP command_object;
38334640cde1SColin Riley     if(!command_object)
38344640cde1SColin Riley     {
38354640cde1SColin Riley         command_object.reset(new CommandObjectRenderScriptRuntime(interpreter));
38364640cde1SColin Riley     }
38374640cde1SColin Riley     return command_object;
38384640cde1SColin Riley }
38394640cde1SColin Riley 
384078f339d1SEwan Crawford RenderScriptRuntime::~RenderScriptRuntime() = default;
3841