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
|
/* OpenCL built-in library: printf_base.h
Copyright (c) 2018 Michal Babej / Tampere University
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include <stddef.h>
#include <stdint.h>
#include <math.h> /* Import INFINITY & NAN macros. */
/* Undefined if NaN is not supported by the implementation. */
#ifndef NAN
# error "NaNs are not supported!"
#endif
/* printing largest double with %f formatter requires about ~1024 digits for
* integral part, plus precision digits for decimal part, plus some space for
* modifiers. */
#define BUFSIZE 1200
#define SMALL_BUF_SIZE 64
#define INT_T int64_t
#define UINT_T uint64_t
#define INT_T_MIN INT64_MIN
#define INT_T_MAX INT64_MAX
#define FLOAT_T double
#define FLOAT_INT_T int64_t
#define FLOAT_UINT_T uint64_t
#define EXPBITS 0x7ff0000000000000L
#define EXPBIAS 1023
#define EXPSHIFTBITS 52
#define MANTBITS 0x000fffffffffffffUL
#define LEADBIT 0x0010000000000000UL
#define MSB_NIBBLE 0x000f000000000000UL
#define MAX_NIBBLES 13
#define L_EXPONENT(x) (((x & EXPBITS) >> EXPSHIFTBITS) - EXPBIAS)
#define L_MANTISSA(x) (x & MANTBITS)
#define L_SIGNBIT(x) (x >> 63)
#define L_MSB_NIBBLE(x) (x & MSB_NIBBLE)
/* Conversion flags */
typedef struct
{
unsigned char zero : 1; /** Leading zeros */
unsigned char alt : 1; /** alternate form */
unsigned char align_left : 1; /** 0 == align right (default), 1 == align left */
unsigned char uc : 1; /** Upper case (for base16 only) */
unsigned char always_sign : 1; /** plus flag (always display sign) */
unsigned char sign : 1; /** the actual sign **/
unsigned char space : 1; /** If the first character of a signed conversion is not
a sign, print a space */
unsigned char nonzeroparam : 1; /** number to print is not zero */
} flags_t;
typedef struct
{
char *bf; /** Buffer to output */
char *__restrict printf_buffer;
uint32_t printf_buffer_index;
uint32_t printf_buffer_capacity;
int precision; /** field precision */
unsigned width; /** field width */
unsigned base;
flags_t flags;
char conv;
} param_t;
void __pocl_printf_putchw (param_t *p);
void __pocl_printf_putcf (param_t *p, char c);
void __pocl_printf_puts (param_t *p, const char *string);
void __pocl_printf_nonfinite (param_t *p, const char *ptr);
unsigned __pocl_printf_puts_ljust (param_t *p,
const char *string,
unsigned width,
int max_width);
unsigned __pocl_printf_puts_rjust (param_t *p,
const char *string,
unsigned width,
int max_width);
void __pocl_printf_ptr (param_t *p, const void *ptr);
void __pocl_printf_ulong (param_t *p, UINT_T u);
void __pocl_printf_long (param_t *p, INT_T i);
void __pocl_printf_float (param_t *p, FLOAT_T f);
|