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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
/* Copyright (c) 2002,2005, Joerg Wunsch
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of the copyright holders nor the names of
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/* $Id: stdio_private.h 847 2005-09-06 18:49:15Z joerg_wunsch $ */
#ifndef _STDIO_PRIVATE_H_
#define _STDIO_PRIVATE_H_
#include <stdio-bufio.h>
#include <stdbool.h>
#include <sys/lock.h>
/* values for PRINTF_LEVEL */
#define PRINTF_STD 1
#define PRINTF_FLT 2
/* values for SCANF_LEVEL */
#define SCANF_STD 1
#define SCANF_FLT 2
/* This is OR'd into the char stored in unget to make it non-zero to
* flag the unget buffer as being full
*/
#define UNGETC_MARK 0x0100
struct __file_str {
struct __file file; /* main file struct */
char *pos; /* current buffer position */
char *end; /* end of buffer */
size_t size; /* size of allocated storage */
};
int
__file_str_get(FILE *stream);
int
__file_str_put(char c, FILE *stream);
int
__file_str_put_alloc(char c, FILE *stream);
extern const char __match_inf[];
extern const char __match_inity[];
extern const char __match_nan[];
/* Returns 'true' if prefix of input matches pattern, independent of
* case. pattern is only upper case letters.
*/
bool __matchcaseprefix(const char *input, const char *pattern);
/*
* It is OK to discard the "const" qualifier here. f.buf is
* non-const as in the generic case, this buffer is obtained
* by malloc(). In the scanf case however, the buffer is
* really only be read (by getc()), and as this our FILE f we
* be discarded upon exiting sscanf(), nobody will ever get
* a chance to get write access to it again.
*/
#define FDEV_SETUP_STRING_READ(_s) { \
.file = { \
.flags = __SRD, \
.get = __file_str_get \
}, \
.pos = (char *) (_s) \
}
#define FDEV_SETUP_STRING_WRITE(_s, _size) { \
.file = { \
.flags = __SWR, \
.put = __file_str_put \
}, \
.pos = (_s), \
.end = (_s) + (_size), \
}
#define FDEV_SETUP_STRING_ALLOC() { \
.file = { \
.flags = __SWR, \
.put = __file_str_put_alloc \
}, \
.pos = NULL, \
.end = NULL, \
.size = 0, \
}
#ifdef POSIX_IO
#define FDEV_SETUP_POSIX(fd, buf, size, rwflags, bflags) \
FDEV_SETUP_BUFIO(fd, buf, size, \
read, write, \
lseek, close, rwflags, bflags)
int
__posix_sflags (const char *mode, int *optr);
#endif
int __d_vfprintf(FILE *__stream, const char *__fmt, va_list __ap) __FORMAT_ATTRIBUTE__(printf, 2, 0);
int __f_vfprintf(FILE *__stream, const char *__fmt, va_list __ap) __FORMAT_ATTRIBUTE__(printf, 2, 0);
int __d_sprintf(char *__s, const char *__fmt, ...) __FORMAT_ATTRIBUTE__(printf, 2, 0);
int __f_sprintf(char *__s, const char *__fmt, ...) __FORMAT_ATTRIBUTE__(printf, 2, 0);
int __d_snprintf(char *__s, size_t __n, const char *__fmt, ...) __FORMAT_ATTRIBUTE__(printf, 3, 0);
int __f_snprintf(char *__s, size_t __n, const char *__fmt, ...) __FORMAT_ATTRIBUTE__(printf, 3, 0);
double
__atod_engine(uint64_t m10, int e10);
float
__atof_engine(uint32_t m10, int e10);
#ifdef __SIZEOF_INT128__
typedef __uint128_t _u128;
typedef __int128_t _i128;
#define to_u128(x) (x)
#define from_u128(x) (x)
#define _u128_to_ld(a) ((long double) (a))
#define _u128_is_zero(a) ((a) == 0)
#define _i128_lt_zero(a) ((_i128) (a) < 0)
#define _u128_plus_64(a,b) ((a) + (b))
#define _u128_plus(a,b) ((a) + (b))
#define _u128_minus(a,b) ((a) - (b))
#define _u128_minus_64(a,b) ((a) - (b))
#define _u128_times_10(a) ((a) * 10)
#define _u128_times_base(a,b) ((a) * (b))
#define _u128_to_ld(a) ((long double) (a))
#define _u128_oflow(a) ((a) >= (((((_u128) 0xffffffffffffffffULL) << 64) | 0xffffffffffffffffULL) - 9 / 10))
#define _u128_zero (_u128) 0
#define _u128_lshift(a,b) ((_u128) (a) << (b))
#define _u128_lshift_64(a,b) ((_u128) (a) << (b))
#define _u128_rshift(a,b) ((a) >> (b))
#define _i128_rshift(a,b) ((_i128) (a) >> (b))
#define _u128_or_64(a,b) ((a) | (_u128) (b))
#define _u128_and_64(a,b) ((uint64_t) (a) & (b))
#define _u128_or(a,b) ((a) | (b))
#define _u128_and(a,b) ((a) & (b))
#define _u128_ge(a,b) ((a) >= (b))
#define _i128_ge(a,b) ((_i128)(a) >= (_i128)(b))
#define _u128_lt(a,b) ((a) < (b))
#define _i128_lt(a,b) ((_i128)(a) < (_i128)(b))
#define _u128_not(a) (~(a))
#else
typedef struct {
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
uint64_t lo, hi;
#else
uint64_t hi, lo;
#endif
} _u128;
#define _u128_zero (_u128) { 0, 0 }
static inline _u128 to_u128(uint64_t x)
{
_u128 a = { .hi = 0, .lo = x };
return a;
}
static inline uint64_t from_u128(_u128 a)
{
return a.lo;
}
static inline long double
_u128_to_ld(_u128 a)
{
return (long double) a.hi * ((long double) (1LL << 32) * (long double) (1LL << 32)) + (long double) a.lo;
}
static inline bool
_u128_is_zero(_u128 a)
{
return a.hi == 0 && a.lo == 0;
}
static inline bool
_i128_lt_zero(_u128 a)
{
return (int64_t) a.hi < 0;
}
static inline bool
_u128_lt(_u128 a, _u128 b)
{
if (a.hi == b.hi)
return a.lo < b.lo;
return a.hi < b.hi;
}
static inline bool
_i128_lt(_u128 a, _u128 b)
{
if (a.hi == b.hi) {
if ((int64_t) a.hi < 0)
return a.lo > b.lo;
else
return a.lo < b.lo;
}
return (int64_t) a.hi < (int64_t) b.hi;
}
static inline bool
_u128_ge(_u128 a, _u128 b)
{
if (a.hi == b.hi)
return a.lo >= b.lo;
return a.hi >= b.hi;
}
static inline bool
_i128_ge(_u128 a, _u128 b)
{
if (a.hi == b.hi) {
if ((int64_t) a.hi < 0)
return a.lo <= b.lo;
else
return a.lo >= b.lo;
}
return (int64_t) a.hi >= (int64_t) b.hi;
}
static inline _u128
_u128_plus_64(_u128 a, uint64_t b)
{
_u128 v;
v.lo = a.lo + b;
v.hi = a.hi;
if (v.lo < a.lo)
v.hi++;
return v;
}
static inline _u128
_u128_plus(_u128 a, _u128 b)
{
_u128 v;
v.lo = a.lo + b.lo;
v.hi = a.hi + b.hi;
if (v.lo < a.lo)
v.hi++;
return v;
}
static inline _u128
_u128_minus_64(_u128 a, uint64_t b)
{
_u128 v;
v.lo = a.lo - b;
v.hi = a.hi;
if (v.lo > a.lo)
v.hi--;
return v;
}
static inline _u128
_u128_minus(_u128 a, _u128 b)
{
_u128 v;
v.lo = a.lo - b.lo;
v.hi = a.hi - b.hi;
if (v.lo > a.lo)
v.hi--;
return v;
}
static inline _u128
_u128_lshift(_u128 a, int amt)
{
_u128 v;
if (amt == 0) {
v = a;
} else if (amt < 64) {
v.lo = a.lo << amt;
v.hi = (a.lo >> (64 - amt)) | (a.hi << amt);
} else {
v.lo = 0;
v.hi = a.lo << (amt - 64);
}
return v;
}
static inline _u128
_u128_lshift_64(uint64_t a, int amt)
{
_u128 v;
if (amt == 0) {
v.lo = a;
v.hi = 0;
} else if (amt < 64) {
v.lo = a << amt;
v.hi = (a >> (64 - amt));
} else {
v.lo = 0;
v.hi = a << (amt - 64);
}
return v;
}
static inline _u128
_u128_rshift(_u128 a, int amt)
{
_u128 v;
if (amt == 0) {
v = a;
} else if (amt < 64) {
v.lo = (a.hi << (64 - amt)) | (a.lo >> amt);
v.hi = a.hi >> amt;
} else {
v.hi = 0;
v.lo = a.hi >> (amt - 64);
}
return v;
}
static inline _u128
_u128_and(_u128 a, _u128 b)
{
_u128 v;
v.hi = a.hi & b.hi;
v.lo = a.lo & b.lo;
return v;
}
static inline uint64_t
_u128_and_64(_u128 a, uint64_t b)
{
return a.lo & b;
}
static inline _u128
_u128_or(_u128 a, _u128 b)
{
_u128 v;
v.lo = a.lo | b.lo;
v.hi = a.hi | b.hi;
return v;
}
static inline _u128
_u128_or_64(_u128 a, uint64_t b)
{
_u128 v;
v.lo = a.lo | b;
v.hi = a.hi;
return v;
}
static inline _u128
_u128_not(_u128 a)
{
_u128 v;
v.lo = ~a.lo;
v.hi = ~a.hi;
return v;
}
static inline _u128
_u128_times_10(_u128 a)
{
return _u128_plus(_u128_lshift(a, 3), _u128_lshift(a, 1));
}
static inline _u128
_u128_times_base(_u128 a, int base)
{
if (base == 10)
return _u128_times_10(a);
return _u128_lshift(a, 4);
}
static inline bool
_u128_oflow(_u128 a)
{
return a.hi >= (0xffffffffffffffffULL - 9) / 10;
}
#endif
static inline _u128
asuint128(long double f)
{
union {
long double f;
_u128 i;
} v;
v.f = f;
return v.i;
}
static inline long double
aslongdouble(_u128 i)
{
union {
long double f;
_u128 i;
} v;
v.i = i;
return v.f;
}
static inline bool
_u128_gt(_u128 a, _u128 b)
{
return _u128_lt(b, a);
}
long double
__atold_engine(_u128 m10, int e10);
static inline uint16_t
__non_atomic_exchange_ungetc(__ungetc_t *p, __ungetc_t v)
{
__ungetc_t e = *p;
*p = v;
return e;
}
static inline bool
__non_atomic_compare_exchange_ungetc(__ungetc_t *p, __ungetc_t d, __ungetc_t v)
{
if (*p != d)
return false;
*p = v;
return true;
}
#ifdef ATOMIC_UNGETC
#if __PICOLIBC_UNGETC_SIZE == 4 && defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
#define PICOLIBC_HAVE_SYNC_COMPARE_AND_SWAP
#endif
#if __PICOLIBC_UNGETC_SIZE == 2 && defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2)
#define PICOLIBC_HAVE_SYNC_COMPARE_AND_SWAP
#endif
#ifdef PICOLIBC_HAVE_SYNC_COMPARE_AND_SWAP
/* Use built-in atomic functions if they exist */
#include <stdatomic.h>
static inline bool
__atomic_compare_exchange_ungetc(__ungetc_t *p, __ungetc_t d, __ungetc_t v)
{
_Atomic __ungetc_t *pa = (_Atomic __ungetc_t *) p;
return atomic_compare_exchange_weak(pa, &d, v);
}
static inline __ungetc_t
__atomic_exchange_ungetc(__ungetc_t *p, __ungetc_t v)
{
_Atomic __ungetc_t *pa = (_Atomic __ungetc_t *) p;
return atomic_exchange_explicit(pa, v, memory_order_relaxed);
}
#else
bool
__atomic_compare_exchange_ungetc(__ungetc_t *p, __ungetc_t d, __ungetc_t v);
__ungetc_t
__atomic_exchange_ungetc(__ungetc_t *p, __ungetc_t v);
#endif /* PICOLIBC_HAVE_SYNC_COMPARE_AND_SWAP */
#else
#define __atomic_compare_exchange_ungetc(p,d,v) __non_atomic_compare_exchange_ungetc(p,d,v)
#define __atomic_exchange_ungetc(p,v) __non_atomic_exchange_ungetc(p,v)
#endif /* ATOMIC_UNGETC */
#endif /* _STDIO_PRIVATE_H_ */
|