Skip to content

Commit a75b02e

Browse files
committed
py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES.
Saves ROM (16 on stmhal, 240 on 64-bit unix) and should be quicker since there is 1 less branch.
1 parent ad4c014 commit a75b02e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

py/obj.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ typedef struct _mp_obj_base_t mp_obj_base_t;
7474
#define MP_OBJ_IS_TYPE(o, t) (MP_OBJ_IS_OBJ(o) && (((mp_obj_base_t*)(o))->type == (t))) // this does not work for checking int, str or fun; use below macros for that
7575
#define MP_OBJ_IS_INT(o) (MP_OBJ_IS_SMALL_INT(o) || MP_OBJ_IS_TYPE(o, &mp_type_int))
7676
#define MP_OBJ_IS_STR(o) (MP_OBJ_IS_QSTR(o) || MP_OBJ_IS_TYPE(o, &mp_type_str))
77-
#define MP_OBJ_IS_STR_OR_BYTES(o) (MP_OBJ_IS_STR(o) || MP_OBJ_IS_TYPE(o, &mp_type_bytes))
77+
#define MP_OBJ_IS_STR_OR_BYTES(o) (MP_OBJ_IS_QSTR(o) || (MP_OBJ_IS_OBJ(o) && ((mp_obj_base_t*)(o))->type->binary_op == mp_obj_str_binary_op))
7878
#define MP_OBJ_IS_FUN(o) (MP_OBJ_IS_OBJ(o) && (((mp_obj_base_t*)(o))->type->binary_op == mp_obj_fun_binary_op))
7979

8080
#define MP_OBJ_SMALL_INT_VALUE(o) (((mp_int_t)(o)) >> 1)

py/objint.c

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include "smallint.h"
3939
#include "mpz.h"
4040
#include "objint.h"
41+
#include "objstr.h"
4142
#include "runtime0.h"
4243
#include "runtime.h"
4344

py/objstr.c

+3
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,9 @@ STATIC const byte *find_subbytes(const byte *haystack, mp_uint_t hlen, const byt
247247
return NULL;
248248
}
249249

250+
// Note: this function is used to check if an object is a str or bytes, which
251+
// works because both those types use it as their binary_op method. Revisit
252+
// MP_OBJ_IS_STR_OR_BYTES if this fact changes.
250253
mp_obj_t mp_obj_str_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
251254
GET_STR_DATA_LEN(lhs_in, lhs_data, lhs_len);
252255
mp_obj_type_t *lhs_type = mp_obj_get_type(lhs_in);

0 commit comments

Comments
 (0)