We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm writing a eBPF-based profiler for C++ and Lua script recently, I unwind stacks in BPF similar to what cargo-trace does.
I found that stask frames always break when rip goes into address range of uprobes, because no unwind rules for uprobe trampoline in dwarf.
7ffdb018c000-7ffdb018e000 r-xp 00000000 00:00 0 [vdso] 7fffffffe000-7ffffffff000 --xp 00000000 00:00 0 [uprobes] ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
I have no idea how to unwind through it. Any suggestions?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm writing a eBPF-based profiler for C++ and Lua script recently, I unwind stacks in BPF similar to what cargo-trace does.
I found that stask frames always break when rip goes into address range of uprobes, because no unwind rules for uprobe trampoline in dwarf.
I have no idea how to unwind through it. Any suggestions?
The text was updated successfully, but these errors were encountered: