OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [posix/] [libposix/] [include/] [posix/] [printf.h] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 drasko
/* Copyright (C) 1991-1993,1995-1999,2000,2001 Free Software Foundation, Inc.
2
   This file is part of the GNU C Library.
3
 
4
   The GNU C Library is free software; you can redistribute it and/or
5
   modify it under the terms of the GNU Lesser General Public
6
   License as published by the Free Software Foundation; either
7
   version 2.1 of the License, or (at your option) any later version.
8
 
9
   The GNU C Library is distributed in the hope that it will be useful,
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
   Lesser General Public License for more details.
13
 
14
   You should have received a copy of the GNU Lesser General Public
15
   License along with the GNU C Library; if not, write to the Free
16
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17
   02111-1307 USA.  */
18
 
19
/* March 11, 2001         Manuel Novoa III
20
 *
21
 * Modified as appropriate for my new stdio lib.
22
 */
23
 
24
#ifndef _PRINTF_H
25
 
26
#define _PRINTF_H       1
27
#include <features.h>
28
 
29
__BEGIN_DECLS
30
 
31
#define __need_FILE
32
#include <stdio.h>
33
#define __need_size_t
34
#define __need_wchar_t
35
#include <stddef.h>
36
 
37
/* WARNING -- This is definitely nonportable... but it seems to work
38
 * with gcc, which is currently the only "supported" compiler.
39
 * The library code uses bitmasks for space-efficiency (you can't
40
 * set/test multiple bitfields in one operation).  Unfortunatly, we
41
 * need to support bitfields since that's what glibc uses.  So, we take
42
 * advantage of how gcc lays out bitfields to create an appropriate
43
 * mapping.  By defining __PRINTF_INFO_NO_BITFIELD we access the
44
 * bitfields using bitmasks in a single flag variable.
45
 *
46
 * WARNING -- This may very well fail if built with -fpack-struct!!!
47
 *
48
 * TODO -- Add a validation test.
49
 * TODO -- Add an option to build in a shim translation function if
50
 *         the bitfield<->bitmask mapping fails.
51
 */
52
/*  #define __PRINTF_INFO_NO_BITFIELD */
53
#include <endian.h>
54
 
55
struct printf_info
56
{
57
  int prec;                     /* Precision.  */
58
  int width;                    /* Width.  */
59
#ifdef __UCLIBC_HAS_WCHAR__
60
  wchar_t spec;                 /* Format letter.  */
61
#else
62
  int spec;
63
#endif
64
#ifndef __PRINTF_INFO_NO_BITFIELD
65
#if __BYTE_ORDER == __LITTLE_ENDIAN
66
  unsigned int space:1;         /* Space flag.  */
67
  unsigned int showsign:1;      /* + flag.  */
68
  unsigned int extra:1;         /* For special use.  */
69
  unsigned int left:1;          /* - flag.  */
70
  unsigned int alt:1;           /* # flag.  */
71
  unsigned int group:1;         /* ' flag.  */
72
  unsigned int i18n:1;          /* I flag.  */
73
  unsigned int wide:1;          /* Nonzero for wide character streams.  */
74
  unsigned int is_char:1;       /* hh flag.  */
75
  unsigned int is_short:1;      /* h flag.  */
76
  unsigned int is_long:1;       /* l flag.  */
77
  unsigned int is_long_double:1;/* L flag.  */
78
  unsigned int __padding:20;/* non-gnu -- total of 32 bits on 32bit arch */
79
 
80
#elif __BYTE_ORDER == __BIG_ENDIAN
81
 
82
  unsigned int __padding:20;/* non-gnu -- total of 32 bits on 32bit arch */
83
  unsigned int is_long_double:1;/* L flag.  */
84
  unsigned int is_long:1;       /* l flag.  */
85
  unsigned int is_short:1;      /* h flag.  */
86
  unsigned int is_char:1;       /* hh flag.  */
87
  unsigned int wide:1;          /* Nonzero for wide character streams.  */
88
  unsigned int i18n:1;          /* I flag.  */
89
  unsigned int group:1;         /* ' flag.  */
90
  unsigned int alt:1;           /* # flag.  */
91
  unsigned int left:1;          /* - flag.  */
92
  unsigned int extra:1;         /* For special use.  */
93
  unsigned int showsign:1;      /* + flag.  */
94
  unsigned int space:1;         /* Space flag.  */
95
 
96
#else
97
#error unsupported byte order!
98
#endif
99
 
100
#define PRINT_INFO_FLAG_VAL(INFO_PTR,BITFIELD) (INFO_PTR)->BITFIELD
101
#define PRINT_INFO_SET_FLAG(INFO_PTR,BITFIELD) (INFO_PTR)->BITFIELD = 1
102
#define PRINT_INFO_CLR_FLAG(INFO_PTR,BITFIELD) (INFO_PTR)->BITFIELD = 0
103
#define PRINT_INFO_SET_extra(INFO_PTR,VAL) (INFO_PTR)->extra = (VAL)
104
 
105
#else  /* __PRINTF_INFO_NO_BITFIELD */
106
 
107
  unsigned int _flags;          /* non-gnu */
108
#define __PRINT_INFO_FLAG_space                                 (1<<0)
109
#define __PRINT_INFO_FLAG_showsign                              (1<<1)
110
#define __PRINT_INFO_FLAG_extra                                 (1<<2)
111
#define __PRINT_INFO_FLAG_left                                  (1<<3)
112
#define __PRINT_INFO_FLAG_alt                                   (1<<4)
113
#define __PRINT_INFO_FLAG_group                                 (1<<5)
114
#define __PRINT_INFO_FLAG_i18n                                  (1<<6)
115
#define __PRINT_INFO_FLAG_wide                                  (1<<7)
116
 
117
#define __PRINT_INFO_FLAG_is_char                               (1<<8)
118
#define __PRINT_INFO_FLAG_is_short                              (1<<9)
119
#define __PRINT_INFO_FLAG_is_long                               (1<<10)
120
#define __PRINT_INFO_FLAG_is_long_double                (1<<11)
121
 
122
#if defined(__STDC__) && __STDC__
123
#define PRINT_INFO_FLAG_VAL(INFO_PTR,BITFIELD) \
124
        ((INFO_PTR)->_flags & __PRINT_INFO_FLAG_##BITFIELD)
125
#define PRINT_INFO_SET_FLAG(INFO_PTR,BITFIELD) \
126
        ((INFO_PTR)->_flags |= __PRINT_INFO_FLAG_##BITFIELD)
127
#define PRINT_INFO_CLR_FLAG(INFO_PTR,BITFIELD) \
128
        ((INFO_PTR)->_flags &= ~__PRINT_INFO_FLAG_##BITFIELD)
129
#else
130
#define PRINT_INFO_FLAG_VAL(INFO_PTR,BITFIELD) \
131
        ((INFO_PTR)->_flags & __PRINT_INFO_FLAG_/**/BITFIELD)
132
#define PRINT_INFO_SET_FLAG(INFO_PTR,BITFIELD) \
133
        ((INFO_PTR)->_flags |= __PRINT_INFO_FLAG_/**/BITFIELD)
134
#define PRINT_INFO_CLR_FLAG(INFO_PTR,BITFIELD) \
135
        ((INFO_PTR)->_flags &= ~__PRINT_INFO_FLAG_/**/BITFIELD)
136
#endif
137
#define PRINT_INFO_SET_extra(INFO_PTR,VAL) \
138
        ((INFO_PTR)->_flags |= (((INFO_PTR)->_flags & ~1) | ((VAL) & 1)))
139
#endif /* __PRINTF_INFO_NO_BITFIELD */
140
#ifdef __UCLIBC_HAS_WCHAR__
141
  wchar_t pad;                  /* Padding character.  */
142
#else
143
  int pad;
144
#endif
145
};
146
 
147
 
148
/* Type of a printf specifier-handler function.
149
   STREAM is the FILE on which to write output.
150
   INFO gives information about the format specification.
151
   ARGS is a vector of pointers to the argument data;
152
   the number of pointers will be the number returned
153
   by the associated arginfo function for the same INFO.
154
 
155
   The function should return the number of characters written,
156
   or -1 for errors.  */
157
 
158
#ifdef __UCLIBC_HAS_GLIBC_CUSTOM_PRINTF__
159
typedef int (*printf_function) (FILE *__stream,
160
                             __const struct printf_info *__info,
161
                             __const void *__const *__args);
162
 
163
/* Type of a printf specifier-arginfo function.
164
   INFO gives information about the format specification.
165
   N, ARGTYPES, and return value are as for parse_printf_format.  */
166
 
167
typedef int printf_arginfo_function (__const struct printf_info *__info,
168
                                     size_t __n, int *__argtypes);
169
 
170
 
171
/* Register FUNC to be called to format SPEC specifiers; ARGINFO must be
172
   specified to determine how many arguments a SPEC conversion requires and
173
   what their types are.  */
174
 
175
extern int register_printf_function (int __spec, printf_function __func,
176
                                     printf_arginfo_function __arginfo);
177
#endif
178
 
179
 
180
/* Parse FMT, and fill in N elements of ARGTYPES with the
181
   types needed for the conversions FMT specifies.  Returns
182
   the number of arguments required by FMT.
183
 
184
   The ARGINFO function registered with a user-defined format is passed a
185
   `struct printf_info' describing the format spec being parsed.  A width
186
   or precision of INT_MIN means a `*' was used to indicate that the
187
   width/precision will come from an arg.  The function should fill in the
188
   array it is passed with the types of the arguments it wants, and return
189
   the number of arguments it wants.  */
190
 
191
extern size_t parse_printf_format (__const char *__restrict __fmt, size_t __n,
192
                                   int *__restrict __argtypes) __THROW;
193
 
194
 
195
/* Codes returned by `parse_printf_format' for basic types.
196
 
197
   These values cover all the standard format specifications.
198
   Users can add new values after PA_LAST for their own types.  */
199
 
200
/* WARNING -- The above is not entirely true, even for glibc.
201
 * As far as the library code is concerned, such args are treated
202
 * as 'your type' pointers if qualified by PA_FLAG_PTR.  If they
203
 * aren't qualified as pointers, I _think_ glibc just ignores them
204
 * and carries on.  I think it should be treated as an error. */
205
 
206
enum
207
{                               /* C type: */
208
  PA_INT,                       /* int */
209
  PA_CHAR,                      /* int, cast to char */
210
  PA_WCHAR,                     /* wide char */
211
  PA_STRING,                    /* const char *, a '\0'-terminated string */
212
  PA_WSTRING,                   /* const wchar_t *, wide character string */
213
  PA_POINTER,                   /* void * */
214
  PA_FLOAT,                     /* float */
215
  PA_DOUBLE,                    /* double */
216
  __PA_NOARG,                   /* non-glibc -- signals non-arg width or prec */
217
  PA_LAST
218
};
219
 
220
/* Flag bits that can be set in a type returned by `parse_printf_format'.  */
221
/* WARNING -- These differ in value from what glibc uses. */
222
#define PA_FLAG_MASK            (0xff00)
223
#define __PA_FLAG_CHAR          (0x0100) /* non-gnu -- to deal with hh */
224
#define PA_FLAG_SHORT           (0x0200)
225
#define PA_FLAG_LONG            (0x0400)
226
#define PA_FLAG_LONG_LONG       (0x0800)
227
#define PA_FLAG_LONG_DOUBLE     PA_FLAG_LONG_LONG
228
#define PA_FLAG_PTR             (0x1000) /* TODO -- make dynamic??? */
229
 
230
#define __PA_INTMASK            (0x0f00) /* non-gnu -- all int flags */
231
 
232
#if 0
233
/* Function which can be registered as `printf'-handlers.  */
234
 
235
/* Print floating point value using using abbreviations for the orders
236
   of magnitude used for numbers ('k' for kilo, 'm' for mega etc).  If
237
   the format specifier is a uppercase character powers of 1000 are
238
   used.  Otherwise powers of 1024.  */
239
extern int printf_size (FILE *__restrict __fp,
240
                        __const struct printf_info *__info,
241
                        __const void *__const *__restrict __args) __THROW;
242
 
243
/* This is the appropriate argument information function for `printf_size'.  */
244
extern int printf_size_info (__const struct printf_info *__restrict
245
                             __info, size_t __n, int *__restrict __argtypes)
246
     __THROW;
247
 
248
#endif
249
 
250
__END_DECLS
251
 
252
#endif /* printf.h  */

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.