blob: 1febe9d42be96c3a486c9ed9aed09ab2e6afb6cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
// Copyright 2023 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 test
import (
"testing"
)
var Output int
func BenchmarkDiv64UnsignedSmall(b *testing.B) {
q := uint64(1)
for i := 1; i <= b.N; i++ {
q = (q + uint64(i)) / uint64(i)
}
Output = int(q)
}
func BenchmarkDiv64Small(b *testing.B) {
q := int64(1)
for i := 1; i <= b.N; i++ {
q = (q + int64(i)) / int64(i)
}
Output = int(q)
}
func BenchmarkDiv64SmallNegDivisor(b *testing.B) {
q := int64(-1)
for i := 1; i <= b.N; i++ {
q = (int64(i) - q) / -int64(i)
}
Output = int(q)
}
func BenchmarkDiv64SmallNegDividend(b *testing.B) {
q := int64(-1)
for i := 1; i <= b.N; i++ {
q = -(int64(i) - q) / int64(i)
}
Output = int(q)
}
func BenchmarkDiv64SmallNegBoth(b *testing.B) {
q := int64(1)
for i := 1; i <= b.N; i++ {
q = -(int64(i) + q) / -int64(i)
}
Output = int(q)
}
func BenchmarkDiv64Unsigned(b *testing.B) {
q := uint64(1)
for i := 1; i <= b.N; i++ {
q = (uint64(0x7fffffffffffffff) - uint64(i) - (q & 1)) / uint64(i)
}
Output = int(q)
}
func BenchmarkDiv64(b *testing.B) {
q := int64(1)
for i := 1; i <= b.N; i++ {
q = (int64(0x7fffffffffffffff) - int64(i) - (q & 1)) / int64(i)
}
Output = int(q)
}
func BenchmarkDiv64NegDivisor(b *testing.B) {
q := int64(-1)
for i := 1; i <= b.N; i++ {
q = (int64(0x7fffffffffffffff) - int64(i) - (q & 1)) / -int64(i)
}
Output = int(q)
}
func BenchmarkDiv64NegDividend(b *testing.B) {
q := int64(-1)
for i := 1; i <= b.N; i++ {
q = -(int64(0x7fffffffffffffff) - int64(i) - (q & 1)) / int64(i)
}
Output = int(q)
}
func BenchmarkDiv64NegBoth(b *testing.B) {
q := int64(-1)
for i := 1; i <= b.N; i++ {
q = -(int64(0x7fffffffffffffff) - int64(i) - (q & 1)) / -int64(i)
}
Output = int(q)
}
func BenchmarkMod64UnsignedSmall(b *testing.B) {
r := uint64(1)
for i := 1; i <= b.N; i++ {
r = (uint64(i) + r) % uint64(i)
}
Output = int(r)
}
func BenchmarkMod64Small(b *testing.B) {
r := int64(1)
for i := 1; i <= b.N; i++ {
r = (int64(i) + r) % int64(i)
}
Output = int(r)
}
func BenchmarkMod64SmallNegDivisor(b *testing.B) {
r := int64(-1)
for i := 1; i <= b.N; i++ {
r = (int64(i) - r) % -int64(i)
}
Output = int(r)
}
func BenchmarkMod64SmallNegDividend(b *testing.B) {
r := int64(-1)
for i := 1; i <= b.N; i++ {
r = -(int64(i) - r) % int64(i)
}
Output = int(r)
}
func BenchmarkMod64SmallNegBoth(b *testing.B) {
r := int64(1)
for i := 1; i <= b.N; i++ {
r = -(int64(i) + r) % -int64(i)
}
Output = int(r)
}
func BenchmarkMod64Unsigned(b *testing.B) {
r := uint64(1)
for i := 1; i <= b.N; i++ {
r = (uint64(0x7fffffffffffffff) - uint64(i) - (r & 1)) % uint64(i)
}
Output = int(r)
}
func BenchmarkMod64(b *testing.B) {
r := int64(1)
for i := 1; i <= b.N; i++ {
r = (int64(0x7fffffffffffffff) - int64(i) - (r & 1)) % int64(i)
}
Output = int(r)
}
func BenchmarkMod64NegDivisor(b *testing.B) {
r := int64(-1)
for i := 1; i <= b.N; i++ {
r = (int64(0x7fffffffffffffff) - int64(i) - (r & 1)) % -int64(i)
}
Output = int(r)
}
func BenchmarkMod64NegDividend(b *testing.B) {
r := int64(-1)
for i := 1; i <= b.N; i++ {
r = -(int64(0x7fffffffffffffff) - int64(i) - (r & 1)) % int64(i)
}
Output = int(r)
}
func BenchmarkMod64NegBoth(b *testing.B) {
r := int64(1)
for i := 1; i <= b.N; i++ {
r = -(int64(0x7fffffffffffffff) - int64(i) - (r & 1)) % -int64(i)
}
Output = int(r)
}
|