So next CL can get rid of go:notinheap pragma.
Updates #46731
Change-Id: Ib2e2f2d381767e11cec10f76261b516188ddaa6a
Reviewed-on: https://go-review.googlesource.com/c/go/+/422814
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: David Chase <drchase@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
}
CalcSize(f.Type)
+ // If type T contains a field F marked as not-in-heap,
+ // then T must also be a not-in-heap type. Otherwise,
+ // you could heap allocate T and then get a pointer F,
+ // which would be a heap pointer to a not-in-heap type.
+ if f.Type.NotInHeap() {
+ t.SetNotInHeap(true)
+ }
if int32(f.Type.align) > maxalign {
maxalign = int32(f.Type.align)
}
}
CalcSize(t.Elem())
+ t.SetNotInHeap(t.Elem().NotInHeap())
if t.Elem().width != 0 {
cap := (uint64(MaxWidth) - 1) / uint64(t.Elem().width)
if uint64(t.NumElem()) > cap {
if t.IsFuncArgStruct() {
base.Fatalf("CalcSize fn struct %v", t)
}
+ // Recognize and mark runtime/internal/sys.nih as not-in-heap.
+ if sym := t.Sym(); sym != nil && sym.Pkg.Path == "runtime/internal/sys" && sym.Name == "nih" {
+ t.SetNotInHeap(true)
+ }
w = calcStructOffset(t, t, 0, 1)
// make fake type to check later to
}
t := newType(TARRAY)
t.extra = &Array{Elem: elem, Bound: bound}
- t.SetNotInHeap(elem.NotInHeap())
if elem.HasTParam() {
t.SetHasTParam(true)
}
base.Fatalf("SetFields of %v: width previously calculated", t)
}
t.wantEtype(TSTRUCT)
- for _, f := range fields {
- // If type T contains a field F with a go:notinheap
- // type, then T must also be go:notinheap. Otherwise,
- // you could heap allocate T and then get a pointer F,
- // which would be a heap pointer to a go:notinheap
- // type.
- if f.Type != nil && f.Type.NotInHeap() {
- t.SetNotInHeap(true)
- break
- }
- }
t.Fields().Set(fields)
}
}
// HasPointers reports whether t contains a heap pointer.
-// Note that this function ignores pointers to go:notinheap types.
+// Note that this function ignores pointers to not-in-heap types.
func (t *Type) HasPointers() bool {
return PtrDataSize(t) > 0
}
package sys
-// TODO: make this as a compiler intrinsic type, and remove go:notinheap
-//
-//go:notinheap
+// NOTE: keep in sync with cmd/compile/internal/types.CalcSize
+// to make the compiler recognize this as an intrinsic type.
type nih struct{}
// NotInHeap is a type must never be allocated from the GC'd heap or on the stack,