Commit e375ca2a authored by Russ Cox's avatar Russ Cox

runtime: reorder bits in heap bitmap bytes

The runtime deals with 1-bit pointer bitmaps and 2-bit heap bitmaps
that have entries for both pointers and mark bits.

Each byte in a 1-bit pointer bitmap looks like pppppppp (all pointer bits).
Each byte in a 2-bit heap bitmap looks like mpmpmpmp (mark, pointer, ...).
This means that when converting from 1-bit to 2-bit, as we do
during malloc, we have to pick up 4 bits in pppp form and use
shifts to create the mpmpmpmp form.

This CL changes the 2-bit heap bitmap form to mmmmpppp,
so that 4 bits picked up in 1-bit form can be used directly in
the low bits of the heap bitmap byte, without expansion.
This simplifies the code, and it also happens to be faster.

name                    old mean              new mean              delta
SetTypePtr              14.0ns × (0.98,1.09)  14.0ns × (0.98,1.08)     ~    (p=0.966)
SetTypePtr8             16.5ns × (0.99,1.05)  15.3ns × (0.96,1.16)   -6.86% (p=0.012)
SetTypePtr16            21.3ns × (0.98,1.05)  18.8ns × (0.94,1.14)  -11.49% (p=0.000)
SetTypePtr32            34.6ns × (0.93,1.22)  27.7ns × (0.91,1.26)  -20.08% (p=0.001)
SetTypePtr64            55.7ns × (0.97,1.11)  41.6ns × (0.98,1.04)  -25.30% (p=0.000)
SetTypePtr126           98.0ns × (1.00,1.00)  67.7ns × (0.99,1.05)  -30.88% (p=0.000)
SetTypePtr128           98.6ns × (1.00,1.01)  68.6ns × (0.99,1.03)  -30.44% (p=0.000)
SetTypePtrSlice          781ns × (0.99,1.01)   571ns × (0.99,1.04)  -26.93% (p=0.000)
SetTypeNode1            13.1ns × (0.99,1.01)  12.1ns × (0.99,1.01)   -7.45% (p=0.000)
SetTypeNode1Slice        113ns × (0.99,1.01)    94ns × (1.00,1.00)  -16.35% (p=0.000)
SetTypeNode8            32.7ns × (1.00,1.00)  29.8ns × (0.99,1.01)   -8.97% (p=0.000)
SetTypeNode8Slice        266ns × (1.00,1.00)   204ns × (1.00,1.00)  -23.40% (p=0.000)
SetTypeNode64           58.0ns × (0.98,1.08)  42.8ns × (1.00,1.01)  -26.24% (p=0.000)
SetTypeNode64Slice      1.55µs × (0.99,1.02)  0.96µs × (1.00,1.00)  -37.84% (p=0.000)
SetTypeNode64Dead       13.1ns × (0.99,1.01)  12.1ns × (1.00,1.00)   -7.33% (p=0.000)
SetTypeNode64DeadSlice  1.52µs × (1.00,1.01)  1.08µs × (1.00,1.01)  -28.95% (p=0.000)
SetTypeNode124          97.9ns × (1.00,1.00)  67.1ns × (1.00,1.01)  -31.49% (p=0.000)
SetTypeNode124Slice     2.87µs × (0.99,1.02)  1.75µs × (1.00,1.01)  -39.15% (p=0.000)
SetTypeNode126          98.4ns × (1.00,1.01)  68.1ns × (1.00,1.01)  -30.79% (p=0.000)
SetTypeNode126Slice     2.91µs × (0.99,1.01)  1.77µs × (0.99,1.01)  -39.09% (p=0.000)
SetTypeNode1024          732ns × (1.00,1.00)   511ns × (0.87,1.42)  -30.14% (p=0.000)
SetTypeNode1024Slice    23.1µs × (1.00,1.00)  13.9µs × (0.99,1.02)  -39.83% (p=0.000)

Change-Id: I12e3b850a4e6fa6c8146b8635ff728f3ef658819
Reviewed-on: https://go-review.googlesource.com/9828Reviewed-by: default avatarAustin Clements <austin@google.com>
parent 363fd1dd
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
// //
// Stack frames and global variables in the data and bss sections are described // Stack frames and global variables in the data and bss sections are described
// by 1-bit bitmaps in which 0 means uninteresting and 1 means live pointer // by 1-bit bitmaps in which 0 means uninteresting and 1 means live pointer
// to be visited during GC. // to be visited during GC. The bits in each byte are consumed starting with
// the low bit: 1<<0, 1<<1, and so on.
// //
// Heap bitmap // Heap bitmap
// //
...@@ -19,8 +20,6 @@ ...@@ -19,8 +20,6 @@
// That is, the byte at address start-1 holds the 2-bit entries for the four words // That is, the byte at address start-1 holds the 2-bit entries for the four words
// start through start+3*ptrSize, the byte at start-2 holds the entries for // start through start+3*ptrSize, the byte at start-2 holds the entries for
// start+4*ptrSize through start+7*ptrSize, and so on. // start+4*ptrSize through start+7*ptrSize, and so on.
// In each byte, the low 2 bits describe the first word, the next 2 bits describe
// the next word, and so on.
// //
// In each 2-bit entry, the lower bit holds the same information as in the 1-bit // In each 2-bit entry, the lower bit holds the same information as in the 1-bit
// bitmaps: 0 means uninteresting and 1 means live pointer to be visited during GC. // bitmaps: 0 means uninteresting and 1 means live pointer to be visited during GC.
...@@ -33,6 +32,11 @@ ...@@ -33,6 +32,11 @@
// This 00 is called the ``dead'' encoding: it signals that the rest of the words // This 00 is called the ``dead'' encoding: it signals that the rest of the words
// in the object are uninteresting to the garbage collector. // in the object are uninteresting to the garbage collector.
// //
// The 2-bit entries are split when written into the byte, so that the top half
// of the byte contains 4 mark bits and the bottom half contains 4 pointer bits.
// This form allows a copy from the 1-bit to the 4-bit form to keep the
// pointer bits contiguous, instead of having to space them out.
//
// The code makes use of the fact that the zero value for a heap bitmap // The code makes use of the fact that the zero value for a heap bitmap
// has no live pointer bit set and is (depending on position), not marked, // has no live pointer bit set and is (depending on position), not marked,
// not checkmarked, and is the dead encoding. // not checkmarked, and is the dead encoding.
...@@ -65,11 +69,15 @@ package runtime ...@@ -65,11 +69,15 @@ package runtime
import "unsafe" import "unsafe"
const ( const (
bitPointer = 1 bitPointer = 1 << 0
bitMarked = 2 bitMarked = 1 << 4
heapBitsShift = 1 // shift offset between successive bitPointer or bitMarked entries
heapBitmapScale = ptrSize * (8 / 2) // number of data bytes described by one heap bitmap byte
heapBitsWidth = 2 // heap bitmap bits to describe one pointer // all mark/pointer bits in a byte
heapBitmapScale = ptrSize * (8 / heapBitsWidth) // number of data bytes described by one heap bitmap byte bitMarkedAll = bitMarked | bitMarked<<heapBitsShift | bitMarked<<(2*heapBitsShift) | bitMarked<<(3*heapBitsShift)
bitPointerAll = bitPointer | bitPointer<<heapBitsShift | bitPointer<<(2*heapBitsShift) | bitPointer<<(3*heapBitsShift)
) )
// addb returns the byte pointer p+n. // addb returns the byte pointer p+n.
...@@ -119,7 +127,7 @@ type heapBits struct { ...@@ -119,7 +127,7 @@ type heapBits struct {
func heapBitsForAddr(addr uintptr) heapBits { func heapBitsForAddr(addr uintptr) heapBits {
// 2 bits per work, 4 pairs per byte, and a mask is hard coded. // 2 bits per work, 4 pairs per byte, and a mask is hard coded.
off := (addr - mheap_.arena_start) / ptrSize off := (addr - mheap_.arena_start) / ptrSize
return heapBits{(*uint8)(unsafe.Pointer(mheap_.arena_start - off/4 - 1)), uint32(2 * (off & 3))} return heapBits{(*uint8)(unsafe.Pointer(mheap_.arena_start - off/4 - 1)), uint32(off & 3)}
} }
// heapBitsForSpan returns the heapBits for the span base address base. // heapBitsForSpan returns the heapBits for the span base address base.
...@@ -206,8 +214,8 @@ func (h heapBits) prefetch() { ...@@ -206,8 +214,8 @@ func (h heapBits) prefetch() {
// That is, if h describes address p, h.next() describes p+ptrSize. // That is, if h describes address p, h.next() describes p+ptrSize.
// Note that next does not modify h. The caller must record the result. // Note that next does not modify h. The caller must record the result.
func (h heapBits) next() heapBits { func (h heapBits) next() heapBits {
if h.shift < 8-heapBitsWidth { if h.shift < 3*heapBitsShift {
return heapBits{h.bitp, h.shift + heapBitsWidth} return heapBits{h.bitp, h.shift + heapBitsShift}
} }
return heapBits{subtractb(h.bitp, 1), 0} return heapBits{subtractb(h.bitp, 1), 0}
} }
...@@ -218,8 +226,8 @@ func (h heapBits) next() heapBits { ...@@ -218,8 +226,8 @@ func (h heapBits) next() heapBits {
// Note that forward does not modify h. The caller must record the result. // Note that forward does not modify h. The caller must record the result.
// bits returns the heap bits for the current word. // bits returns the heap bits for the current word.
func (h heapBits) forward(n uintptr) heapBits { func (h heapBits) forward(n uintptr) heapBits {
n += uintptr(h.shift) / heapBitsWidth n += uintptr(h.shift) / heapBitsShift
return heapBits{subtractb(h.bitp, n/4), uint32(n%4) * heapBitsWidth} return heapBits{subtractb(h.bitp, n/4), uint32(n%4) * heapBitsShift}
} }
// The caller can test isMarked and isPointer by &-ing with bitMarked and bitPointer. // The caller can test isMarked and isPointer by &-ing with bitMarked and bitPointer.
...@@ -270,7 +278,7 @@ func (h heapBits) hasPointers(size uintptr) bool { ...@@ -270,7 +278,7 @@ func (h heapBits) hasPointers(size uintptr) bool {
// first two words out of *h.bitp. // first two words out of *h.bitp.
// If either of the first two words is a pointer, not pointer free. // If either of the first two words is a pointer, not pointer free.
b := uint32(*h.bitp >> h.shift) b := uint32(*h.bitp >> h.shift)
if b&(bitPointer|bitPointer<<heapBitsWidth) != 0 { if b&(bitPointer|bitPointer<<heapBitsShift) != 0 {
return true return true
} }
if size == 2*ptrSize { if size == 2*ptrSize {
...@@ -278,7 +286,7 @@ func (h heapBits) hasPointers(size uintptr) bool { ...@@ -278,7 +286,7 @@ func (h heapBits) hasPointers(size uintptr) bool {
} }
// At least a 4-word object. Check scan bit (aka marked bit) in third word. // At least a 4-word object. Check scan bit (aka marked bit) in third word.
if h.shift == 0 { if h.shift == 0 {
return b&(bitMarked<<(2*heapBitsWidth)) != 0 return b&(bitMarked<<(2*heapBitsShift)) != 0
} }
return uint32(*subtractb(h.bitp, 1))&bitMarked != 0 return uint32(*subtractb(h.bitp, 1))&bitMarked != 0
} }
...@@ -295,7 +303,7 @@ func (h heapBits) isCheckmarked(size uintptr) bool { ...@@ -295,7 +303,7 @@ func (h heapBits) isCheckmarked(size uintptr) bool {
// so we know that the initial word's 2-bit pair // so we know that the initial word's 2-bit pair
// and the second word's 2-bit pair are in the // and the second word's 2-bit pair are in the
// same heap bitmap byte, *h.bitp. // same heap bitmap byte, *h.bitp.
return (*h.bitp>>(heapBitsWidth+h.shift))&bitMarked != 0 return (*h.bitp>>(heapBitsShift+h.shift))&bitMarked != 0
} }
// setCheckmarked sets the checkmarked bit. // setCheckmarked sets the checkmarked bit.
...@@ -307,7 +315,7 @@ func (h heapBits) setCheckmarked(size uintptr) { ...@@ -307,7 +315,7 @@ func (h heapBits) setCheckmarked(size uintptr) {
atomicor8(h.bitp, bitPointer<<h.shift) atomicor8(h.bitp, bitPointer<<h.shift)
return return
} }
atomicor8(h.bitp, bitMarked<<(heapBitsWidth+h.shift)) atomicor8(h.bitp, bitMarked<<(heapBitsShift+h.shift))
} }
// The methods operating on spans all require that h has been returned // The methods operating on spans all require that h has been returned
...@@ -338,13 +346,13 @@ func (h heapBits) initCheckmarkSpan(size, n, total uintptr) { ...@@ -338,13 +346,13 @@ func (h heapBits) initCheckmarkSpan(size, n, total uintptr) {
// The type bit is the lower of every two-bit pair. // The type bit is the lower of every two-bit pair.
bitp := h.bitp bitp := h.bitp
for i := uintptr(0); i < n; i += 4 { for i := uintptr(0); i < n; i += 4 {
*bitp &^= bitPointer | bitPointer<<2 | bitPointer<<4 | bitPointer<<6 *bitp &^= bitPointerAll
bitp = subtractb(bitp, 1) bitp = subtractb(bitp, 1)
} }
return return
} }
for i := uintptr(0); i < n; i++ { for i := uintptr(0); i < n; i++ {
*h.bitp &^= bitMarked << (heapBitsWidth + h.shift) *h.bitp &^= bitMarked << (heapBitsShift + h.shift)
h = h.forward(size / ptrSize) h = h.forward(size / ptrSize)
} }
} }
...@@ -362,7 +370,7 @@ func (h heapBits) clearCheckmarkSpan(size, n, total uintptr) { ...@@ -362,7 +370,7 @@ func (h heapBits) clearCheckmarkSpan(size, n, total uintptr) {
// The type bit is the lower of every two-bit pair. // The type bit is the lower of every two-bit pair.
bitp := h.bitp bitp := h.bitp
for i := uintptr(0); i < n; i += 4 { for i := uintptr(0); i < n; i += 4 {
*bitp |= bitPointer | bitPointer<<2 | bitPointer<<4 | bitPointer<<6 *bitp |= bitPointerAll
bitp = subtractb(bitp, 1) bitp = subtractb(bitp, 1)
} }
} }
...@@ -391,22 +399,22 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) { ...@@ -391,22 +399,22 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) {
x &^= bitPointer x &^= bitPointer
f(base + i*ptrSize) f(base + i*ptrSize)
} }
if x&(bitMarked<<2) != 0 { if x&(bitMarked<<heapBitsShift) != 0 {
x &^= bitMarked << 2 x &^= bitMarked << heapBitsShift
} else { } else {
x &^= bitPointer << 2 x &^= bitPointer << heapBitsShift
f(base + (i+1)*ptrSize) f(base + (i+1)*ptrSize)
} }
if x&(bitMarked<<4) != 0 { if x&(bitMarked<<(2*heapBitsShift)) != 0 {
x &^= bitMarked << 4 x &^= bitMarked << (2 * heapBitsShift)
} else { } else {
x &^= bitPointer << 4 x &^= bitPointer << (2 * heapBitsShift)
f(base + (i+2)*ptrSize) f(base + (i+2)*ptrSize)
} }
if x&(bitMarked<<6) != 0 { if x&(bitMarked<<(3*heapBitsShift)) != 0 {
x &^= bitMarked << 6 x &^= bitMarked << (3 * heapBitsShift)
} else { } else {
x &^= bitPointer << 6 x &^= bitPointer << (3 * heapBitsShift)
f(base + (i+3)*ptrSize) f(base + (i+3)*ptrSize)
} }
*bitp = uint8(x) *bitp = uint8(x)
...@@ -442,7 +450,7 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) { ...@@ -442,7 +450,7 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) {
if x&bitMarked != 0 { if x&bitMarked != 0 {
x &^= bitMarked x &^= bitMarked
} else { } else {
x &^= 0x0f x &^= bitMarked | bitPointer | (bitMarked|bitPointer)<<heapBitsShift
f(base + i*size) f(base + i*size)
if size > 2*ptrSize { if size > 2*ptrSize {
x = 0 x = 0
...@@ -454,10 +462,10 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) { ...@@ -454,10 +462,10 @@ func heapBitsSweepSpan(base, size, n uintptr, f func(uintptr)) {
} }
bitp = subtractb(bitp, step) bitp = subtractb(bitp, step)
x = uint32(*bitp) x = uint32(*bitp)
if x&(bitMarked<<4) != 0 { if x&(bitMarked<<(2*heapBitsShift)) != 0 {
x &^= bitMarked << 4 x &^= bitMarked << (2 * heapBitsShift)
} else { } else {
x &^= 0xf0 x &^= (bitMarked|bitPointer)<<(2*heapBitsShift) | (bitMarked|bitPointer)<<(3*heapBitsShift)
f(base + (i+1)*size) f(base + (i+1)*size)
if size > 2*ptrSize { if size > 2*ptrSize {
*subtractb(bitp, 1) = 0 *subtractb(bitp, 1) = 0
...@@ -554,12 +562,12 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -554,12 +562,12 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
if size == 2*ptrSize { if size == 2*ptrSize {
if typ.size == ptrSize { if typ.size == ptrSize {
// 2-element slice of pointer. // 2-element slice of pointer.
atomicor8(h.bitp, (bitPointer|bitPointer<<heapBitsWidth)<<h.shift) atomicor8(h.bitp, (bitPointer|bitPointer<<heapBitsShift)<<h.shift)
return return
} }
// Otherwise typ.size must be 2*ptrSize, and typ.kind&kindGCProg == 0. // Otherwise typ.size must be 2*ptrSize, and typ.kind&kindGCProg == 0.
b := uint32(*ptrmask) b := uint32(*ptrmask)
hb := b&1 | (b&2)<<(heapBitsWidth-1) hb := b & 3
atomicor8(h.bitp, uint8(hb<<h.shift)) atomicor8(h.bitp, uint8(hb<<h.shift))
return return
} }
...@@ -714,8 +722,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -714,8 +722,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
// In those words, the mark bits are mark and checkmark, respectively, // In those words, the mark bits are mark and checkmark, respectively,
// and must not be set. In all following words, we want to set the mark bit // and must not be set. In all following words, we want to set the mark bit
// as a signal that the object continues to the next 2-bit entry in the bitmap. // as a signal that the object continues to the next 2-bit entry in the bitmap.
hb = b&1 | (b&2)<<(heapBitsWidth-1) | (b&4)<<(2*heapBitsWidth-2) | (b&8)<<(3*heapBitsWidth-3) hb = b & bitPointerAll
hb |= bitMarked<<(2*heapBitsWidth) | bitMarked<<(3*heapBitsWidth) hb |= bitMarked<<(2*heapBitsShift) | bitMarked<<(3*heapBitsShift)
if w += 4; w >= nw { if w += 4; w >= nw {
goto Phase3 goto Phase3
} }
...@@ -724,7 +732,7 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -724,7 +732,7 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
b >>= 4 b >>= 4
nb -= 4 nb -= 4
case ptrSize == 8 && h.shift == 4: case ptrSize == 8 && h.shift == 2:
// Ptrmask and heap bitmap are misaligned. // Ptrmask and heap bitmap are misaligned.
// The bits for the first two words are in a byte shared with another object // The bits for the first two words are in a byte shared with another object
// and must be updated atomically. // and must be updated atomically.
...@@ -735,7 +743,7 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -735,7 +743,7 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
// not with its mark bit. Since there is only one allocation // not with its mark bit. Since there is only one allocation
// from a given span at a time, we should be able to set // from a given span at a time, we should be able to set
// these bits non-atomically. Not worth the risk right now. // these bits non-atomically. Not worth the risk right now.
hb = (b&1)<<4 | (b&2)<<(4+heapBitsWidth-1) // bits being prepared for *h.bitp hb = (b & 3) << (2 * heapBitsShift)
b >>= 2 b >>= 2
nb -= 2 nb -= 2
// Note: no bitMarker in hb because the first two words don't get markers from us. // Note: no bitMarker in hb because the first two words don't get markers from us.
...@@ -763,8 +771,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -763,8 +771,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
// if w+4 >= nw, then b has only nw-w bits, // if w+4 >= nw, then b has only nw-w bits,
// but we'll stop at the break and then truncate // but we'll stop at the break and then truncate
// appropriately in Phase 3. // appropriately in Phase 3.
hb = b&1 | (b&2)<<(heapBitsWidth-1) | (b&4)<<(2*heapBitsWidth-2) | (b&8)<<(3*heapBitsWidth-3) hb = b & bitPointerAll
hb |= bitMarked | bitMarked<<heapBitsWidth | bitMarked<<(2*heapBitsWidth) | bitMarked<<(3*heapBitsWidth) hb |= bitMarkedAll
if w += 4; w >= nw { if w += 4; w >= nw {
break break
} }
...@@ -803,8 +811,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) { ...@@ -803,8 +811,8 @@ func heapBitsSetType(x, size, dataSize uintptr, typ *_type) {
} }
// Emit bitmap byte. // Emit bitmap byte.
hb = b&1 | (b&2)<<(heapBitsWidth-1) | (b&4)<<(2*heapBitsWidth-2) | (b&8)<<(3*heapBitsWidth-3) hb = b & bitPointerAll
hb |= bitMarked | bitMarked<<heapBitsWidth | bitMarked<<(2*heapBitsWidth) | bitMarked<<(3*heapBitsWidth) hb |= bitMarkedAll
if w += 4; w >= nw { if w += 4; w >= nw {
break break
} }
...@@ -822,15 +830,16 @@ Phase3: ...@@ -822,15 +830,16 @@ Phase3:
// then we must write a ``dead'' entry to the next bitmap byte. // then we must write a ``dead'' entry to the next bitmap byte.
if frag := (nw - w) % 4; frag != 0 { if frag := (nw - w) % 4; frag != 0 {
// Data ends at least one word early. // Data ends at least one word early.
hb &= 1<<(heapBitsWidth*frag) - 1 mask := uintptr(1)<<frag - 1
hb &= mask | mask<<4 // apply mask to both pointer bits and mark bits
if w*ptrSize <= size { if w*ptrSize <= size {
// We own the whole byte and get the dead marker for free. // We own the whole byte and get the dead marker for free.
*hbitp = uint8(hb) *hbitp = uint8(hb)
} else { } else {
// We only own the bottom half of the byte. // We only own the bottom two entries in the byte, bits 00110011.
// If frag == 1, we get a dead marker for free. // If frag == 1, we get a dead marker for free.
// If frag == 2, no dead marker needed (we've reached the end of the object). // If frag == 2, no dead marker needed (we've reached the end of the object).
atomicand8(hbitp, 0xf0) atomicand8(hbitp, ^uint8(bitPointer|bitMarked|(bitPointer|bitMarked)<<heapBitsShift))
atomicor8(hbitp, uint8(hb)) atomicor8(hbitp, uint8(hb))
} }
} else { } else {
...@@ -844,8 +853,8 @@ Phase3: ...@@ -844,8 +853,8 @@ Phase3:
// We own the whole byte. // We own the whole byte.
*hbitp = 0 *hbitp = 0
} else { } else {
// We only own the bottom half of the byte. // We only own the bottom two entries in the byte, bits 00110011.
atomicand8(hbitp, 0xf0) atomicand8(hbitp, ^uint8(bitPointer|bitMarked|(bitPointer|bitMarked)<<heapBitsShift))
} }
} }
} }
...@@ -866,7 +875,7 @@ Phase4: ...@@ -866,7 +875,7 @@ Phase4:
if i == dataSize/ptrSize && dataSize >= size { if i == dataSize/ptrSize && dataSize >= size {
break break
} }
have = (*h.bitp >> h.shift) & 3 have = (*h.bitp >> h.shift) & (bitPointer | bitMarked)
if i == dataSize/ptrSize || i/ndata == count-1 && j >= nptr { if i == dataSize/ptrSize || i/ndata == count-1 && j >= nptr {
want = 0 // dead marker want = 0 // dead marker
} else { } else {
...@@ -883,8 +892,9 @@ Phase4: ...@@ -883,8 +892,9 @@ Phase4:
println("mismatch writing bits for", *typ._string, "x", dataSize/typ.size) println("mismatch writing bits for", *typ._string, "x", dataSize/typ.size)
print("typ.size=", typ.size, " typ.ptrdata=", typ.ptrdata, " dataSize=", dataSize, " size=", size, "\n") print("typ.size=", typ.size, " typ.ptrdata=", typ.ptrdata, " dataSize=", dataSize, " size=", size, "\n")
print("w=", w, " nw=", nw, " b=", hex(b), " nb=", nb, " hb=", hex(hb), "\n") print("w=", w, " nw=", nw, " b=", hex(b), " nb=", nb, " hb=", hex(hb), "\n")
h = heapBitsForAddr(x) h0 := heapBitsForAddr(x)
print("initial bits h.bitp=", h.bitp, " h.shift=", h.shift, "\n") print("initial bits h0.bitp=", h0.bitp, " h0.shift=", h0.shift, "\n")
print("current bits h.bitp=", h.bitp, " h.shift=", h.shift, " *h.bitp=", hex(*h.bitp), "\n")
print("ptrmask=", ptrmask, " p=", p, " endp=", endp, " endnb=", endnb, " pbits=", hex(pbits), " b=", hex(b), " nb=", nb, "\n") print("ptrmask=", ptrmask, " p=", p, " endp=", endp, " endnb=", endnb, " pbits=", hex(pbits), " b=", hex(b), " nb=", nb, "\n")
println("at word", i, "offset", i*ptrSize, "have", have, "want", want) println("at word", i, "offset", i*ptrSize, "have", have, "want", want)
throw("bad heapBitsSetType") throw("bad heapBitsSetType")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment