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
I use pstack to dump lua5.4 callstack in script
pstack
lua5.4
while true do print "" end
the pstack output as follow:
#8 0x000055e26798f041 in luaV_execute(L=1(0x1){r5}, ci=(null))+1584 in /home/zhoupy/silly/deps/lua/lua at lvm.c:1684
In fact, the L parameter is in rbx(r3).
L
The L parameter is incorrect, and the gdb can show the correct value.
gdb
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use
pstack
to dumplua5.4
callstack in scriptthe pstack output as follow:
In fact, the
L
parameter is in rbx(r3).The
L
parameter is incorrect, and thegdb
can show the correct value.The text was updated successfully, but these errors were encountered: