search for: sqlite3vdbeaddop2

Displaying 2 results from an estimated 2 matches for "sqlite3vdbeaddop2".

2016 Jun 30
0
Help required regarding IPRA and Local Function optimization
...0x10002d961 <+1953>: movl $0xa, %eax 0x10002d966 <+1958>: movl $0x26, %esi 0x10002d96b <+1963>: cmovnel %eax, %esi 0x10002d96e <+1966>: movq %r12, %rdi ; here value of R12 is clobbered so wrong address is passed as parameter and due to that while executing sqlite3VdbeAddOp2 bed memory access error is raised. 0x10002d971 <+1969>: movq -0x68(%rbp), %rdx 0x10002d975 <+1973>: movl %r13d, %ecx 0x10002d978 <+1976>: callq 0x100019720 ; sqlite3VdbeAddOp2 at sqlite3.c:37297 ... Here is lldb dis result for sqlite3VdbeAddOp3:...
2016 Jun 30
4
Help required regarding IPRA and Local Function optimization
Hello Mentors, I am currently finding bug in Local Function related optimization due to which runtime failures are observed in some test cases, as those test cases are containing very large function with recursion and object oriented code so I am not able to find a pattern which is causing failure. So I tried following simple case to understand expected behavior from this optimization. Consider