Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gc: findHead scan optimization #3899

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions builder/sizes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ func TestBinarySize(t *testing.T) {
// This is a small number of very diverse targets that we want to test.
tests := []sizeTest{
// microcontrollers
{"hifive1b", "examples/echo", 4568, 280, 0, 2268},
{"microbit", "examples/serial", 2868, 388, 8, 2272},
{"wioterminal", "examples/pininterrupt", 6104, 1484, 116, 6832},
{"hifive1b", "examples/echo", 4692, 280, 0, 2268},
{"microbit", "examples/serial", 2952, 388, 8, 2272},
{"wioterminal", "examples/pininterrupt", 6148, 1484, 116, 6832},

// TODO: also check wasm. Right now this is difficult, because
// wasm binaries are run through wasm-opt and therefore the
Expand Down
26 changes: 24 additions & 2 deletions src/runtime/gc_blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ package runtime

import (
"internal/task"
"math/bits"
"runtime/interrupt"
"unsafe"
)
Expand Down Expand Up @@ -76,6 +77,11 @@ const (
blockStateMask blockState = 3 // 11
)

// blockStateByteAllTails is a byte containing 4 times blockStateTail bits.
// It assumes there are 2 state bits per block, otherwise it might have to be
// turned into variable and assigned using inline function.
const blockStateByteAllTails = uint8(blockStateTail<<(stateBits*3) | blockStateTail<<(stateBits*2) | blockStateTail<<(stateBits*1) | blockStateTail<<(stateBits*0))

// String returns a human-readable version of the block state, for debugging.
func (s blockState) String() string {
switch s {
Expand Down Expand Up @@ -123,9 +129,25 @@ func (b gcBlock) address() uintptr {
// points to an allocated object. It returns the same block if this block
// already points to the head.
func (b gcBlock) findHead() gcBlock {
for b.state() == blockStateTail {
b--
stateBytePtr := (*uint8)(unsafe.Add(metadataStart, b/blocksPerStateByte))

// XOR the stateByte with byte containing all tails to turn tail bits to 0 and
// mask out the bits that are not part of the object
otherObjectBlocks := int(blocksPerStateByte - (b%blocksPerStateByte + 1))
stateByte := ((*stateBytePtr) ^ blockStateByteAllTails) & (uint8(1<<(8-(otherObjectBlocks*stateBits))) - 1)

// loop until state byte is not all tails
for stateByte == 0 {
stateBytePtr = (*uint8)(unsafe.Add(unsafe.Pointer(stateBytePtr), -1))
stateByte = (*stateBytePtr) ^ blockStateByteAllTails
b -= blocksPerStateByte
}

// in the first state byte which is not all tails, count the number of leading bits that are 0 and
// divide it by stateBits to get the number of tail blocks. Subtract otherObjectBlocks to exclude
// blocks that are not part of the object
b -= gcBlock((bits.LeadingZeros8(stateByte) / stateBits) - otherObjectBlocks)

if gcAsserts {
if b.state() != blockStateHead && b.state() != blockStateMark {
runtimePanic("gc: found tail without head")
Expand Down
Loading