-
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: compress static initialization data? #6993
Labels
Milestone
Comments
What were you expecting? This seems obvious to me. The compiler has to store the composite literal data somewhere in the binary. If you want the zero value, use the zero value: func (self *BigData) Clear() { - *self = BigData{} + var zero BigData + *self = zero } Also, you should realize that you're making a bunch of 80MB copies. #WorkingAsIntended |
Still present on tip: go version devel +931cc1aeb3be Wed Jan 22 23:30:52 2014 +0100 linux/arm In this program: http://play.golang.org/p/EikUFnNvqj a big array (not a slice) of a struct is created and accessed with range using the index or the value. It seems that if the struct contains a string (even if not used) AND the struct is accessed using the value, compilation uses a lot of memory and the program produced is really big or even fails to compile. The program in playground uses about 100 MB of RAM to compile and the binary is 54 MB. Removing the string (or replacing it by an array of ints, for example) or removing the second for range loop, will solve the problem. |
For reference, the binary is just 4.2MB now with 1.9.2. |
Ok, I'm going to close this then. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by Tyr.Chen:
The text was updated successfully, but these errors were encountered: