py: Put micropython module init code in builtinmp.c.

This commit is contained in:
Damien George 2014-01-20 10:30:24 +00:00
parent 589233622c
commit 91d457a277
3 changed files with 18 additions and 13 deletions

View File

@ -27,6 +27,4 @@ MP_DECLARE_CONST_FUN_OBJ(mp_builtin_sorted_obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_sum_obj); MP_DECLARE_CONST_FUN_OBJ(mp_builtin_sum_obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_str_obj); MP_DECLARE_CONST_FUN_OBJ(mp_builtin_str_obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_total_obj); void mp_module_micropython_init(void);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_current_obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_peak_obj);

View File

@ -7,7 +7,9 @@
#include "misc.h" #include "misc.h"
#include "mpconfig.h" #include "mpconfig.h"
#include "mpqstr.h"
#include "obj.h" #include "obj.h"
#include "runtime.h"
#include "builtin.h" #include "builtin.h"
// Various builtins specific to MicroPython runtime, // Various builtins specific to MicroPython runtime,
@ -15,18 +17,29 @@
#if MICROPY_MEM_STATS #if MICROPY_MEM_STATS
static mp_obj_t mem_total() { static mp_obj_t mem_total() {
return MP_OBJ_NEW_SMALL_INT(m_get_total_bytes_allocated()); return MP_OBJ_NEW_SMALL_INT((machine_int_t)m_get_total_bytes_allocated());
} }
static mp_obj_t mem_current() { static mp_obj_t mem_current() {
return MP_OBJ_NEW_SMALL_INT(m_get_current_bytes_allocated()); return MP_OBJ_NEW_SMALL_INT((machine_int_t)m_get_current_bytes_allocated());
} }
static mp_obj_t mem_peak() { static mp_obj_t mem_peak() {
return MP_OBJ_NEW_SMALL_INT(m_get_peak_bytes_allocated()); return MP_OBJ_NEW_SMALL_INT((machine_int_t)m_get_peak_bytes_allocated());
} }
MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_total_obj, mem_total); MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_total_obj, mem_total);
MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_current_obj, mem_current); MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_current_obj, mem_current);
MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_peak_obj, mem_peak); MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_peak_obj, mem_peak);
#endif #endif
void mp_module_micropython_init(void) {
mp_obj_t m_mp = mp_obj_new_module(MP_QSTR_micropython);
rt_store_name(MP_QSTR_micropython, m_mp);
#if MICROPY_MEM_STATS
rt_store_attr(m_mp, qstr_from_str_static("mem_total"), (mp_obj_t)&mp_builtin_mem_total_obj);
rt_store_attr(m_mp, qstr_from_str_static("mem_current"), (mp_obj_t)&mp_builtin_mem_current_obj);
rt_store_attr(m_mp, qstr_from_str_static("mem_peak"), (mp_obj_t)&mp_builtin_mem_peak_obj);
#endif
}

View File

@ -157,13 +157,7 @@ void rt_init(void) {
mp_obj_new_module(qstr_from_str_static("sys")); mp_obj_new_module(qstr_from_str_static("sys"));
#endif #endif
mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython")); mp_module_micropython_init();
rt_store_name(qstr_from_str_static("micropython"), m_mp);
#if MICROPY_MEM_STATS
rt_store_attr(m_mp, qstr_from_str_static("mem_total"), (mp_obj_t)&mp_builtin_mem_total_obj);
rt_store_attr(m_mp, qstr_from_str_static("mem_current"), (mp_obj_t)&mp_builtin_mem_current_obj);
rt_store_attr(m_mp, qstr_from_str_static("mem_peak"), (mp_obj_t)&mp_builtin_mem_peak_obj);
#endif
next_unique_code_id = 1; // 0 indicates "no code" next_unique_code_id = 1; // 0 indicates "no code"
unique_codes_alloc = 0; unique_codes_alloc = 0;