summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtinmp.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-20 10:30:24 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-20 10:30:24 +0000
commit91d457a27752fa125e9c6107bf51c918e021dc95 (patch)
treef903b5dbe1bea6a16944e6cf696387574f207ff7 /py/builtinmp.c
parent589233622ccbed5d7684890a181ac7e61839f630 (diff)
downloadmicropython-91d457a27752fa125e9c6107bf51c918e021dc95.tar.gz
micropython-91d457a27752fa125e9c6107bf51c918e021dc95.zip
py: Put micropython module init code in builtinmp.c.
Diffstat (limited to 'py/builtinmp.c')
-rw-r--r--py/builtinmp.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/py/builtinmp.c b/py/builtinmp.c
index bbfdab0d57..f72a80f1a8 100644
--- a/py/builtinmp.c
+++ b/py/builtinmp.c
@@ -7,7 +7,9 @@
#include "misc.h"
#include "mpconfig.h"
+#include "mpqstr.h"
#include "obj.h"
+#include "runtime.h"
#include "builtin.h"
// Various builtins specific to MicroPython runtime,
@@ -15,18 +17,29 @@
#if MICROPY_MEM_STATS
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() {
- 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() {
- 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_current_obj, mem_current);
MP_DEFINE_CONST_FUN_OBJ_0(mp_builtin_mem_peak_obj, mem_peak);
#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
+}