xref: /netbsd-src/sys/arch/powerpc/include/int_fmtio.h (revision d909946ca08dceb44d7d0f22ec9488679695d976)
1 /*	$NetBSD: int_fmtio.h,v 1.6 2015/04/01 23:31:37 matt Exp $	*/
2 
3 /*-
4  * Copyright (c) 2001 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Klaus Klein.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef _POWERPC_INT_FMTIO_H_
33 #define _POWERPC_INT_FMTIO_H_
34 
35 #ifdef __INTPTR_FMTd__
36 #include <sys/common_int_fmtio.h>
37 #else
38 /*
39  * 7.8.1 Macros for format specifiers
40  */
41 
42 /* fprintf macros for signed integers */
43 
44 #define	PRId8		"d"	/* int8_t		*/
45 #define	PRId16		"d"	/* int16_t		*/
46 #define	PRId32		"d"	/* int32_t		*/
47 #define	PRId64		"lld"	/* int64_t		*/
48 #define	PRIdLEAST8	"d"	/* int_least8_t		*/
49 #define	PRIdLEAST16	"d"	/* int_least16_t	*/
50 #define	PRIdLEAST32	"d"	/* int_least32_t	*/
51 #define	PRIdLEAST64	"lld"	/* int_least64_t	*/
52 #define	PRIdFAST8	"d"	/* int_fast8_t		*/
53 #define	PRIdFAST16	"d"	/* int_fast16_t		*/
54 #define	PRIdFAST32	"d"	/* int_fast32_t		*/
55 #define	PRIdFAST64	"lld"	/* int_fast64_t		*/
56 #define	PRIdMAX		"lld"	/* intmax_t		*/
57 #ifdef _LP64
58 #define	PRIdPTR		"ld"	/* intptr_t		*/
59 #else
60 #define	PRIdPTR		"d"	/* intptr_t		*/
61 #endif
62 
63 #define	PRIi8		"i"	/* int8_t		*/
64 #define	PRIi16		"i"	/* int16_t		*/
65 #define	PRIi32		"i"	/* int32_t		*/
66 #define	PRIi64		"lli"	/* int64_t		*/
67 #define	PRIiLEAST8	"i"	/* int_least8_t		*/
68 #define	PRIiLEAST16	"i"	/* int_least16_t	*/
69 #define	PRIiLEAST32	"i"	/* int_least32_t	*/
70 #define	PRIiLEAST64	"lli"	/* int_least64_t	*/
71 #define	PRIiFAST8	"i"	/* int_fast8_t		*/
72 #define	PRIiFAST16	"i"	/* int_fast16_t		*/
73 #define	PRIiFAST32	"i"	/* int_fast32_t		*/
74 #define	PRIiFAST64	"lli"	/* int_fast64_t		*/
75 #define	PRIiMAX		"lli"	/* intmax_t		*/
76 #ifdef _LP64
77 #define	PRIiPTR		"li"	/* intptr_t		*/
78 #else
79 #define	PRIiPTR		"i"	/* intptr_t		*/
80 #endif
81 
82 /* fprintf macros for unsigned integers */
83 
84 #define	PRIo8		"o"	/* uint8_t		*/
85 #define	PRIo16		"o"	/* uint16_t		*/
86 #define	PRIo32		"o"	/* uint32_t		*/
87 #define	PRIo64		"llo"	/* uint64_t		*/
88 #define	PRIoLEAST8	"o"	/* uint_least8_t	*/
89 #define	PRIoLEAST16	"o"	/* uint_least16_t	*/
90 #define	PRIoLEAST32	"o"	/* uint_least32_t	*/
91 #define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
92 #define	PRIoFAST8	"o"	/* uint_fast8_t		*/
93 #define	PRIoFAST16	"o"	/* uint_fast16_t	*/
94 #define	PRIoFAST32	"o"	/* uint_fast32_t	*/
95 #define	PRIoFAST64	"llo"	/* uint_fast64_t	*/
96 #define	PRIoMAX		"llo"	/* uintmax_t		*/
97 #ifdef _LP64
98 #define	PRIoPTR		"lo"	/* uintptr_t		*/
99 #else
100 #define	PRIoPTR		"o"	/* uintptr_t		*/
101 #endif
102 
103 #define	PRIu8		"u"	/* uint8_t		*/
104 #define	PRIu16		"u"	/* uint16_t		*/
105 #define	PRIu32		"u"	/* uint32_t		*/
106 #define	PRIu64		"llu"	/* uint64_t		*/
107 #define	PRIuLEAST8	"u"	/* uint_least8_t	*/
108 #define	PRIuLEAST16	"u"	/* uint_least16_t	*/
109 #define	PRIuLEAST32	"u"	/* uint_least32_t	*/
110 #define	PRIuLEAST64	"llu"	/* uint_least64_t	*/
111 #define	PRIuFAST8	"u"	/* uint_fast8_t		*/
112 #define	PRIuFAST16	"u"	/* uint_fast16_t	*/
113 #define	PRIuFAST32	"u"	/* uint_fast32_t	*/
114 #define	PRIuFAST64	"llu"	/* uint_fast64_t	*/
115 #define	PRIuMAX		"llu"	/* uintmax_t		*/
116 #ifdef _LP64
117 #define	PRIuPTR		"lu"	/* uintptr_t		*/
118 #else
119 #define	PRIuPTR		"u"	/* uintptr_t		*/
120 #endif
121 
122 #define	PRIx8		"x"	/* uint8_t		*/
123 #define	PRIx16		"x"	/* uint16_t		*/
124 #define	PRIx32		"x"	/* uint32_t		*/
125 #define	PRIx64		"llx"	/* uint64_t		*/
126 #define	PRIxLEAST8	"x"	/* uint_least8_t	*/
127 #define	PRIxLEAST16	"x"	/* uint_least16_t	*/
128 #define	PRIxLEAST32	"x"	/* uint_least32_t	*/
129 #define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
130 #define	PRIxFAST8	"x"	/* uint_fast8_t		*/
131 #define	PRIxFAST16	"x"	/* uint_fast16_t	*/
132 #define	PRIxFAST32	"x"	/* uint_fast32_t	*/
133 #define	PRIxFAST64	"llx"	/* uint_fast64_t	*/
134 #define	PRIxMAX		"llx"	/* uintmax_t		*/
135 #ifdef _LP64
136 #define	PRIxPTR		"lx"	/* uintptr_t		*/
137 #else
138 #define	PRIxPTR		"x"	/* uintptr_t		*/
139 #endif
140 
141 #define	PRIX8		"X"	/* uint8_t		*/
142 #define	PRIX16		"X"	/* uint16_t		*/
143 #define	PRIX32		"X"	/* uint32_t		*/
144 #define	PRIX64		"llX"	/* uint64_t		*/
145 #define	PRIXLEAST8	"X"	/* uint_least8_t	*/
146 #define	PRIXLEAST16	"X"	/* uint_least16_t	*/
147 #define	PRIXLEAST32	"X"	/* uint_least32_t	*/
148 #define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
149 #define	PRIXFAST8	"X"	/* uint_fast8_t		*/
150 #define	PRIXFAST16	"X"	/* uint_fast16_t	*/
151 #define	PRIXFAST32	"X"	/* uint_fast32_t	*/
152 #define	PRIXFAST64	"llX"	/* uint_fast64_t	*/
153 #define	PRIXMAX		"llX"	/* uintmax_t		*/
154 #ifdef _LP64
155 #define	PRIXPTR		"lX"	/* uintptr_t		*/
156 #else
157 #define	PRIXPTR		"X"	/* uintptr_t		*/
158 #endif
159 
160 /* fscanf macros for signed integers */
161 
162 #define	SCNd8		"hhd"	/* int8_t		*/
163 #define	SCNd16		"hd"	/* int16_t		*/
164 #define	SCNd32		"d"	/* int32_t		*/
165 #define	SCNd64		"lld"	/* int64_t		*/
166 #define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
167 #define	SCNdLEAST16	"hd"	/* int_least16_t	*/
168 #define	SCNdLEAST32	"d"	/* int_least32_t	*/
169 #define	SCNdLEAST64	"lld"	/* int_least64_t	*/
170 #define	SCNdFAST8	"d"	/* int_fast8_t		*/
171 #define	SCNdFAST16	"d"	/* int_fast16_t		*/
172 #define	SCNdFAST32	"d"	/* int_fast32_t		*/
173 #define	SCNdFAST64	"lld"	/* int_fast64_t		*/
174 #define	SCNdMAX		"lld"	/* intmax_t		*/
175 #ifdef _LP64
176 #define	SCNdPTR		"ld"	/* intptr_t		*/
177 #else
178 #define	SCNdPTR		"d"	/* intptr_t		*/
179 #endif
180 
181 #define	SCNi8		"hhi"	/* int8_t		*/
182 #define	SCNi16		"hi"	/* int16_t		*/
183 #define	SCNi32		"i"	/* int32_t		*/
184 #define	SCNi64		"lli"	/* int64_t		*/
185 #define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
186 #define	SCNiLEAST16	"hi"	/* int_least16_t	*/
187 #define	SCNiLEAST32	"i"	/* int_least32_t	*/
188 #define	SCNiLEAST64	"lli"	/* int_least64_t	*/
189 #define	SCNiFAST8	"i"	/* int_fast8_t		*/
190 #define	SCNiFAST16	"i"	/* int_fast16_t		*/
191 #define	SCNiFAST32	"i"	/* int_fast32_t		*/
192 #define	SCNiFAST64	"lli"	/* int_fast64_t		*/
193 #define	SCNiMAX		"lli"	/* intmax_t		*/
194 #ifdef _LP64
195 #define	SCNiPTR		"li"	/* intptr_t		*/
196 #else
197 #define	SCNiPTR		"i"	/* intptr_t		*/
198 #endif
199 
200 /* fscanf macros for unsigned integers */
201 
202 #define	SCNo8		"hho"	/* uint8_t		*/
203 #define	SCNo16		"ho"	/* uint16_t		*/
204 #define	SCNo32		"o"	/* uint32_t		*/
205 #define	SCNo64		"llo"	/* uint64_t		*/
206 #define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
207 #define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
208 #define	SCNoLEAST32	"o"	/* uint_least32_t	*/
209 #define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
210 #define	SCNoFAST8	"o"	/* uint_fast8_t		*/
211 #define	SCNoFAST16	"o"	/* uint_fast16_t	*/
212 #define	SCNoFAST32	"o"	/* uint_fast32_t	*/
213 #define	SCNoFAST64	"llo"	/* uint_fast64_t	*/
214 #define	SCNoMAX		"llo"	/* uintmax_t		*/
215 #ifdef _LP64
216 #define	SCNoPTR		"lo"	/* uintptr_t		*/
217 #else
218 #define	SCNoPTR		"o"	/* uintptr_t		*/
219 #endif
220 
221 #define	SCNu8		"hhu"	/* uint8_t		*/
222 #define	SCNu16		"hu"	/* uint16_t		*/
223 #define	SCNu32		"u"	/* uint32_t		*/
224 #define	SCNu64		"llu"	/* uint64_t		*/
225 #define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
226 #define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
227 #define	SCNuLEAST32	"u"	/* uint_least32_t	*/
228 #define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
229 #define	SCNuFAST8	"u"	/* uint_fast8_t		*/
230 #define	SCNuFAST16	"u"	/* uint_fast16_t	*/
231 #define	SCNuFAST32	"u"	/* uint_fast32_t	*/
232 #define	SCNuFAST64	"llu"	/* uint_fast64_t	*/
233 #define	SCNuMAX		"llu"	/* uintmax_t		*/
234 #ifdef _LP64
235 #define	SCNuPTR		"lu"	/* uintptr_t		*/
236 #else
237 #define	SCNuPTR		"u"	/* uintptr_t		*/
238 #endif
239 
240 #define	SCNx8		"hhx"	/* uint8_t		*/
241 #define	SCNx16		"hx"	/* uint16_t		*/
242 #define	SCNx32		"x"	/* uint32_t		*/
243 #define	SCNx64		"llx"	/* uint64_t		*/
244 #define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
245 #define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
246 #define	SCNxLEAST32	"x"	/* uint_least32_t	*/
247 #define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
248 #define	SCNxFAST8	"x"	/* uint_fast8_t		*/
249 #define	SCNxFAST16	"x"	/* uint_fast16_t	*/
250 #define	SCNxFAST32	"x"	/* uint_fast32_t	*/
251 #define	SCNxFAST64	"llx"	/* uint_fast64_t	*/
252 #define	SCNxMAX		"llx"	/* uintmax_t		*/
253 #ifdef _LP64
254 #define	SCNxPTR		"lx"	/* uintptr_t		*/
255 #else
256 #define	SCNxPTR		"x"	/* uintptr_t		*/
257 #endif
258 
259 #endif /* !__INTPTR_FMTd__ */
260 
261 #endif /* !_POWERPC_INT_FMTIO_H_ */
262