Commit 1b2fbb49 authored by Matthew Dempsky's avatar Matthew Dempsky

cmd/compile: cleanup alg.go for Field slices

Passes toolstash -cmp.

Change-Id: Ie41d7e74847c44a8fd174731374339c6c32b1460
Reviewed-on: https://go-review.googlesource.com/21231
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 62dddd47
...@@ -146,7 +146,7 @@ func algtype1(t *Type, bad **Type) int { ...@@ -146,7 +146,7 @@ func algtype1(t *Type, bad **Type) int {
// Blank fields, padded fields, fields with non-memory // Blank fields, padded fields, fields with non-memory
// equality need special compare. // equality need special compare.
if a != AMEM || isblanksym(f.Sym) || ispaddedfield(t, fields, i) { if a != AMEM || isblanksym(f.Sym) || ispaddedfield(t, i) {
ret = -1 ret = -1
} }
} }
...@@ -253,7 +253,7 @@ func genhash(sym *Sym, t *Type) { ...@@ -253,7 +253,7 @@ func genhash(sym *Sym, t *Type) {
} }
// Otherwise, hash a maximal length run of raw memory. // Otherwise, hash a maximal length run of raw memory.
size, next := memrun(t, fields, i) size, next := memrun(t, i)
// h = hashel(&p.first, size, h) // h = hashel(&p.first, size, h)
hashel := hashmem(f.Type) hashel := hashmem(f.Type)
...@@ -442,7 +442,7 @@ func geneq(sym *Sym, t *Type) { ...@@ -442,7 +442,7 @@ func geneq(sym *Sym, t *Type) {
} }
// Find maximal length run of memory-only fields. // Find maximal length run of memory-only fields.
size, next := memrun(t, fields, i) size, next := memrun(t, i)
// TODO(rsc): All the calls to newname are wrong for // TODO(rsc): All the calls to newname are wrong for
// cross-package unexported fields. // cross-package unexported fields.
...@@ -546,40 +546,36 @@ func eqmemfunc(size int64, t *Type) (fn *Node, needsize bool) { ...@@ -546,40 +546,36 @@ func eqmemfunc(size int64, t *Type) (fn *Node, needsize bool) {
// memrun finds runs of struct fields for which memory-only algs are appropriate. // memrun finds runs of struct fields for which memory-only algs are appropriate.
// t is the parent struct type, and start is the field index at which to start the run. // t is the parent struct type, and start is the field index at which to start the run.
// The caller is responsible for providing t.FieldSlice() as fields.
// size is the length in bytes of the memory included in the run. // size is the length in bytes of the memory included in the run.
// next is the index just after the end of the memory run. // next is the index just after the end of the memory run.
// TODO(mdempsky): Eliminate fields parameter once struct fields are kept in slices. func memrun(t *Type, start int) (size int64, next int) {
func memrun(t *Type, fields []*Field, start int) (size int64, next int) {
next = start next = start
for { for {
next++ next++
if next == len(fields) { if next == t.NumFields() {
break break
} }
// Stop run after a padded field. // Stop run after a padded field.
if ispaddedfield(t, fields, next-1) { if ispaddedfield(t, next-1) {
break break
} }
// Also, stop before a blank or non-memory field. // Also, stop before a blank or non-memory field.
if isblanksym(fields[next].Sym) || algtype1(fields[next].Type, nil) != AMEM { if f := t.Field(next); isblanksym(f.Sym) || algtype1(f.Type, nil) != AMEM {
break break
} }
} }
end := fields[next-1].Offset + fields[next-1].Type.Width return t.Field(next-1).End() - t.Field(start).Offset, next
return end - fields[start].Offset, next
} }
// ispaddedfield reports whether the i'th field of struct type t is followed // ispaddedfield reports whether the i'th field of struct type t is followed
// by padding. The caller is responsible for providing t.FieldSlice() as fields. // by padding.
// TODO(mdempsky): Eliminate fields parameter once struct fields are kept in slices. func ispaddedfield(t *Type, i int) bool {
func ispaddedfield(t *Type, fields []*Field, i int) bool {
if t.Etype != TSTRUCT { if t.Etype != TSTRUCT {
Fatalf("ispaddedfield called non-struct %v", t) Fatalf("ispaddedfield called non-struct %v", t)
} }
end := t.Width end := t.Width
if i+1 < len(fields) { if i+1 < t.NumFields() {
end = fields[i+1].Offset end = t.Field(i + 1).Offset
} }
return fields[i].Offset+fields[i].Type.Width != end return t.Field(i).End() != end
} }
...@@ -388,7 +388,7 @@ func Argsize(t *Type) int { ...@@ -388,7 +388,7 @@ func Argsize(t *Type) int {
for _, p := range recvsParamsResults { for _, p := range recvsParamsResults {
for _, f := range p(t).Fields().Slice() { for _, f := range p(t).Fields().Slice() {
if x := f.Offset + f.Type.Width; x > w { if x := f.End(); x > w {
w = x w = x
} }
} }
......
...@@ -175,6 +175,11 @@ type Field struct { ...@@ -175,6 +175,11 @@ type Field struct {
Note *string // literal string annotation Note *string // literal string annotation
} }
// End returns the offset of the first byte immediately after this field.
func (f *Field) End() int64 {
return f.Offset + f.Type.Width
}
// Fields is a pointer to a slice of *Field. // Fields is a pointer to a slice of *Field.
// This saves space in Types that do not have fields or methods // This saves space in Types that do not have fields or methods
// compared to a simple slice of *Field. // compared to a simple slice of *Field.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment