-
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/compile: recognize x[:] of global array x as static data #7651
Labels
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
Comments
Comment 2 by mpvl@audacitycapital.com: No, either one works. More importantly. Just writing var a as a slice works as well (see code below). So there is a workaround. // This works: var f = foo{ arr: a, } var a = []int{3} |
Removing the use of a[:] lets the linker drop the variable, no matter what. That slice operation happens in a generated func init either way. If we recognized that in the 'init->static' converter it would always get collected. I've changed the bug report to track that. The confusion about {} vs {3} happens because if you use {} the binary gets smaller, because 'a' is moved into the bss. But it's still there if and only if a[:] is used in the original. Here are four test cases showing the variations from the original report: g% cat x1.go # original report package main func main() {} type foo struct { arr []int } var f = foo{arr: a[:]} var a = [1000111]int{3} g% cat x2.go # {3} -> {} package main func main() {} type foo struct { arr []int } var f = foo{arr: a[:]} var a = [1000111]int{} g% cat x3.go # foo{a[:]} -> foo{} package main func main() {} type foo struct { arr []int } var f = foo{} var a = [1000111]int{3} g% cat x4.go # {3} -> {}, foo{a[:]} -> foo{} package main func main() {} type foo struct { arr []int } var f = foo{} var a = [1000111]int{} # a still here for both {} and {3}. difference in size is initialized data vs bss. g% go build x1.go && echo $(go tool nm x1 | grep main.a) $(ls -l x1) 55020 D main.a -rwxr-xr-x 1 rsc 5000 8490784 Apr 24 17:29 x1 g% go build x2.go && echo $(go tool nm x2 | grep main.a) $(ls -l x2) 75ce0 B main.a -rwxr-xr-x 1 rsc 5000 487200 Apr 24 17:29 x2 # removing use of a removes from binary (no nm output) g% go build x3.go && echo $(go tool nm x3 | grep main.a) $(ls -l x3) -rwxr-xr-x 1 rsc 5000 483024 Apr 24 17:30 x3 g% go build x4.go && echo $(go tool nm x4 | grep main.a) $(ls -l x4) -rwxr-xr-x 1 rsc 5000 483024 Apr 24 17:30 x4 Labels changed: added release-go1.4, removed release-go1.3maybe. |
Too late for Go 1.5. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
The text was updated successfully, but these errors were encountered: