Delta Between Two Patch Sets: src/pkg/runtime/arch_amd64.h
Issue 5279048 :
code review 5279048: runtime: faster and more scalable GC (Closed)
Left Patch Set: diff -r a9b75d0fb0bd https://go.googlecode.com/hg/
Right Patch Set: diff -r f44057cc01b2 https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/runtime/arch_386.h
src/pkg/runtime/arch_amd64.h
src/pkg/runtime/arm/arch.h
src/pkg/runtime/arm/atomic.c
src/pkg/runtime/asm_386.s
src/pkg/runtime/asm_amd64.s
src/pkg/runtime/atomic_386.c
src/pkg/runtime/atomic_amd64.c
src/pkg/runtime/export_test.go
src/pkg/runtime/malloc.h
src/pkg/runtime/mcache.c
src/pkg/runtime/mcentral.c
src/pkg/runtime/mgc0.c
src/pkg/runtime/mheap.c
src/pkg/runtime/mprof.goc
src/pkg/runtime/proc.c
src/pkg/runtime/runtime.h
src/pkg/runtime/runtime.c
src/pkg/runtime/runtime_test.go
LEFT RIGHT
(no file at all) 1 enum { 1 enum {
2 thechar = '6', 2 thechar = '6',
3 CacheLineSize = 64 3 CacheLineSize = 64
4 }; 4 };
5
6 // prefetches *addr into processor's cache
7 #define PREFETCH(addr) runtime·prefetch(addr)
8 void runtime·prefetch(const volatile void*);
LEFT RIGHT