Retro68/gcc/libgo/go/strconv/itoa.go

207 lines
5.3 KiB
Go
Raw Normal View History

2012-03-27 23:13:14 +00:00
// Copyright 2009 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 strconv
2019-06-02 15:48:37 +00:00
import "math/bits"
2018-12-28 15:30:48 +00:00
const fastSmalls = true // enable fast path for small integers
2014-09-21 17:33:12 +00:00
// FormatUint returns the string representation of i in the given base,
// for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
// for digit values >= 10.
2012-03-27 23:13:14 +00:00
func FormatUint(i uint64, base int) string {
2018-12-28 15:30:48 +00:00
if fastSmalls && i < nSmalls && base == 10 {
return small(int(i))
}
2012-03-27 23:13:14 +00:00
_, s := formatBits(nil, i, base, false, false)
return s
}
2014-09-21 17:33:12 +00:00
// FormatInt returns the string representation of i in the given base,
// for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
// for digit values >= 10.
2012-03-27 23:13:14 +00:00
func FormatInt(i int64, base int) string {
2018-12-28 15:30:48 +00:00
if fastSmalls && 0 <= i && i < nSmalls && base == 10 {
return small(int(i))
}
2012-03-27 23:13:14 +00:00
_, s := formatBits(nil, uint64(i), base, i < 0, false)
return s
}
2019-06-02 15:48:37 +00:00
// Itoa is equivalent to FormatInt(int64(i), 10).
2012-03-27 23:13:14 +00:00
func Itoa(i int) string {
return FormatInt(int64(i), 10)
}
// AppendInt appends the string form of the integer i,
// as generated by FormatInt, to dst and returns the extended buffer.
func AppendInt(dst []byte, i int64, base int) []byte {
2018-12-28 15:30:48 +00:00
if fastSmalls && 0 <= i && i < nSmalls && base == 10 {
return append(dst, small(int(i))...)
}
2012-03-27 23:13:14 +00:00
dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
return dst
}
// AppendUint appends the string form of the unsigned integer i,
// as generated by FormatUint, to dst and returns the extended buffer.
func AppendUint(dst []byte, i uint64, base int) []byte {
2018-12-28 15:30:48 +00:00
if fastSmalls && i < nSmalls && base == 10 {
return append(dst, small(int(i))...)
}
2012-03-27 23:13:14 +00:00
dst, _ = formatBits(dst, i, base, false, true)
return dst
}
2018-12-28 15:30:48 +00:00
// small returns the string for an i with 0 <= i < nSmalls.
func small(i int) string {
if i < 10 {
2019-06-02 15:48:37 +00:00
return digits[i : i+1]
2018-12-28 15:30:48 +00:00
}
2019-06-02 15:48:37 +00:00
return smallsString[i*2 : i*2+2]
2018-12-28 15:30:48 +00:00
}
const nSmalls = 100
const smallsString = "00010203040506070809" +
"10111213141516171819" +
"20212223242526272829" +
"30313233343536373839" +
"40414243444546474849" +
"50515253545556575859" +
"60616263646566676869" +
"70717273747576777879" +
"80818283848586878889" +
"90919293949596979899"
const host32bit = ^uint(0)>>32 == 0
const digits = "0123456789abcdefghijklmnopqrstuvwxyz"
2012-03-27 23:13:14 +00:00
// formatBits computes the string representation of u in the given base.
// If neg is set, u is treated as negative int64 value. If append_ is
// set, the string is appended to dst and the resulting byte slice is
// returned as the first result value; otherwise the string is returned
// as the second result value.
//
func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
if base < 2 || base > len(digits) {
panic("strconv: illegal AppendInt/FormatInt base")
}
// 2 <= base && base <= len(digits)
var a [64 + 1]byte // +1 for sign of 64bit value in base 2
i := len(a)
if neg {
u = -u
}
// convert bits
2018-12-28 15:30:48 +00:00
// We use uint values where we can because those will
// fit into a single register even on a 32bit machine.
2012-03-27 23:13:14 +00:00
if base == 10 {
2017-04-10 11:32:00 +00:00
// common case: use constants for / because
// the compiler can optimize it into a multiply+shift
2018-12-28 15:30:48 +00:00
if host32bit {
// convert the lower digits using 32bit operations
for u >= 1e9 {
// Avoid using r = a%b in addition to q = a/b
// since 64bit division and modulo operations
// are calculated by runtime functions on 32bit machines.
2017-04-10 11:32:00 +00:00
q := u / 1e9
2018-12-28 15:30:48 +00:00
us := uint(u - q*1e9) // u % 1e9 fits into a uint
for j := 4; j > 0; j-- {
is := us % 100 * 2
us /= 100
i -= 2
a[i+1] = smallsString[is+1]
a[i+0] = smallsString[is+0]
2017-04-10 11:32:00 +00:00
}
2018-12-28 15:30:48 +00:00
// us < 10, since it contains the last digit
// from the initial 9-digit us.
i--
a[i] = smallsString[us*2+1]
2017-04-10 11:32:00 +00:00
u = q
}
2018-12-28 15:30:48 +00:00
// u < 1e9
2012-03-27 23:13:14 +00:00
}
2017-04-10 11:32:00 +00:00
2018-12-28 15:30:48 +00:00
// u guaranteed to fit into a uint
us := uint(u)
for us >= 100 {
is := us % 100 * 2
us /= 100
i -= 2
a[i+1] = smallsString[is+1]
a[i+0] = smallsString[is+0]
2012-03-27 23:13:14 +00:00
}
2018-12-28 15:30:48 +00:00
// us < 100
is := us * 2
2017-04-10 11:32:00 +00:00
i--
2018-12-28 15:30:48 +00:00
a[i] = smallsString[is+1]
if us >= 10 {
i--
a[i] = smallsString[is]
}
2012-03-27 23:13:14 +00:00
2019-06-02 15:48:37 +00:00
} else if isPowerOfTwo(base) {
// Use shifts and masks instead of / and %.
// Base is a power of 2 and 2 <= base <= len(digits) where len(digits) is 36.
// The largest power of 2 below or equal to 36 is 32, which is 1 << 5;
// i.e., the largest possible shift count is 5. By &-ind that value with
// the constant 7 we tell the compiler that the shift count is always
// less than 8 which is smaller than any register width. This allows
// the compiler to generate better code for the shift operation.
shift := uint(bits.TrailingZeros(uint(base))) & 7
2012-03-27 23:13:14 +00:00
b := uint64(base)
2019-06-02 15:48:37 +00:00
m := uint(base) - 1 // == 1<<shift - 1
2012-03-27 23:13:14 +00:00
for u >= b {
i--
2018-12-28 15:30:48 +00:00
a[i] = digits[uint(u)&m]
2019-06-02 15:48:37 +00:00
u >>= shift
2012-03-27 23:13:14 +00:00
}
2017-04-10 11:32:00 +00:00
// u < base
i--
2018-12-28 15:30:48 +00:00
a[i] = digits[uint(u)]
2012-03-27 23:13:14 +00:00
} else {
// general case
b := uint64(base)
for u >= b {
i--
2018-12-28 15:30:48 +00:00
// Avoid using r = a%b in addition to q = a/b
// since 64bit division and modulo operations
// are calculated by runtime functions on 32bit machines.
2017-04-10 11:32:00 +00:00
q := u / b
2018-12-28 15:30:48 +00:00
a[i] = digits[uint(u-q*b)]
2017-04-10 11:32:00 +00:00
u = q
2012-03-27 23:13:14 +00:00
}
2017-04-10 11:32:00 +00:00
// u < base
i--
2018-12-28 15:30:48 +00:00
a[i] = digits[uint(u)]
2012-03-27 23:13:14 +00:00
}
// add sign, if any
if neg {
i--
a[i] = '-'
}
if append_ {
d = append(dst, a[i:]...)
return
}
s = string(a[i:])
return
}
2019-06-02 15:48:37 +00:00
func isPowerOfTwo(x int) bool {
return x&(x-1) == 0
}