-
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: reuse allocated value in interface #23677
Comments
I think |
I've run into this too, where I have code like:
Where I could also store the values under pointers or struct pointers, assuming that a pointer can fit into an interface without allocating. But that would also make the API a bit more complex and verbose, when it need not be. I'm wondering if my API design is just bad and will always incur an allocation per iteration, or if the compiler could do something there. |
Given @cznic's observation, I don't see what we can do here. Am I missing something? |
@josharian kindly pointed out that my case is different, since the value changes at every iteration. So the allocation must be there, at least in the general case. |
Closing as unfixable. Please comment or re-open if you think I have this wrong. |
Consider the following snippet:
This prints:
On every iteration, it is calling
runtime.convT2Estring
. It should be able to figure out that theruntime.eface._type
is identical and also a non-pointer kind. In that situation, it should be able to just reuse that previously allocated value.This should be safe, since Go does not allow you to take the address of a interface value:
Thus, nothing else should be referencing the underlying value (unless unsafe was used).
The text was updated successfully, but these errors were encountered: