[PATCH] D42582: [lldb][PPC64] Fixed step-in stopping in the wrong line

Greg Clayton via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 2 11:37:29 PST 2018


clayborg added a comment.

Question: if you have a global entry point, is there ever any reason to stop at these? Is there anything you can debug in the global entry point? Does a global entry point always forward on to a local entry point? Does the local entry point always exists and is it the only thing that can be debugged? If so, then it sounds like we should mark the global entry point as a trampoline by setting the symbol type to lldb::eSymbolTypeTrampoline. Then all stepping logic will automatically just go through this code.


https://reviews.llvm.org/D42582





More information about the llvm-commits mailing list