Open cherrymui opened 5 years ago
The symbols do have different names in the object file: main..1main.T.M1..func1
and main..1main.T.M2..func1
. (These names are set by Gogo::nested_function_name
in names.cc). But the names in the debug info are indeed both main.func1
. I think the confusion is happening in Named_object::get_id
; I think that does an unfortunate munging of the full names.
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?Linux/AMD64
What did you do?
Built with gccgo, this program prints
The closures on line 7 and 8 are different functions, yet have the same name, which is confusing. It is ok that closures have somewhat artificial names, but it is super confusing if different closures have the name.
It appears to me (without checking the source code) that if the closures are defined in global scope or inside a function (NOT method), they are properly named as
package_name.funcN
orpackage_name.function_name.funcN
with properN
. However, if they are defined in methods, they are all namedpackage_name.funcN
withN
starting from 1 in each method. In this case, the two closures are defined in two different methods, and both namedmain.func1
.cc @ianlancetaylor @thanm