summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
diff options
context:
space:
mode:
authorAidan Dodds <aidan@codeplay.com>2015-09-18 16:49:39 +0000
committerAidan Dodds <aidan@codeplay.com>2015-09-18 16:49:39 +0000
commit827802871bb3de43ea8627efb1278f81fb7fb280 (patch)
treeed9a1180f9c1b0f58a5ca203f19e35b487cd6892 /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
parent6165d31a8395efd19d049e24b06ca70c37f71228 (diff)
downloadbcm5719-llvm-827802871bb3de43ea8627efb1278f81fb7fb280.tar.gz
bcm5719-llvm-827802871bb3de43ea8627efb1278f81fb7fb280.zip
Differential Revision: http://reviews.llvm.org/D12966
On behalf of Dean De Leo llvm-svn: 248003
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
index 42b4fe1d9ba..c2998de78bb 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
@@ -237,7 +237,8 @@ class RenderScriptRuntime : public lldb_private::CPPLanguageRuntime
struct HookDefn
{
const char * name;
- const char * symbol_name;
+ const char * symbol_name_m32; // mangled name for the 32 bit architectures
+ const char * symbol_name_m64; // mangled name for the 64 bit archs
uint32_t version;
ModuleKind kind;
CaptureStateFn grabber;
@@ -286,7 +287,7 @@ class RenderScriptRuntime : public lldb_private::CPPLanguageRuntime
void HookCallback(RuntimeHook* hook_info, ExecutionContext& context);
- bool GetArg32Simple(ExecutionContext& context, uint32_t arg, uint32_t *data);
+ bool GetArgSimple(ExecutionContext& context, uint32_t arg, uint64_t* data);
void CaptureScriptInit1(RuntimeHook* hook_info, ExecutionContext& context);
void CaptureAllocationInit1(RuntimeHook* hook_info, ExecutionContext& context);
OpenPOWER on IntegriCloud