-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
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
cmd/compiler,cmd/link: cannot distinguish between parameters and return values of DW_TAG_subroutine_type #48812
Comments
CC @thanm @aclements |
DWARF type generation currently doesn't emit this info-- I don't think anyone has seen a need for it. Can you describe your use case? Thanks. |
Thanks for replying. I was trying to analyze DWARF data from a go program binary and reconstruct the struct types it declared, then I found the parameters and returns for DW_TAG_subroutine_type are all tagged as DW_TAG_formal_parameter. I am not familiar with DWARF. I've searched for http://dwarfstd.org/doc/DWARF4.pdf and still didn't get it. Could you please tell me what I suppose to look for? Thanks. |
The convention used by the Go compiler in other instances (specifically, for params on subprogram DIEs as opposed to params on subroutine type DIEs) is to mark returns with the DW_AT_variable_parameter attribute with value 1. So for example a return might look like
But as I mentioned, our compiler/linker currently doesn't emit this attribute for parameters that are part of a subroutine type DIE, only for parameters that are part of a subprogram DIE. DWARF allows for a lot of flexibility on the part of compilers in terms of what information gets included for a given entity. For example, we could if we wanted to be emitting DW_AT_decl_column, DW_AT_decl_file, and/or DW_AT_decl_line attributes for parameter DIEs (they are allowed by the spec), but we don't, since few tools require them or make use of them. Adding more attributes to the parameters in subroutine type DIEs would increase the size of the generated DWARF. Generally we don't want to do that (make binaries bigger) unless there is a good reason. Hence my question about your use case. |
Timed out in state WaitingForInfo. Closing. (I am just a bot, though. Please speak up if this is a mistake or you have the requested information.) |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
haven't tried yet.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Build the code below with
go build -gcflags='-l -N'
:The DWARF information for main.Foo.FooBar is
DW_TAG_subroutine_type
which has twoDW_TAG_formal_parameter
children and one TAG 0 (invalid).It is difficult to distinguish the parameters of a function from the return value just from the DWARF data.
What did you expect to see?
Q: Is there an attribute or something to indicate whether or not a tag is a parameter or a return value.
What did you see instead?
DWARF data related:
The text was updated successfully, but these errors were encountered: