golang / go

The Go programming language
https://go.dev
BSD 3-Clause "New" or "Revised" License
124.38k stars 17.71k forks source link

spec: reference-like properties of channels, slices, and maps not well specified #5083

Open robpike opened 11 years ago

robpike commented 11 years ago
Although other documents such as Effective Go are clear on the subject, the spec is
unclear on the sharing that occurs when channels, maps and slices are assigned to other
variables such as through regular assignment and function calls. For instance, I cannot
find an explanation that changed made by a function with a map argument will be visible
in the caller. It's even more important to specify this for slices, since the header is
not shared but the array is. Channels would never work without this sharing property,
but again it's not well specified.
griesemer commented 11 years ago

Comment 1:

Owner changed to @griesemer.

griesemer commented 11 years ago

Comment 2:

Issue #6529 has been merged into this issue.

rsc commented 11 years ago

Comment 3:

Labels changed: added go1.3maybe.

rsc commented 11 years ago

Comment 4:

Labels changed: added release-none, removed go1.3maybe.

rsc commented 11 years ago

Comment 5:

Labels changed: added repo-main.

nathany commented 10 years ago

Comment 6:

Someone once explained them to me as types containing _unexported pointers_. That seems
to align with the sliceHeader example in http://blog.golang.org/slices.
adonovan commented 9 years ago

Concluding a recent thread https://groups.google.com/d/topic/golang-nuts/86N_xtgcZqo/discussion, I think the the burden is on the spec to make clear

and on the memory model to state

ianlancetaylor commented 9 years ago

I remain unconvinced that we should enforce in the language spec that a map value may be represented by an unsafe.Pointer. We don't specify the internal format of slices or interface values or channels, and I don't think we should specify maps.

adonovan commented 9 years ago

I understand your concern. The (reflect.Value).Pointer method seems to suggest that a map value is just a pointer, but it's not clear what it actually commits us to.

It would be nice if the language provided a reliable and portable way for programs to detect cycles in arbitrary object graphs. This requires a robust notion of identity for maps, channels, functions, and slices. (reflect.Value).Pointer + unsafe.Pointer is sufficient for the first three; slices require runtime.SliceHeader + unsafePointer, which is not portable.

alercah commented 7 years ago

After running into this one again myself, here's a thought. I think the issue is actually most significant for maps and channels, because they refer to programmer-invisible common state. While slices and pointers refer to common state as well, this state is much more explicitly exposed to the programmer for these types, while map and channel state is completely opaque. Functions are in practice similar as well, but because there are no modifying operations on functions, this is irrelevant (an implementation which actually passed around executable code would perhaps have authors in need of a stern talking to, but would not otherwise be an issue).

So I think this could be resolved by:

  1. Invent the concept of an underlying map/channel to which a map and channel value refer (except for nil). I chose "underlying" because it is already in use for slices.
  2. Specify that map and channel operations other than assignment operate on the underlying object. make returns a value pointing to a new underlying object.
  3. Clarify pointers by specifying that a non-nil pointer points to an addressable value, called the underlying variable. Explicitly specify that taking the address of a composite literal is a shorthand for declaring it as a variable and taking its address, to ensure that the value is always addressable.
  4. Clearly specify the effect of assignment: a. For numeric, boolean, and string types, direct value assignment. b. For array and struct types, elementwise assignment per these rules. c. For interface types, assignment of the value per these rules (provide an example like https://play.golang.org/p/Eh3BwAWYI3 since this behaviour can be nonintuitive). d. For map, pointer, slice, and channel types, setting the underlying object and, in the case of a slice, also length and capacity. e. Function types should probably be dinstinguished on their own, and we vaguely say that after assignment, the variable assigned to refers to the same function as the value being assigned.

Thoughts?

griesemer commented 7 years ago

@alercah Thanks for your suggestions! I can't respond in a meaningful way at the moment as this is a non-urgent issue and I haven't spent any time thinking about it more seriously. Just wanted to acknowledge that your feedback is appreciated.

alercah commented 7 years ago

For sure! Some follow-up clarifications:

wilfreddesert commented 2 years ago

Sorry for bringing this up 5 years later, but are there any updates or plans regarding this? Honestly speaking, it still feels like the spec would benefit from mentioning that slices, maps, and channels are references/reference types.

I think this has become even more relevant now that Effective Go is officially frozen and the specification is (at least, in my humble opinion) expected to describe the behavior that might come as a surprise.

griesemer commented 2 years ago

Marking for 1.18 since we're still working on completing the spec for generics. If not 1.18, then 1.19.

griesemer commented 2 years ago

We won't get to this for 1.18. Moving to 1.19 so it stays on the radar.

gopherbot commented 2 years ago

Change https://go.dev/cl/391634 mentions this issue: doc/spec: explain aliasing of map, channel, slice, pointer

gopherbot commented 2 years ago

Change https://go.dev/cl/391634 mentions this issue: doc/spec: explain aliasing of map, channel

gopherbot commented 2 years ago

Change https://go.dev/cl/391635 mentions this issue: doc: memory model: explain map by analogy with pointer to var

gopherbot commented 2 years ago

Change https://go.dev/cl/413615 mentions this issue: spec: retitle section on "Assignments" to "Assignment statements"

gopherbot commented 2 years ago

Change https://go.dev/cl/413714 mentions this issue: spec: add section on value vs reference types

griesemer commented 2 years ago

CL in progress. Not urgent. Moving to 1.20.