Displaying 3 results from an estimated 3 matches for "lldbsuit".
Did you mean:
lldbsuite
2019 Jul 11
6
8.0.1-rc4 release has been tagged.
Hi,
I've tagged the 8.0.1-rc4 release, please begin testing. This will (hopefully)
be the last release candidate. If all goes well, I will tag the final release
next Wednesday.
-Tom
2017 Nov 30
2
PPC64 Disassembler
The `isBranch` flag is already set on the branch instructions. Furthermore,
we do use the `isBranch()` query in a few places in the PPC back end, so
this does work. Perhaps there's something specific about the lldb usage? Is
it somehow possible that the `isBranch()` query is called on the wrong
instruction?
Would you be able to provide a test case that reproduces the issue?
On Thu, Nov 30,
2017 Nov 30
2
PPC64 Disassembler
...et, but I think that opcode is for XXLNOR instruction.
Could it be disassembling to `// Inst #2014 = gBC` instead which does not
have the branch flag set? Adding Hal and Ulrich in case they have some
extra insight here.
Test case:
>
>
>
> - Build the file “lldb/packages/Python/lldbsuite/test/
> functionalities/stop-hook/main.cpp”
>
> - Run LLDB with the binary just generated
>
> - Add the breakpoint “b main.cpp:30”
>
> - Send the command “n”, stepping over to next line.
>
> Result: The debugger will not stop and will execute t...