[lldb-dev] Missed breakpoint

2016-03-20 Thread Dean De Leo via lldb-dev
Hi, we have been observing that, sporadically, an internal callback set for a breakpoint is not invoked. We are setting an hidden breakpoint in the renderscript plugin through: breakpoint = target.CreateBreakpoint(symbol_address, true, false); breakpoint->SetCallback(rs_callback, rs_baton, tru

Re: [lldb-dev] Passing as argument an array in a function call

2015-12-18 Thread Dean De Leo via lldb-dev
V ABI but I haven't verified it. Tamas On Wed, Dec 16, 2015 at 6:37 PM Greg Clayton via lldb-dev mailto:lldb-dev@lists.llvm.org>> wrote: > On Dec 16, 2015, at 6:06 AM, Dean De Leo via lldb-dev mailto:lldb-dev@lists.llvm.org>> wrote: > > Hi, >

[lldb-dev] Passing as argument an array in a function call

2015-12-16 Thread Dean De Leo via lldb-dev
Hi, assume we wish to use the expression evaluator to invoke a function from lldb, setting the result into an array passed as parameter, e.g: void test1(uint32_t* d) { for(int i = 0; i < 6; i++){ d[i] = 42 + i; } } where the expected output should be d = {42,43,44,45,46,47}. Ho