mailing list of musl libc
 help / color / mirror / code / Atom feed
c7c1e47e4fc17df124dcf7cc28e21bfbf43ee6f6 blob 5227 bytes (raw)

  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
 
#include <limits.h>
#include <errno.h>
#include <ctype.h>
#include "uwide128.h"
#include "shgetc.h"

/* Lookup table for digit values. -1==255>=36 -> invalid */
static const unsigned char table[] = { -1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,-1,-1,-1,-1,-1,-1,
-1,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,-1,-1,-1,-1,-1,
-1,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,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
};

static uwide128 const uwide128_max  = { { -1, -1, } };
static uwide128 const uwide128_zero = { {  0,  0, } };

static const uwide128 __uwide128_limit[37] = {
	comp2(0,	0),
	comp2(-1,	-1),
	comp2(-1,	9223372036854775807),
	comp2(6148914691236517205,	6148914691236517205),
	comp2(-1,	4611686018427387903),
	comp2(3689348814741910323,	3689348814741910323),
	comp2(-6148914691236517206,	3074457345618258602),
	comp2(5270498306774157604,	2635249153387078802),
	comp2(-1,	2305843009213693951),
	comp2(-4099276460824344804,	2049638230412172401),
	comp2(-7378697629483820647,	1844674407370955161),
	comp2(8384883669867978007,	1676976733973595601),
	comp2(6148914691236517205,	1537228672809129301),
	comp2(4256940940086819603,	1418980313362273201),
	comp2(2635249153387078802,	1317624576693539401),
	comp2(1229782938247303441,	1229782938247303441),
	comp2(-1,	1152921504606846975),
	comp2(1085102592571150095,	1085102592571150095),
	comp2(-2049638230412172402,	1024819115206086200),
	comp2(-1941762534074689644,	970881267037344821),
	comp2(-3689348814741910324,	922337203685477580),
	comp2(-4392081922311798004,	878416384462359600),
	comp2(-5030930201920786805,	838488366986797800),
	comp2(4812194106185100421,	802032351030850070),
	comp2(-6148914691236517206,	768614336404564650),
	comp2(-6640827866535438582,	737869762948382064),
	comp2(-7094901566811366007,	709490156681136600),
	comp2(-1366425486941448268,	683212743470724133),
	comp2(-7905747460161236407,	658812288346769700),
	comp2(-3180473116156819245,	636094623231363848),
	comp2(-8608480567731124088,	614891469123651720),
	comp2(-8925843906633654008,	595056260442243600),
	comp2(-1,	576460752303423487),
	comp2(8943875914525843207,	558992244657865200),
	comp2(-8680820740569200761,	542551296285575047),
	comp2(8432797290838652167,	527049830677415760),
	comp2(8198552921648689607,	512409557603043100),
};

uwide128 __intscan(FILE *f, unsigned base, int pok, uwide128 lim)
{
	const unsigned char *val = table+1;
	int c, neg=0;
	unsigned x;
	uint64_t z;
	uwide128 y;
	if (base > 36 || base == 1) {
		errno = EINVAL;
		return uwide128_zero;
	}
	while (isspace((c=shgetc(f))));
	if (c=='+' || c=='-') {
		neg = -(c=='-');
		c = shgetc(f);
	}
	if ((base == 0 || base == 2 || base == 16) && c=='0') {
		c = shgetc(f);
		if ((c|32)=='x' && base != 2) {
			c = shgetc(f);
			if (val[c]>=16) {
				shunget(f);
				if (pok) shunget(f);
				else shlim(f, 0);
				return uwide128_zero;
			}
			base = 16;
		} else if ((c|32)=='b' && base != 16) {
			c = shgetc(f);
			if (val[c]>=2) {
				shunget(f);
				if (pok) shunget(f);
				else shlim(f, 0);
				return uwide128_zero;
			}
			base = 2;
		} else if (base == 0) {
			base = 8;
		}
	} else {
		if (base == 0) base = 10;
		if (val[c] >= base) {
			shunget(f);
			shlim(f, 0);
			errno = EINVAL;
			return uwide128_zero;
		}
	}
	if (base == 10) {
		for (x=0; c-'0'<10U && x<=UINT_MAX/10-1; c=shgetc(f))
			x = x*10 + (c-'0');
		for (z=x; c-'0'<10U && z<=UINT64_MAX/10-1; c=shgetc(f))
			z = z*10 + (c-'0');
		y=__uwide128_u64(x);
		if (c-'0'<10U) {
			uwide128 y10 = __uwide128_mul(y, 10);
			while (c-'0'<10U
				&& __uwide128_le(y, __uwide128_limit[10])
				&& __uwide128_le(y10, __uwide128_sub(uwide128_max, (c-'0')))) {
				y = __uwide128_add(y10, (c-'0'));
				y10 = __uwide128_mul(y, 10);
				c=shgetc(f);
			}
		}
		if (c-'0'>=10U) goto done;
	} else {
		for (x=0; val[c]<base && x<=UINT_MAX/36-1; c=shgetc(f))
			x = x*base + val[c];
		for (z=x; val[c]<base && z<=UINT64_MAX/36-1; c=shgetc(f))
			z = z*base + val[c];
		y=__uwide128_u64(z);
		if (val[c]<base) {
			uwide128 yBase = __uwide128_mul(y, base);
			while (val[c]<base
				&& __uwide128_le(y, __uwide128_limit[base])
				&& __uwide128_le(yBase, __uwide128_sub(uwide128_max, val[c]))) {
				y = __uwide128_add(yBase, val[c]);
				yBase = __uwide128_mul(y, base);
				c=shgetc(f);
			}
		}
	}
	if (val[c]<base) {
		for (; val[c]<base; c=shgetc(f));
		errno = ERANGE;
		y = lim;
		if (lim.v64[word64(0)]&1) neg = 0;
	}
done:
	shunget(f);
	if (__uwide128_le(lim, y)) {
		if (!(lim.v64[word64(0)]&1) && !neg) {
			errno = ERANGE;
			return __uwide128_sub(lim, 1);
		} else if (!__uwide128_le(y, lim)) {
			errno = ERANGE;
			return lim;
		}
	}
	return neg ? __uwide128_neg(y) : y;
}
debug log:

solving c7c1e47e ...
found c7c1e47e in https://inbox.vuxu.org/musl/dd59ed3a123143ef91cf4a459a79cf5713ad0d15.1685536608.git.Jens.Gustedt@inria.fr/
found 57424554 in https://inbox.vuxu.org/musl/56fd8b39c3f13e77682d17b749e6bc50d104e8e0.1685536319.git.Jens.Gustedt@inria.fr/
found a4a5ae86 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 a4a5ae861282863035a492ce8db0e18d4acfe3ac	src/internal/intscan.c

applying [1/2] https://inbox.vuxu.org/musl/56fd8b39c3f13e77682d17b749e6bc50d104e8e0.1685536319.git.Jens.Gustedt@inria.fr/
diff --git a/src/internal/intscan.c b/src/internal/intscan.c
index a4a5ae86..57424554 100644


applying [2/2] https://inbox.vuxu.org/musl/dd59ed3a123143ef91cf4a459a79cf5713ad0d15.1685536608.git.Jens.Gustedt@inria.fr/
diff --git a/src/internal/intscan.c b/src/internal/intscan.c
index 57424554..c7c1e47e 100644

Checking patch src/internal/intscan.c...
Applied patch src/internal/intscan.c cleanly.
Checking patch src/internal/intscan.c...
Applied patch src/internal/intscan.c cleanly.

index at:
100644 c7c1e47e4fc17df124dcf7cc28e21bfbf43ee6f6	src/internal/intscan.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).