1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:54:40 -07:00

runtime: delete the function and code related to maxObjsPerSpan

maxObjsPerSpan is no longer used, so delete the related function and code
This commit is contained in:
lennonchan 2024-11-08 20:11:34 +08:00 committed by GitHub
parent 2b33434287
commit 671a502a46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -278,15 +278,6 @@ func printComment(w io.Writer, classes []class) {
fmt.Fprintf(w, "\n") fmt.Fprintf(w, "\n")
} }
func maxObjsPerSpan(classes []class) int {
most := 0
for _, c := range classes[1:] {
n := c.npages * pageSize / c.size
most = max(most, n)
}
return most
}
func printClasses(w io.Writer, classes []class) { func printClasses(w io.Writer, classes []class) {
fmt.Fprintln(w, "const (") fmt.Fprintln(w, "const (")
fmt.Fprintf(w, "minHeapAlign = %d\n", minHeapAlign) fmt.Fprintf(w, "minHeapAlign = %d\n", minHeapAlign)
@ -296,7 +287,6 @@ func printClasses(w io.Writer, classes []class) {
fmt.Fprintf(w, "largeSizeDiv = %d\n", largeSizeDiv) fmt.Fprintf(w, "largeSizeDiv = %d\n", largeSizeDiv)
fmt.Fprintf(w, "_NumSizeClasses = %d\n", len(classes)) fmt.Fprintf(w, "_NumSizeClasses = %d\n", len(classes))
fmt.Fprintf(w, "_PageShift = %d\n", pageShift) fmt.Fprintf(w, "_PageShift = %d\n", pageShift)
fmt.Fprintf(w, "maxObjsPerSpan = %d\n", maxObjsPerSpan(classes))
fmt.Fprintln(w, ")") fmt.Fprintln(w, ")")
fmt.Fprint(w, "var class_to_size = [_NumSizeClasses]uint16 {") fmt.Fprint(w, "var class_to_size = [_NumSizeClasses]uint16 {")