]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/msize_allocheaders.go
runtime: add the allocation headers GOEXPERIMENT and fork files
[gostls13.git] / src / runtime / msize_allocheaders.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 //go:build goexperiment.allocheaders
6
7 // Malloc small size classes.
8 //
9 // See malloc.go for overview.
10 // See also mksizeclasses.go for how we decide what size classes to use.
11
12 package runtime
13
14 // Returns size of the memory block that mallocgc will allocate if you ask for the size.
15 func roundupsize(size uintptr) uintptr {
16         if size < _MaxSmallSize {
17                 if size <= smallSizeMax-8 {
18                         return uintptr(class_to_size[size_to_class8[divRoundUp(size, smallSizeDiv)]])
19                 } else {
20                         return uintptr(class_to_size[size_to_class128[divRoundUp(size-smallSizeMax, largeSizeDiv)]])
21                 }
22         }
23         if size+_PageSize < size {
24                 return size
25         }
26         return alignUp(size, _PageSize)
27 }