Source file
src/strconv/itoa.go
1
2
3
4
5 package strconv
6
7 import "math/bits"
8
9 const fastSmalls = true
10
11
12
13
14 func FormatUint(i uint64, base int) string {
15 if fastSmalls && i < nSmalls && base == 10 {
16 return small(int(i))
17 }
18 _, s := formatBits(nil, i, base, false, false)
19 return s
20 }
21
22
23
24
25 func FormatInt(i int64, base int) string {
26 if fastSmalls && 0 <= i && i < nSmalls && base == 10 {
27 return small(int(i))
28 }
29 _, s := formatBits(nil, uint64(i), base, i < 0, false)
30 return s
31 }
32
33
34 func Itoa(i int) string {
35 return FormatInt(int64(i), 10)
36 }
37
38
39
40 func AppendInt(dst []byte, i int64, base int) []byte {
41 if fastSmalls && 0 <= i && i < nSmalls && base == 10 {
42 return append(dst, small(int(i))...)
43 }
44 dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
45 return dst
46 }
47
48
49
50 func AppendUint(dst []byte, i uint64, base int) []byte {
51 if fastSmalls && i < nSmalls && base == 10 {
52 return append(dst, small(int(i))...)
53 }
54 dst, _ = formatBits(dst, i, base, false, true)
55 return dst
56 }
57
58
59 func small(i int) string {
60 if i < 10 {
61 return digits[i : i+1]
62 }
63 return smallsString[i*2 : i*2+2]
64 }
65
66 const nSmalls = 100
67
68 const smallsString = "00010203040506070809" +
69 "10111213141516171819" +
70 "20212223242526272829" +
71 "30313233343536373839" +
72 "40414243444546474849" +
73 "50515253545556575859" +
74 "60616263646566676869" +
75 "70717273747576777879" +
76 "80818283848586878889" +
77 "90919293949596979899"
78
79 const host32bit = ^uint(0)>>32 == 0
80
81 const digits = "0123456789abcdefghijklmnopqrstuvwxyz"
82
83
84
85
86
87
88
89 func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
90 if base < 2 || base > len(digits) {
91 panic("strconv: illegal AppendInt/FormatInt base")
92 }
93
94
95 var a [64 + 1]byte
96 i := len(a)
97
98 if neg {
99 u = -u
100 }
101
102
103
104
105 if base == 10 {
106
107
108
109 if host32bit {
110
111 for u >= 1e9 {
112
113
114
115 q := u / 1e9
116 us := uint(u - q*1e9)
117 for j := 4; j > 0; j-- {
118 is := us % 100 * 2
119 us /= 100
120 i -= 2
121 a[i+1] = smallsString[is+1]
122 a[i+0] = smallsString[is+0]
123 }
124
125
126
127 i--
128 a[i] = smallsString[us*2+1]
129
130 u = q
131 }
132
133 }
134
135
136 us := uint(u)
137 for us >= 100 {
138 is := us % 100 * 2
139 us /= 100
140 i -= 2
141 a[i+1] = smallsString[is+1]
142 a[i+0] = smallsString[is+0]
143 }
144
145
146 is := us * 2
147 i--
148 a[i] = smallsString[is+1]
149 if us >= 10 {
150 i--
151 a[i] = smallsString[is]
152 }
153
154 } else if isPowerOfTwo(base) {
155
156
157
158
159
160
161
162 shift := uint(bits.TrailingZeros(uint(base))) & 7
163 b := uint64(base)
164 m := uint(base) - 1
165 for u >= b {
166 i--
167 a[i] = digits[uint(u)&m]
168 u >>= shift
169 }
170
171 i--
172 a[i] = digits[uint(u)]
173 } else {
174
175 b := uint64(base)
176 for u >= b {
177 i--
178
179
180
181 q := u / b
182 a[i] = digits[uint(u-q*b)]
183 u = q
184 }
185
186 i--
187 a[i] = digits[uint(u)]
188 }
189
190
191 if neg {
192 i--
193 a[i] = '-'
194 }
195
196 if append_ {
197 d = append(dst, a[i:]...)
198 return
199 }
200 s = string(a[i:])
201 return
202 }
203
204 func isPowerOfTwo(x int) bool {
205 return x&(x-1) == 0
206 }
207
View as plain text