stm32: Enable LOAD_ATTR fast path, and map lookup caching on >M0.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
pull/7811/head
Jim Mussared 2021-09-13 10:55:23 +10:00 zatwierdzone przez Damien George
rodzic 11ef8f22fe
commit 68219a295c
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -60,6 +60,12 @@
#define MICROPY_OPT_COMPUTED_GOTO (1)
#endif
#define MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE (0)
#ifndef MICROPY_OPT_LOAD_ATTR_FAST_PATH
#define MICROPY_OPT_LOAD_ATTR_FAST_PATH (1)
#endif
#ifndef MICROPY_OPT_MAP_LOOKUP_CACHE
#define MICROPY_OPT_MAP_LOOKUP_CACHE (__CORTEX_M > 0)
#endif
#define MICROPY_OPT_MPZ_BITWISE (1)
#define MICROPY_OPT_MATH_FACTORIAL (1)