123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- // Copyright 2011 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package runtime_test
- import "testing"
- const N = 20
- func BenchmarkAppend(b *testing.B) {
- b.StopTimer()
- x := make([]int, 0, N)
- b.StartTimer()
- for i := 0; i < b.N; i++ {
- x = x[0:0]
- for j := 0; j < N; j++ {
- x = append(x, j)
- }
- }
- }
- func BenchmarkAppendGrowByte(b *testing.B) {
- for i := 0; i < b.N; i++ {
- var x []byte
- for j := 0; j < 1<<20; j++ {
- x = append(x, byte(j))
- }
- }
- }
- func BenchmarkAppendGrowString(b *testing.B) {
- var s string
- for i := 0; i < b.N; i++ {
- var x []string
- for j := 0; j < 1<<20; j++ {
- x = append(x, s)
- }
- }
- }
- func benchmarkAppendBytes(b *testing.B, length int) {
- b.StopTimer()
- x := make([]byte, 0, N)
- y := make([]byte, length)
- b.StartTimer()
- for i := 0; i < b.N; i++ {
- x = x[0:0]
- x = append(x, y...)
- }
- }
- func BenchmarkAppend1Byte(b *testing.B) {
- benchmarkAppendBytes(b, 1)
- }
- func BenchmarkAppend4Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 4)
- }
- func BenchmarkAppend7Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 7)
- }
- func BenchmarkAppend8Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 8)
- }
- func BenchmarkAppend15Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 15)
- }
- func BenchmarkAppend16Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 16)
- }
- func BenchmarkAppend32Bytes(b *testing.B) {
- benchmarkAppendBytes(b, 32)
- }
- func benchmarkAppendStr(b *testing.B, str string) {
- b.StopTimer()
- x := make([]byte, 0, N)
- b.StartTimer()
- for i := 0; i < b.N; i++ {
- x = x[0:0]
- x = append(x, str...)
- }
- }
- func BenchmarkAppendStr1Byte(b *testing.B) {
- benchmarkAppendStr(b, "1")
- }
- func BenchmarkAppendStr4Bytes(b *testing.B) {
- benchmarkAppendStr(b, "1234")
- }
- func BenchmarkAppendStr8Bytes(b *testing.B) {
- benchmarkAppendStr(b, "12345678")
- }
- func BenchmarkAppendStr16Bytes(b *testing.B) {
- benchmarkAppendStr(b, "1234567890123456")
- }
- func BenchmarkAppendStr32Bytes(b *testing.B) {
- benchmarkAppendStr(b, "12345678901234567890123456789012")
- }
- func BenchmarkAppendSpecialCase(b *testing.B) {
- b.StopTimer()
- x := make([]int, 0, N)
- b.StartTimer()
- for i := 0; i < b.N; i++ {
- x = x[0:0]
- for j := 0; j < N; j++ {
- if len(x) < cap(x) {
- x = x[:len(x)+1]
- x[len(x)-1] = j
- } else {
- x = append(x, j)
- }
- }
- }
- }
- var x []int
- func f() int {
- x[:1][0] = 3
- return 2
- }
- func TestSideEffectOrder(t *testing.T) {
- x = make([]int, 0, 10)
- x = append(x, 1, f())
- if x[0] != 1 || x[1] != 2 {
- t.Error("append failed: ", x[0], x[1])
- }
- }
- func TestAppendOverlap(t *testing.T) {
- x := []byte("1234")
- x = append(x[1:], x...) // p > q in runtime·appendslice.
- got := string(x)
- want := "2341234"
- if got != want {
- t.Errorf("overlap failed: got %q want %q", got, want)
- }
- }
- func benchmarkCopySlice(b *testing.B, l int) {
- s := make([]byte, l)
- buf := make([]byte, 4096)
- var n int
- for i := 0; i < b.N; i++ {
- n = copy(buf, s)
- }
- b.SetBytes(int64(n))
- }
- func benchmarkCopyStr(b *testing.B, l int) {
- s := string(make([]byte, l))
- buf := make([]byte, 4096)
- var n int
- for i := 0; i < b.N; i++ {
- n = copy(buf, s)
- }
- b.SetBytes(int64(n))
- }
- func BenchmarkCopy1Byte(b *testing.B) { benchmarkCopySlice(b, 1) }
- func BenchmarkCopy2Byte(b *testing.B) { benchmarkCopySlice(b, 2) }
- func BenchmarkCopy4Byte(b *testing.B) { benchmarkCopySlice(b, 4) }
- func BenchmarkCopy8Byte(b *testing.B) { benchmarkCopySlice(b, 8) }
- func BenchmarkCopy12Byte(b *testing.B) { benchmarkCopySlice(b, 12) }
- func BenchmarkCopy16Byte(b *testing.B) { benchmarkCopySlice(b, 16) }
- func BenchmarkCopy32Byte(b *testing.B) { benchmarkCopySlice(b, 32) }
- func BenchmarkCopy128Byte(b *testing.B) { benchmarkCopySlice(b, 128) }
- func BenchmarkCopy1024Byte(b *testing.B) { benchmarkCopySlice(b, 1024) }
- func BenchmarkCopy1String(b *testing.B) { benchmarkCopyStr(b, 1) }
- func BenchmarkCopy2String(b *testing.B) { benchmarkCopyStr(b, 2) }
- func BenchmarkCopy4String(b *testing.B) { benchmarkCopyStr(b, 4) }
- func BenchmarkCopy8String(b *testing.B) { benchmarkCopyStr(b, 8) }
- func BenchmarkCopy12String(b *testing.B) { benchmarkCopyStr(b, 12) }
- func BenchmarkCopy16String(b *testing.B) { benchmarkCopyStr(b, 16) }
- func BenchmarkCopy32String(b *testing.B) { benchmarkCopyStr(b, 32) }
- func BenchmarkCopy128String(b *testing.B) { benchmarkCopyStr(b, 128) }
- func BenchmarkCopy1024String(b *testing.B) { benchmarkCopyStr(b, 1024) }
|