Branch data Line data Source code
1 : : /*
2 : : * This file is part of the MicroPython project, http://micropython.org/
3 : : *
4 : : * The MIT License (MIT)
5 : : *
6 : : * Copyright (c) 2013-2015 Damien P. George
7 : : *
8 : : * Permission is hereby granted, free of charge, to any person obtaining a copy
9 : : * of this software and associated documentation files (the "Software"), to deal
10 : : * in the Software without restriction, including without limitation the rights
11 : : * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 : : * copies of the Software, and to permit persons to whom the Software is
13 : : * furnished to do so, subject to the following conditions:
14 : : *
15 : : * The above copyright notice and this permission notice shall be included in
16 : : * all copies or substantial portions of the Software.
17 : : *
18 : : * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 : : * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 : : * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 : : * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 : : * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 : : * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 : : * THE SOFTWARE.
25 : : */
26 : :
27 : : #include <assert.h>
28 : : #include <stdarg.h>
29 : : #include <stdint.h>
30 : : #include <stdio.h>
31 : : #include <string.h>
32 : :
33 : : #include "py/mphal.h"
34 : : #include "py/mpprint.h"
35 : : #include "py/obj.h"
36 : : #include "py/objint.h"
37 : : #include "py/runtime.h"
38 : :
39 : : #if MICROPY_PY_BUILTINS_FLOAT
40 : : #include "py/formatfloat.h"
41 : : #endif
42 : :
43 : : static const char pad_spaces[] = " ";
44 : : static const char pad_zeroes[] = "0000000000000000";
45 : :
46 : 20582 : static void plat_print_strn(void *env, const char *str, size_t len) {
47 : 20582 : (void)env;
48 : 20582 : MP_PLAT_PRINT_STRN(str, len);
49 : 20582 : }
50 : :
51 : : const mp_print_t mp_plat_print = {NULL, plat_print_strn};
52 : :
53 : 301088 : int mp_print_str(const mp_print_t *print, const char *str) {
54 : 301088 : size_t len = strlen(str);
55 [ + + ]: 301088 : if (len) {
56 : 301067 : print->print_strn(print->data, str, len);
57 : : }
58 : 301088 : return len;
59 : : }
60 : :
61 : 238193 : int mp_print_strn(const mp_print_t *print, const char *str, size_t len, int flags, char fill, int width) {
62 : 238193 : int left_pad = 0;
63 : 238193 : int right_pad = 0;
64 : 238193 : int pad = width - len;
65 : 238193 : int pad_size;
66 : 238193 : int total_chars_printed = 0;
67 : 238193 : const char *pad_chars;
68 : :
69 [ + + + ]: 238193 : if (!fill || fill == ' ') {
70 : : pad_chars = pad_spaces;
71 : : pad_size = sizeof(pad_spaces) - 1;
72 : : } else if (fill == '0') {
73 : : pad_chars = pad_zeroes;
74 : : pad_size = sizeof(pad_zeroes) - 1;
75 : : } else {
76 : : // Other pad characters are fairly unusual, so we'll take the hit
77 : : // and output them 1 at a time.
78 : 238193 : pad_chars = &fill;
79 : 238193 : pad_size = 1;
80 : : }
81 : :
82 [ + + ]: 238193 : if (flags & PF_FLAG_CENTER_ADJUST) {
83 : 828 : left_pad = pad / 2;
84 : 828 : right_pad = pad - left_pad;
85 [ + + ]: 237365 : } else if (flags & PF_FLAG_LEFT_ADJUST) {
86 : : right_pad = pad;
87 : : } else {
88 : : left_pad = pad;
89 : : }
90 : :
91 [ + + ]: 203349 : if (left_pad > 0) {
92 : 90900 : total_chars_printed += left_pad;
93 [ + + ]: 90900 : while (left_pad > 0) {
94 : 45699 : int p = left_pad;
95 [ + + ]: 45699 : if (p > pad_size) {
96 : 500 : p = pad_size;
97 : : }
98 : 45699 : print->print_strn(print->data, pad_chars, p);
99 : 45700 : left_pad -= p;
100 : : }
101 : : }
102 [ + + ]: 238194 : if (len) {
103 : 237517 : print->print_strn(print->data, str, len);
104 : 237517 : total_chars_printed += len;
105 : : }
106 [ + + ]: 238194 : if (right_pad > 0) {
107 : 2916 : total_chars_printed += right_pad;
108 [ + + ]: 6316 : while (right_pad > 0) {
109 : 3400 : int p = right_pad;
110 [ + + ]: 3400 : if (p > pad_size) {
111 : 484 : p = pad_size;
112 : : }
113 : 3400 : print->print_strn(print->data, pad_chars, p);
114 : 3400 : right_pad -= p;
115 : : }
116 : : }
117 : 238194 : return total_chars_printed;
118 : : }
119 : :
120 : : // 32-bits is 10 digits, add 3 for commas, 1 for sign, 1 for terminating null
121 : : // We can use 16 characters for 32-bit and 32 characters for 64-bit
122 : : #define INT_BUF_SIZE (sizeof(mp_int_t) * 4)
123 : :
124 : : // Our mp_vprintf function below does not support the '#' format modifier to
125 : : // print the prefix of a non-base-10 number, so we don't need code for this.
126 : : #define SUPPORT_INT_BASE_PREFIX (0)
127 : :
128 : : // This function is used exclusively by mp_vprintf to format ints.
129 : : // It needs to be a separate function to mp_print_mp_int, since converting to a mp_int looses the MSB.
130 : 17720 : static int mp_print_int(const mp_print_t *print, mp_uint_t x, int sgn, int base, int base_char, int flags, char fill, int width) {
131 : 17720 : char sign = 0;
132 [ + + ]: 17720 : if (sgn) {
133 [ + + ]: 1475 : if ((mp_int_t)x < 0) {
134 : 40 : sign = '-';
135 : 40 : x = -x;
136 [ + + ]: 1435 : } else if (flags & PF_FLAG_SHOW_SIGN) {
137 : 2 : sign = '+';
138 [ + + ]: 1433 : } else if (flags & PF_FLAG_SPACE_SIGN) {
139 : 46 : sign = ' ';
140 : : }
141 : : }
142 : :
143 : 17720 : char buf[INT_BUF_SIZE];
144 : 17720 : char *b = buf + INT_BUF_SIZE;
145 : :
146 [ + + ]: 17720 : if (x == 0) {
147 : 5390 : *(--b) = '0';
148 : : } else {
149 : 24404 : do {
150 : 24404 : int c = x % base;
151 : 24404 : x /= base;
152 [ + + ]: 24404 : if (c >= 10) {
153 : 7057 : c += base_char - 10;
154 : : } else {
155 : 17347 : c += '0';
156 : : }
157 : 24404 : *(--b) = c;
158 [ + - + + ]: 24404 : } while (b > buf && x != 0);
159 : : }
160 : :
161 : : #if SUPPORT_INT_BASE_PREFIX
162 : : char prefix_char = '\0';
163 : :
164 : : if (flags & PF_FLAG_SHOW_PREFIX) {
165 : : if (base == 2) {
166 : : prefix_char = base_char + 'b' - 'a';
167 : : } else if (base == 8) {
168 : : prefix_char = base_char + 'o' - 'a';
169 : : } else if (base == 16) {
170 : : prefix_char = base_char + 'x' - 'a';
171 : : }
172 : : }
173 : : #endif
174 : :
175 : 17720 : int len = 0;
176 [ + + ]: 17720 : if (flags & PF_FLAG_PAD_AFTER_SIGN) {
177 [ + + ]: 14374 : if (sign) {
178 : 2 : len += mp_print_strn(print, &sign, 1, flags, fill, 1);
179 : 2 : width--;
180 : : }
181 : : #if SUPPORT_INT_BASE_PREFIX
182 : : if (prefix_char) {
183 : : len += mp_print_strn(print, "0", 1, flags, fill, 1);
184 : : len += mp_print_strn(print, &prefix_char, 1, flags, fill, 1);
185 : : width -= 2;
186 : : }
187 : : #endif
188 : : } else {
189 : : #if SUPPORT_INT_BASE_PREFIX
190 : : if (prefix_char && b > &buf[1]) {
191 : : *(--b) = prefix_char;
192 : : *(--b) = '0';
193 : : }
194 : : #endif
195 [ + + + - ]: 3346 : if (sign && b > buf) {
196 : 86 : *(--b) = sign;
197 : : }
198 : : }
199 : :
200 : 17720 : len += mp_print_strn(print, b, buf + INT_BUF_SIZE - b, flags, fill, width);
201 : 17720 : return len;
202 : : }
203 : :
204 : 78942 : int mp_print_mp_int(const mp_print_t *print, mp_obj_t x, int base, int base_char, int flags, char fill, int width, int prec) {
205 : : // These are the only values for "base" that are required to be supported by this
206 : : // function, since Python only allows the user to format integers in these bases.
207 : : // If needed this function could be generalised to handle other values.
208 [ - + ]: 78942 : assert(base == 2 || base == 8 || base == 10 || base == 16);
209 : :
210 [ + + + + : 78942 : if (!mp_obj_is_int(x)) {
+ + ]
211 : : // This will convert booleans to int, or raise an error for
212 : : // non-integer types.
213 : 32 : x = MP_OBJ_NEW_SMALL_INT(mp_obj_get_int(x));
214 : : }
215 : :
216 [ + + + + ]: 78942 : if ((flags & (PF_FLAG_LEFT_ADJUST | PF_FLAG_CENTER_ADJUST)) == 0 && fill == '0') {
217 [ + + ]: 50920 : if (prec > width) {
218 : 4 : width = prec;
219 : : }
220 : : prec = 0;
221 : : }
222 : 78942 : char prefix_buf[4];
223 : 78942 : char *prefix = prefix_buf;
224 : :
225 [ + + ]: 78942 : if (mp_obj_int_sign(x) >= 0) {
226 [ + + ]: 78102 : if (flags & PF_FLAG_SHOW_SIGN) {
227 : 88 : *prefix++ = '+';
228 [ + + ]: 78014 : } else if (flags & PF_FLAG_SPACE_SIGN) {
229 : 12 : *prefix++ = ' ';
230 : : }
231 : : }
232 : :
233 [ + + ]: 78942 : if (flags & PF_FLAG_SHOW_PREFIX) {
234 [ + + ]: 5428 : if (base == 2) {
235 : 5152 : *prefix++ = '0';
236 : 5152 : *prefix++ = base_char + 'b' - 'a';
237 [ + + ]: 276 : } else if (base == 8) {
238 : 44 : *prefix++ = '0';
239 [ + - ]: 44 : if (flags & PF_FLAG_SHOW_OCTAL_LETTER) {
240 : 44 : *prefix++ = base_char + 'o' - 'a';
241 : : }
242 [ + + ]: 232 : } else if (base == 16) {
243 : 224 : *prefix++ = '0';
244 : 224 : *prefix++ = base_char + 'x' - 'a';
245 : : }
246 : : }
247 : 78942 : *prefix = '\0';
248 : 78942 : int prefix_len = prefix - prefix_buf;
249 : 78942 : prefix = prefix_buf;
250 : :
251 : 78942 : char comma = '\0';
252 [ + + ]: 78942 : if (flags & PF_FLAG_SHOW_COMMA) {
253 : 32 : comma = ',';
254 : : }
255 : :
256 : : // The size of this buffer is rather arbitrary. If it's not large
257 : : // enough, a dynamic one will be allocated.
258 : 78942 : char stack_buf[sizeof(mp_int_t) * 4];
259 : 78942 : char *buf = stack_buf;
260 : 78942 : size_t buf_size = sizeof(stack_buf);
261 : 78942 : size_t fmt_size = 0;
262 : 78942 : char *str;
263 : :
264 [ + + ]: 78942 : if (prec > 1) {
265 : 60 : flags |= PF_FLAG_PAD_AFTER_SIGN;
266 : : }
267 : 78942 : char sign = '\0';
268 [ + + ]: 78942 : if (flags & PF_FLAG_PAD_AFTER_SIGN) {
269 : : // We add the pad in this function, so since the pad goes after
270 : : // the sign & prefix, we format without a prefix
271 : 50984 : str = mp_obj_int_formatted(&buf, &buf_size, &fmt_size,
272 : : x, base, NULL, base_char, comma);
273 [ + + ]: 50984 : if (*str == '-') {
274 : 48 : sign = *str++;
275 : 48 : fmt_size--;
276 : : }
277 : : } else {
278 : 27958 : str = mp_obj_int_formatted(&buf, &buf_size, &fmt_size,
279 : : x, base, prefix, base_char, comma);
280 : : }
281 : :
282 : 78940 : int spaces_before = 0;
283 : 78940 : int spaces_after = 0;
284 : :
285 [ + + ]: 78940 : if (prec > 1) {
286 : : // If prec was specified, then prec specifies the width to zero-pad the
287 : : // the number to. This zero-padded number then gets left or right
288 : : // aligned in width characters.
289 : :
290 : 60 : int prec_width = fmt_size; // The digits
291 [ + + ]: 60 : if (prec_width < prec) {
292 : 56 : prec_width = prec;
293 : : }
294 [ + - ]: 60 : if (flags & PF_FLAG_PAD_AFTER_SIGN) {
295 [ + + ]: 60 : if (sign) {
296 : 24 : prec_width++;
297 : : }
298 : 60 : prec_width += prefix_len;
299 : : }
300 [ + + ]: 60 : if (prec_width < width) {
301 [ + + ]: 48 : if (flags & PF_FLAG_LEFT_ADJUST) {
302 : 24 : spaces_after = width - prec_width;
303 : : } else {
304 : 24 : spaces_before = width - prec_width;
305 : : }
306 : : }
307 : 60 : fill = '0';
308 : 60 : flags &= ~PF_FLAG_LEFT_ADJUST;
309 : : }
310 : :
311 : 78940 : int len = 0;
312 [ + + ]: 78940 : if (spaces_before) {
313 : 24 : len += mp_print_strn(print, "", 0, 0, ' ', spaces_before);
314 : : }
315 [ + + ]: 78940 : if (flags & PF_FLAG_PAD_AFTER_SIGN) {
316 : : // pad after sign implies pad after prefix as well.
317 [ + + ]: 50984 : if (sign) {
318 : 48 : len += mp_print_strn(print, &sign, 1, 0, 0, 1);
319 : 48 : width--;
320 : : }
321 [ + + ]: 50984 : if (prefix_len) {
322 : 40 : len += mp_print_strn(print, prefix, prefix_len, 0, 0, 1);
323 : 40 : width -= prefix_len;
324 : : }
325 : : }
326 [ + + ]: 78940 : if (prec > 1) {
327 : 60 : width = prec;
328 : : }
329 : :
330 : 78940 : len += mp_print_strn(print, str, fmt_size, flags, fill, width);
331 : :
332 [ + + ]: 78941 : if (spaces_after) {
333 : 24 : len += mp_print_strn(print, "", 0, 0, ' ', spaces_after);
334 : : }
335 : :
336 [ + + ]: 78941 : if (buf != stack_buf) {
337 : 5224 : m_del(char, buf, buf_size);
338 : : }
339 : 78941 : return len;
340 : : }
341 : :
342 : : #if MICROPY_PY_BUILTINS_FLOAT
343 : 41622 : int mp_print_float(const mp_print_t *print, mp_float_t f, char fmt, int flags, char fill, int width, int prec) {
344 : 41622 : char buf[32];
345 : 41622 : char sign = '\0';
346 : 41622 : int chrs = 0;
347 : :
348 [ + + ]: 41622 : if (flags & PF_FLAG_SHOW_SIGN) {
349 : : sign = '+';
350 : : } else
351 [ + + ]: 41614 : if (flags & PF_FLAG_SPACE_SIGN) {
352 : 8 : sign = ' ';
353 : : }
354 : :
355 : 41622 : int len = mp_format_float(f, buf, sizeof(buf), fmt, prec, sign);
356 : :
357 : 41622 : char *s = buf;
358 : :
359 [ + + + - ]: 41622 : if ((flags & PF_FLAG_ADD_PERCENT) && (size_t)(len + 1) < sizeof(buf)) {
360 : 24 : buf[len++] = '%';
361 : 24 : buf[len] = '\0';
362 : : }
363 : :
364 : : // buf[0] < '0' returns true if the first character is space, + or -
365 [ + + + + ]: 41622 : if ((flags & PF_FLAG_PAD_AFTER_SIGN) && buf[0] < '0') {
366 : : // We have a sign character
367 : 16 : s++;
368 : 16 : chrs += mp_print_strn(print, &buf[0], 1, 0, 0, 1);
369 : 16 : width--;
370 : 16 : len--;
371 : : }
372 : :
373 : 41622 : chrs += mp_print_strn(print, s, len, flags, fill, width);
374 : :
375 : 41622 : return chrs;
376 : : }
377 : : #endif
378 : :
379 : 75849 : int mp_printf(const mp_print_t *print, const char *fmt, ...) {
380 : 75849 : va_list ap;
381 : 75849 : va_start(ap, fmt);
382 : 75849 : int ret = mp_vprintf(print, fmt, ap);
383 : 75849 : va_end(ap);
384 : 75849 : return ret;
385 : : }
386 : :
387 : 77255 : int mp_vprintf(const mp_print_t *print, const char *fmt, va_list args) {
388 : 77255 : int chrs = 0;
389 : 231385 : for (;;) {
390 : : {
391 : 154320 : const char *f = fmt;
392 [ + + ]: 269513 : while (*f != '\0' && *f != '%') {
393 : 115193 : ++f; // XXX UTF8 advance char
394 : : }
395 [ + + ]: 154320 : if (f > fmt) {
396 : 27481 : print->print_strn(print->data, fmt, f - fmt);
397 : 27481 : chrs += f - fmt;
398 : 27481 : fmt = f;
399 : : }
400 : : }
401 : :
402 [ + + ]: 154320 : if (*fmt == '\0') {
403 : : break;
404 : : }
405 : :
406 : : // move past % character
407 : 77067 : ++fmt;
408 : :
409 : : // parse flags, if they exist
410 : 77067 : int flags = 0;
411 : 77067 : char fill = ' ';
412 [ + + ]: 91489 : while (*fmt != '\0') {
413 [ - + + - : 91487 : if (*fmt == '-') {
+ + ]
414 : 0 : flags |= PF_FLAG_LEFT_ADJUST;
415 : : } else if (*fmt == '+') {
416 : 2 : flags |= PF_FLAG_SHOW_SIGN;
417 : : } else if (*fmt == ' ') {
418 : 46 : flags |= PF_FLAG_SPACE_SIGN;
419 : : } else if (*fmt == '!') {
420 : 0 : flags |= PF_FLAG_NO_TRAILZ;
421 : : } else if (*fmt == '0') {
422 : 14374 : flags |= PF_FLAG_PAD_AFTER_SIGN;
423 : 14374 : fill = '0';
424 : : } else {
425 : : break;
426 : : }
427 : 14422 : ++fmt;
428 : : }
429 : :
430 : : // parse width, if it exists
431 : : int width = 0;
432 [ + + ]: 91517 : for (; '0' <= *fmt && *fmt <= '9'; ++fmt) {
433 : 14450 : width = width * 10 + *fmt - '0';
434 : : }
435 : :
436 : : // parse precision, if it exists
437 : 77067 : int prec = -1;
438 [ + + ]: 77067 : if (*fmt == '.') {
439 : 36 : ++fmt;
440 [ + + ]: 36 : if (*fmt == '*') {
441 : 22 : ++fmt;
442 : 22 : prec = va_arg(args, int);
443 : : } else {
444 : : prec = 0;
445 [ + + ]: 28 : for (; '0' <= *fmt && *fmt <= '9'; ++fmt) {
446 : 14 : prec = prec * 10 + *fmt - '0';
447 : : }
448 : : }
449 [ + + ]: 36 : if (prec < 0) {
450 : 2 : prec = 0;
451 : : }
452 : : }
453 : :
454 : : // parse long specifiers (only for LP64 model where they make a difference)
455 : : #ifndef __LP64__
456 : : const
457 : : #endif
458 : 77067 : bool long_arg = false;
459 [ + + ]: 77067 : if (*fmt == 'l') {
460 : 1800 : ++fmt;
461 : : #ifdef __LP64__
462 : 1800 : long_arg = true;
463 : : #endif
464 : : }
465 : :
466 [ + + ]: 77067 : if (*fmt == '\0') {
467 : : break;
468 : : }
469 : :
470 [ + + + + : 77065 : switch (*fmt) {
+ + + +
+ ]
471 : 4 : case 'b':
472 [ + + ]: 4 : if (va_arg(args, int)) {
473 : 2 : chrs += mp_print_strn(print, "true", 4, flags, fill, width);
474 : : } else {
475 : 2 : chrs += mp_print_strn(print, "false", 5, flags, fill, width);
476 : : }
477 : : break;
478 : 55202 : case 'c': {
479 : 55202 : char str = va_arg(args, int);
480 : 55202 : chrs += mp_print_strn(print, &str, 1, flags, fill, width);
481 : 55202 : break;
482 : : }
483 : 2077 : case 'q': {
484 : 2077 : qstr qst = va_arg(args, qstr);
485 : 2077 : size_t len;
486 : 2077 : const char *str = (const char *)qstr_data(qst, &len);
487 [ + + + + ]: 2077 : if (prec >= 0 && (size_t)prec < len) {
488 : 2 : len = prec;
489 : : }
490 : 2077 : chrs += mp_print_strn(print, str, len, flags, fill, width);
491 : 2077 : break;
492 : : }
493 : 2056 : case 's': {
494 : 2056 : const char *str = va_arg(args, const char *);
495 : : #ifndef NDEBUG
496 : : // With debugging enabled, catch printing of null string pointers
497 [ + + ]: 2056 : if (prec != 0 && str == NULL) {
498 : 2 : chrs += mp_print_strn(print, "(null)", 6, flags, fill, width);
499 : 2 : break;
500 : : }
501 : : #endif
502 : 2054 : size_t len = strlen(str);
503 [ + + + + ]: 2054 : if (prec >= 0 && (size_t)prec < len) {
504 : 12 : len = prec;
505 : : }
506 : 2054 : chrs += mp_print_strn(print, str, len, flags, fill, width);
507 : 2054 : break;
508 : : }
509 : 1475 : case 'd': {
510 : 1475 : mp_int_t val;
511 [ + + ]: 1475 : if (long_arg) {
512 : 684 : val = va_arg(args, long int);
513 : : } else {
514 : 791 : val = va_arg(args, int);
515 : : }
516 : 1475 : chrs += mp_print_int(print, val, 1, 10, 'a', flags, fill, width);
517 : 1475 : break;
518 : : }
519 : 16012 : case 'u':
520 : : case 'x':
521 : : case 'X': {
522 : 16012 : int base = 16 - ((*fmt + 1) & 6); // maps char u/x/X to base 10/16/16
523 : 16012 : char fmt_c = (*fmt & 0xf0) - 'P' + 'A'; // maps char u/x/X to char a/a/A
524 : 16012 : mp_uint_t val;
525 [ + + ]: 16012 : if (long_arg) {
526 : 1114 : val = va_arg(args, unsigned long int);
527 : : } else {
528 : 14898 : val = va_arg(args, unsigned int);
529 : : }
530 : 16012 : chrs += mp_print_int(print, val, 0, base, fmt_c, flags, fill, width);
531 : 16012 : break;
532 : : }
533 : 233 : case 'p':
534 : : case 'P': // don't bother to handle upcase for 'P'
535 : : // Use unsigned long int to work on both ILP32 and LP64 systems
536 : 233 : chrs += mp_print_int(print, va_arg(args, unsigned long int), 0, 16, 'a', flags, fill, width);
537 : 233 : break;
538 : : #if MICROPY_PY_BUILTINS_FLOAT
539 : 4 : case 'e':
540 : : case 'E':
541 : : case 'f':
542 : : case 'F':
543 : : case 'g':
544 : : case 'G': {
545 : : #if ((MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT) || (MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_DOUBLE))
546 : 4 : mp_float_t f = (mp_float_t)va_arg(args, double);
547 : 4 : chrs += mp_print_float(print, f, *fmt, flags, fill, width, prec);
548 : : #else
549 : : #error Unknown MICROPY FLOAT IMPL
550 : : #endif
551 : 4 : break;
552 : : }
553 : : #endif
554 : : // Because 'l' is eaten above, another 'l' means %ll. We need to support
555 : : // this length specifier for OBJ_REPR_D (64-bit NaN boxing).
556 : : // TODO Either enable this unconditionally, or provide a specific config var.
557 : : #if (MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_D) || defined(_WIN64)
558 : : case 'l': {
559 : : unsigned long long int arg_value = va_arg(args, unsigned long long int);
560 : : ++fmt;
561 : : assert(*fmt == 'u' || *fmt == 'd' || !"unsupported fmt char");
562 : : chrs += mp_print_int(print, arg_value, *fmt == 'd', 10, 'a', flags, fill, width);
563 : : break;
564 : : }
565 : : #endif
566 : 2 : default:
567 : : // if it's not %% then it's an unsupported format character
568 [ - + ]: 2 : assert(*fmt == '%' || !"unsupported fmt char");
569 : 2 : print->print_strn(print->data, fmt, 1);
570 : 2 : chrs += 1;
571 : 2 : break;
572 : : }
573 : 77065 : ++fmt;
574 : : }
575 : 77255 : return chrs;
576 : : }
|