←back to thread

480 points jedeusus | 2 comments | | HN request time: 0s | source
Show context
dennis-tra ◴[] No.43545831[source]
Can someone explain to me why the compiler can’t do struct-field-alignment? This feels like something that can easily be automated.
replies(3): >>43545865 #>>43549815 #>>43554401 #
CamouflagedKiwi ◴[] No.43545865[source]
Because the order of fields can be significant. It's very relevant for syscalls, and is observable via the reflect package; it'd be strange if the field order was arbitrarily changed (and might change further between releases).

I assume the thinking was that this is pretty easy to optimise if you care, and if it's on by default there'd then have to be some opt-out which there isn't a good mechanism for.

replies(2): >>43545977 #>>43549682 #
1. 9rx ◴[] No.43549682[source]
> and if it's on by default there'd then have to be some opt-out which there isn't a good mechanism for.

Good is subjective, but the mechanism is something already implemented: https://pkg.go.dev/structs#HostLayout

replies(1): >>43556694 #
2. CamouflagedKiwi ◴[] No.43556694[source]
Oh interesting, I've not encountered that before - I suppose because it is currently the default behaviour.

What I was hoping not to find (and fortunately didn't!) was one of Go's magical syntactic comments.