Skip to content

Commit 627ba38

Browse files
committed
py/parsenum: Optimise when building with complex disabled.
To reduce code size when MICROPY_PY_BUILTINS_COMPLEX is disabled. Signed-off-by: Damien George <[email protected]>
1 parent 61ce260 commit 627ba38

File tree

7 files changed

+33
-14
lines changed

7 files changed

+33
-14
lines changed

extmod/modujson.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ STATIC mp_obj_t mod_ujson_load(mp_obj_t stream_obj) {
270270
S_NEXT(s);
271271
}
272272
if (flt) {
273-
next = mp_parse_num_decimal(vstr.buf, vstr.len, false, false, NULL);
273+
next = mp_parse_num_float(vstr.buf, vstr.len, false, NULL);
274274
} else {
275275
next = mp_parse_num_integer(vstr.buf, vstr.len, 10, NULL);
276276
}

py/objcomplex.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ STATIC mp_obj_t complex_make_new(const mp_obj_type_t *type_in, size_t n_args, si
8383
// a string, parse it
8484
size_t l;
8585
const char *s = mp_obj_str_get_data(args[0], &l);
86-
return mp_parse_num_decimal(s, l, true, true, NULL);
86+
return mp_parse_num_complex(s, l, NULL);
8787
} else if (mp_obj_is_type(args[0], &mp_type_complex)) {
8888
// a complex, just return it
8989
return args[0];

py/objfloat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ STATIC mp_obj_t float_make_new(const mp_obj_type_t *type_in, size_t n_args, size
137137
mp_buffer_info_t bufinfo;
138138
if (mp_get_buffer(args[0], &bufinfo, MP_BUFFER_READ)) {
139139
// a textual representation, parse it
140-
return mp_parse_num_decimal(bufinfo.buf, bufinfo.len, false, false, NULL);
140+
return mp_parse_num_float(bufinfo.buf, bufinfo.len, false, NULL);
141141
} else if (mp_obj_is_float(args[0])) {
142142
// a float, just return it
143143
return args[0];

py/parse.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ STATIC void push_result_token(parser_t *parser, uint8_t rule_id) {
591591
mp_obj_t o = mp_parse_num_integer(lex->vstr.buf, lex->vstr.len, 0, lex);
592592
pn = make_node_const_object_optimised(parser, lex->tok_line, o);
593593
} else if (lex->tok_kind == MP_TOKEN_FLOAT_OR_IMAG) {
594-
mp_obj_t o = mp_parse_num_decimal(lex->vstr.buf, lex->vstr.len, true, false, lex);
594+
mp_obj_t o = mp_parse_num_float(lex->vstr.buf, lex->vstr.len, true, lex);
595595
pn = make_node_const_object(parser, lex->tok_line, o);
596596
} else if (lex->tok_kind == MP_TOKEN_STRING) {
597597
// Don't automatically intern all strings. Doc strings (which are usually large)

py/parsenum.c

+14-9
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,12 @@ typedef enum {
178178
PARSE_DEC_IN_EXP,
179179
} parse_dec_in_t;
180180

181-
mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool force_complex, mp_lexer_t *lex) {
181+
#if MICROPY_PY_BUILTINS_COMPLEX
182+
mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool force_complex, mp_lexer_t *lex)
183+
#else
184+
mp_obj_t mp_parse_num_float(const char *str, size_t len, bool allow_imag, mp_lexer_t *lex)
185+
#endif
186+
{
182187
#if MICROPY_PY_BUILTINS_FLOAT
183188

184189
// DEC_VAL_MAX only needs to be rough and is used to retain precision while not overflowing
@@ -202,9 +207,9 @@ mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool
202207
const char *top = str + len;
203208
mp_float_t dec_val = 0;
204209
bool dec_neg = false;
205-
unsigned int real_imag_state = REAL_IMAG_STATE_START;
206210

207211
#if MICROPY_PY_BUILTINS_COMPLEX
212+
unsigned int real_imag_state = REAL_IMAG_STATE_START;
208213
mp_float_t dec_real = 0;
209214
parse_start:
210215
#endif
@@ -325,12 +330,16 @@ mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool
325330
}
326331

327332
if (allow_imag && str < top && (*str | 0x20) == 'j') {
333+
#if MICROPY_PY_BUILTINS_COMPLEX
328334
if (str == str_val_start) {
329335
// Convert "j" to "1j".
330336
dec_val = 1;
331337
}
332338
++str;
333339
real_imag_state |= REAL_IMAG_STATE_HAVE_IMAG;
340+
#else
341+
raise_exc(mp_obj_new_exception_msg(&mp_type_ValueError, MP_ERROR_TEXT("complex values not supported")), lex);
342+
#endif
334343
}
335344

336345
// negate value if needed
@@ -369,20 +378,16 @@ mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool
369378
#endif
370379

371380
// return the object
381+
372382
#if MICROPY_PY_BUILTINS_COMPLEX
373383
if (real_imag_state != REAL_IMAG_STATE_START) {
374384
return mp_obj_new_complex(dec_real, dec_val);
375385
} else if (force_complex) {
376386
return mp_obj_new_complex(dec_val, 0);
377387
}
378-
#else
379-
if (real_imag_state != REAL_IMAG_STATE_START || force_complex) {
380-
raise_exc(mp_obj_new_exception_msg(&mp_type_ValueError, MP_ERROR_TEXT("complex values not supported")), lex);
381-
}
382388
#endif
383-
else {
384-
return mp_obj_new_float(dec_val);
385-
}
389+
390+
return mp_obj_new_float(dec_val);
386391

387392
value_error:
388393
raise_exc(mp_obj_new_exception_msg(&mp_type_ValueError, MP_ERROR_TEXT("invalid syntax for number")), lex);

py/parsenum.h

+14
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,21 @@
3131
#include "py/obj.h"
3232

3333
// these functions raise a SyntaxError if lex!=NULL, else a ValueError
34+
3435
mp_obj_t mp_parse_num_integer(const char *restrict str, size_t len, int base, mp_lexer_t *lex);
36+
37+
#if MICROPY_PY_BUILTINS_COMPLEX
3538
mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool force_complex, mp_lexer_t *lex);
3639

40+
static inline mp_obj_t mp_parse_num_float(const char *str, size_t len, bool allow_imag, mp_lexer_t *lex) {
41+
return mp_parse_num_decimal(str, len, allow_imag, false, lex);
42+
}
43+
44+
static inline mp_obj_t mp_parse_num_complex(const char *str, size_t len, mp_lexer_t *lex) {
45+
return mp_parse_num_decimal(str, len, true, true, lex);
46+
}
47+
#else
48+
mp_obj_t mp_parse_num_float(const char *str, size_t len, bool allow_imag, mp_lexer_t *lex);
49+
#endif
50+
3751
#endif // MICROPY_INCLUDED_PY_PARSENUM_H

py/persistentcode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ STATIC mp_obj_t load_obj(mp_reader_t *reader) {
207207
return mp_parse_num_integer(vstr.buf, vstr.len, 10, NULL);
208208
} else {
209209
assert(obj_type == MP_PERSISTENT_OBJ_FLOAT || obj_type == MP_PERSISTENT_OBJ_COMPLEX);
210-
return mp_parse_num_decimal(vstr.buf, vstr.len, obj_type == MP_PERSISTENT_OBJ_COMPLEX, false, NULL);
210+
return mp_parse_num_float(vstr.buf, vstr.len, obj_type == MP_PERSISTENT_OBJ_COMPLEX, NULL);
211211
}
212212
}
213213
}

0 commit comments

Comments
 (0)