go/test/interface
Russ Cox 196b663075 gc: implement == on structs and arrays
To allow these types as map keys, we must fill in
equal and hash functions in their algorithm tables.
Structs or arrays that are "just memory", like [2]int,
can and do continue to use the AMEM algorithm.
Structs or arrays that contain special values like
strings or interface values use generated functions
for both equal and hash.

The runtime helper func runtime.equal(t, x, y) bool handles
the general equality case for x == y and calls out to
the equal implementation in the algorithm table.

For short values (<= 4 struct fields or array elements),
the sequence of elementwise comparisons is inlined
instead of calling runtime.equal.

R=ken, mpimenov
CC=golang-dev
https://golang.org/cl/5451105
2011-12-12 22:22:09 -05:00
..
bigdata.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
convert1.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
convert2.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
convert.go single argument panic 2010-03-30 10:34:57 -07:00
embed0.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
embed1.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
embed2.go gc, spec, tests: no auto-indirect of pointer to interface value 2010-09-30 14:59:41 -04:00
embed.go gc, spec, tests: no auto-indirect of pointer to interface value 2010-09-30 14:59:41 -04:00
explicit.go errchk: allow multiple patterns 2011-08-16 11:14:26 -04:00
fail.go test: silence/coalesce some tests 2011-09-26 19:35:21 -04:00
fake.go reflect: disallow Interface method on Value obtained via unexported name 2011-10-17 18:48:45 -04:00
noeq.go gc: implement == on structs and arrays 2011-12-12 22:22:09 -05:00
pointer.go test: match gccgo error messages 2011-09-21 17:25:48 -07:00
private1.go test: add test for interfaces with unexported methods. 2011-03-29 15:04:19 -07:00
private.go test: add test for interfaces with unexported methods. 2011-03-29 15:04:19 -07:00
receiver1.go gc: new typechecking rules 2010-06-08 18:50:02 -07:00
receiver.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00
recursive.go delete forward type declarations 2009-08-12 14:40:47 -07:00
returntype.go test: silence/coalesce some tests 2011-09-26 19:35:21 -04:00
struct.go test: remove semiocolons. 2010-09-04 10:36:13 +10:00