Commit 09f48db3 authored by Dave Cheney's avatar Dave Cheney

runtime: use uintptr for block length in scanblock

Using an int64 for a block size doesn't make
sense on 32bit platforms but extracts a performance
penalty dealing with double word quantities on Arm.

linux/arm

benchmark                 old ns/op    new ns/op    delta
BenchmarkGobDecode        155401600    144589300   -6.96%
BenchmarkGobEncode         72772220     62460940  -14.17%
BenchmarkGzip               5822632      2604797  -55.26%
BenchmarkGunzip              326321       151721  -53.51%

benchmark                  old MB/s     new MB/s  speedup
BenchmarkGobDecode             4.94         5.31    1.07x
BenchmarkGobEncode            10.55        12.29    1.16x

R=golang-dev, rsc, bradfitz
CC=golang-dev
https://golang.org/cl/6272047
parent a7059cc7
...@@ -148,7 +148,7 @@ static struct { ...@@ -148,7 +148,7 @@ static struct {
// body. Keeping an explicit work list is easier on the stack allocator and // body. Keeping an explicit work list is easier on the stack allocator and
// more efficient. // more efficient.
static void static void
scanblock(byte *b, int64 n) scanblock(byte *b, uintptr n)
{ {
byte *obj, *arena_start, *arena_used, *p; byte *obj, *arena_start, *arena_used, *p;
void **vp; void **vp;
...@@ -159,8 +159,8 @@ scanblock(byte *b, int64 n) ...@@ -159,8 +159,8 @@ scanblock(byte *b, int64 n)
Workbuf *wbuf; Workbuf *wbuf;
bool keepworking; bool keepworking;
if((int64)(uintptr)n != n || n < 0) { if((intptr)n < 0) {
runtime·printf("scanblock %p %D\n", b, n); runtime·printf("scanblock %p %D\n", b, (int64)n);
runtime·throw("scanblock"); runtime·throw("scanblock");
} }
...@@ -191,7 +191,7 @@ scanblock(byte *b, int64 n) ...@@ -191,7 +191,7 @@ scanblock(byte *b, int64 n)
// Each iteration scans the block b of length n, queueing pointers in // Each iteration scans the block b of length n, queueing pointers in
// the work buffer. // the work buffer.
if(Debug > 1) if(Debug > 1)
runtime·printf("scanblock %p %D\n", b, n); runtime·printf("scanblock %p %D\n", b, (int64)n);
vp = (void**)b; vp = (void**)b;
n >>= (2+PtrSize/8); /* n /= PtrSize (4 or 8) */ n >>= (2+PtrSize/8); /* n /= PtrSize (4 or 8) */
...@@ -339,7 +339,7 @@ scanblock(byte *b, int64 n) ...@@ -339,7 +339,7 @@ scanblock(byte *b, int64 n)
// it is simpler, slower, single-threaded, recursive, // it is simpler, slower, single-threaded, recursive,
// and uses bitSpecial as the mark bit. // and uses bitSpecial as the mark bit.
static void static void
debug_scanblock(byte *b, int64 n) debug_scanblock(byte *b, uintptr n)
{ {
byte *obj, *p; byte *obj, *p;
void **vp; void **vp;
...@@ -349,8 +349,8 @@ debug_scanblock(byte *b, int64 n) ...@@ -349,8 +349,8 @@ debug_scanblock(byte *b, int64 n)
if(!DebugMark) if(!DebugMark)
runtime·throw("debug_scanblock without DebugMark"); runtime·throw("debug_scanblock without DebugMark");
if((int64)(uintptr)n != n || n < 0) { if((intptr)n < 0) {
runtime·printf("debug_scanblock %p %D\n", b, n); runtime·printf("debug_scanblock %p %D\n", b, (int64)n);
runtime·throw("debug_scanblock"); runtime·throw("debug_scanblock");
} }
......
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