1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
7 const fastSmalls
= true // enable fast path for small integers
9 // FormatUint returns the string representation of i in the given base,
10 // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
11 // for digit values >= 10.
12 func FormatUint(i
uint64, base
int) string {
13 if fastSmalls
&& i
< nSmalls
&& base
== 10 {
16 _
, s
:= formatBits(nil, i
, base
, false, false)
20 // FormatInt returns the string representation of i in the given base,
21 // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
22 // for digit values >= 10.
23 func FormatInt(i
int64, base
int) string {
24 if fastSmalls
&& 0 <= i
&& i
< nSmalls
&& base
== 10 {
27 _
, s
:= formatBits(nil, uint64(i
), base
, i
< 0, false)
31 // Itoa is shorthand for FormatInt(int64(i), 10).
32 func Itoa(i
int) string {
33 return FormatInt(int64(i
), 10)
36 // AppendInt appends the string form of the integer i,
37 // as generated by FormatInt, to dst and returns the extended buffer.
38 func AppendInt(dst
[]byte, i
int64, base
int) []byte {
39 if fastSmalls
&& 0 <= i
&& i
< nSmalls
&& base
== 10 {
40 return append(dst
, small(int(i
))...)
42 dst
, _
= formatBits(dst
, uint64(i
), base
, i
< 0, true)
46 // AppendUint appends the string form of the unsigned integer i,
47 // as generated by FormatUint, to dst and returns the extended buffer.
48 func AppendUint(dst
[]byte, i
uint64, base
int) []byte {
49 if fastSmalls
&& i
< nSmalls
&& base
== 10 {
50 return append(dst
, small(int(i
))...)
52 dst
, _
= formatBits(dst
, i
, base
, false, true)
56 // small returns the string for an i with 0 <= i < nSmalls.
57 func small(i
int) string {
62 return smallsString
[i
*2+off
: i
*2+2]
67 const smallsString
= "00010203040506070809" +
68 "10111213141516171819" +
69 "20212223242526272829" +
70 "30313233343536373839" +
71 "40414243444546474849" +
72 "50515253545556575859" +
73 "60616263646566676869" +
74 "70717273747576777879" +
75 "80818283848586878889" +
76 "90919293949596979899"
78 const host32bit
= ^uint(0)>>32 == 0
80 const digits
= "0123456789abcdefghijklmnopqrstuvwxyz"
82 var shifts
= [len(digits
) + 1]uint{
90 // formatBits computes the string representation of u in the given base.
91 // If neg is set, u is treated as negative int64 value. If append_ is
92 // set, the string is appended to dst and the resulting byte slice is
93 // returned as the first result value; otherwise the string is returned
94 // as the second result value.
96 func formatBits(dst
[]byte, u
uint64, base
int, neg
, append_
bool) (d
[]byte, s
string) {
97 if base
< 2 || base
> len(digits
) {
98 panic("strconv: illegal AppendInt/FormatInt base")
100 // 2 <= base && base <= len(digits)
102 var a
[64 + 1]byte // +1 for sign of 64bit value in base 2
110 // We use uint values where we can because those will
111 // fit into a single register even on a 32bit machine.
113 // common case: use constants for / because
114 // the compiler can optimize it into a multiply+shift
117 // convert the lower digits using 32bit operations
119 // Avoid using r = a%b in addition to q = a/b
120 // since 64bit division and modulo operations
121 // are calculated by runtime functions on 32bit machines.
123 us
:= uint(u
- q
*1e9
) // u % 1e9 fits into a uint
124 for j
:= 4; j
> 0; j
-- {
128 a
[i
+1] = smallsString
[is
+1]
129 a
[i
+0] = smallsString
[is
+0]
132 // us < 10, since it contains the last digit
133 // from the initial 9-digit us.
135 a
[i
] = smallsString
[us
*2+1]
142 // u guaranteed to fit into a uint
148 a
[i
+1] = smallsString
[is
+1]
149 a
[i
+0] = smallsString
[is
+0]
155 a
[i
] = smallsString
[is
+1]
158 a
[i
] = smallsString
[is
]
161 } else if s
:= shifts
[base
]; s
> 0 {
162 // base is power of 2: use shifts and masks instead of / and %
164 m
:= uint(base
) - 1 // == 1<<s - 1
167 a
[i
] = digits
[uint(u
)&m
]
172 a
[i
] = digits
[uint(u
)]
178 // Avoid using r = a%b in addition to q = a/b
179 // since 64bit division and modulo operations
180 // are calculated by runtime functions on 32bit machines.
182 a
[i
] = digits
[uint(u
-q
*b
)]
187 a
[i
] = digits
[uint(u
)]
197 d
= append(dst
, a
[i
:]...)