Add a constant for the magic -1 for slice bounds.
Use it.
Enforce more aggressively that bounds must be
slice, ddd, or non-negative.
Remove ad hoc check in plive.go.
Check bounds before constructing an array type
when typechecking.
All changes are manual.
Passes toolstash -cmp.
Change-Id: I9fd9cc789d7d4b4eea3b30b24037a254d3788add
Reviewed-on: https://go-review.googlesource.com/21348
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
w = t.Bound * t.Elem().Width
t.Align = t.Elem().Align
- } else if t.Bound == -1 {
+ } else if t.IsSlice() {
w = int64(sizeof_Array)
checkwidth(t.Elem())
t.Align = uint8(Widthptr)
case arrayTag, sliceTag:
t = p.newtyp(TARRAY)
- t.Bound = -1
+ t.Bound = sliceBound
if i == arrayTag {
t.Bound = p.int64()
}
case dddTag:
t = p.newtyp(TDDDFIELD)
- t.Bound = -1
+ t.Bound = sliceBound
t.Type = p.typ()
case structTag:
*xoffset += t.Width
case TARRAY:
- // The value of t.bound is -1 for slices types and >=0 for
- // for fixed array types. All other values are invalid.
- if t.Bound < -1 {
- Fatalf("onebitwalktype1: invalid bound, %v", t)
- }
if t.IsSlice() {
// struct { byte *array; uintgo len; uintgo cap; }
if *xoffset&int64(Widthptr-1) != 0 {
NTYPE
)
-const dddBound = -100 // arrays declared as [...]T start life with Bound=dddBound
+const (
+ sliceBound = -1 // slices have Bound=sliceBound
+ dddBound = -100 // arrays declared as [...]T start life with Bound=dddBound
+)
// Types stores pointers to predeclared named types.
//
func typSlice(elem *Type) *Type {
t := typ(TARRAY)
t.Type = elem
- t.Bound = -1
+ t.Bound = sliceBound
return t
}
if t.Etype != TARRAY {
return false
}
+ t.checkBound()
return t.Bound == dddBound
}
return t.Etype == TCHAN
}
+// checkBound enforces that Bound has an acceptable value.
+func (t *Type) checkBound() {
+ if t.Bound != sliceBound && t.Bound < 0 && t.Bound != dddBound {
+ Fatalf("bad TARRAY bounds %d %s", t.Bound, t)
+ }
+}
+
func (t *Type) IsSlice() bool {
- // TODO(josharian): Change this to t.Bound == -1.
- return t.Etype == TARRAY && t.Bound < 0
+ t.checkBound()
+ return t.Etype == TARRAY && t.Bound == sliceBound
}
func (t *Type) IsArray() bool {
+ t.checkBound()
return t.Etype == TARRAY && t.Bound >= 0
}
if t.Etype != TARRAY {
panic("NumElem on non-TARRAY")
}
+ t.checkBound()
return t.Bound
}
return n
}
- t = typArray(r.Type, v.U.(*Mpint).Int64())
-
if doesoverflow(v, Types[TINT]) {
Yyerror("array bound is too large")
n.Type = nil
return n
- } else if t.IsSlice() {
+ }
+ bound := v.U.(*Mpint).Int64()
+ if bound < 0 {
Yyerror("array bound must be non-negative")
n.Type = nil
return n
}
+ t = typArray(r.Type, bound)
}
n.Op = OTYPE
if t.IsArray() && length > t.Bound {
setlineno(l)
Yyerror("array index %d out of bounds [0:%d]", length-1, t.Bound)
- t.Bound = -1 // no more errors
+ // suppress any further errors out of bounds errors for the same type by pretending it is a slice
+ t.Bound = sliceBound
}
}