diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-20 02:01:50 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-20 02:01:50 -0800 |
commit | 589233622ccbed5d7684890a181ac7e61839f630 (patch) | |
tree | 0965140285b1c79bb6ae3481d293fb2096f24e8b /py | |
parent | 164774c1c1195a16757652730ccc1cac74353f42 (diff) | |
parent | 440cc3f028c7eff54f6f713182c55c5e8b205bab (diff) | |
download | micropython-589233622ccbed5d7684890a181ac7e61839f630.tar.gz micropython-589233622ccbed5d7684890a181ac7e61839f630.zip |
Merge pull request #198 from pfalcon/expose-memstat
Expose memory stats functions via "micropython" module.
Diffstat (limited to 'py')
-rw-r--r-- | py/builtin.h | 4 | ||||
-rw-r--r-- | py/builtinmp.c | 32 | ||||
-rw-r--r-- | py/py.mk | 1 | ||||
-rw-r--r-- | py/runtime.c | 13 |
4 files changed, 45 insertions, 5 deletions
diff --git a/py/builtin.h b/py/builtin.h index f4038b47b4..ca5c8a52d8 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -26,3 +26,7 @@ MP_DECLARE_CONST_FUN_OBJ(mp_builtin_repr_obj); 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_str_obj); + +MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_total_obj); +MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_current_obj); +MP_DECLARE_CONST_FUN_OBJ(mp_builtin_mem_peak_obj); diff --git a/py/builtinmp.c b/py/builtinmp.c new file mode 100644 index 0000000000..bbfdab0d57 --- /dev/null +++ b/py/builtinmp.c @@ -0,0 +1,32 @@ +#include <stdint.h> +#include <stdlib.h> +#include <stdio.h> +#include <stdarg.h> +#include <string.h> +#include <assert.h> + +#include "misc.h" +#include "mpconfig.h" +#include "obj.h" +#include "builtin.h" + +// Various builtins specific to MicroPython runtime, +// living in micropython module + +#if MICROPY_MEM_STATS +static mp_obj_t mem_total() { + return MP_OBJ_NEW_SMALL_INT(m_get_total_bytes_allocated()); +} + +static mp_obj_t mem_current() { + return MP_OBJ_NEW_SMALL_INT(m_get_current_bytes_allocated()); +} + +static mp_obj_t mem_peak() { + return MP_OBJ_NEW_SMALL_INT(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 @@ -101,6 +101,7 @@ PY_O_BASENAME = \ builtin.o \ builtinimport.o \ builtineval.o \ + builtinmp.o \ vm.o \ showbc.o \ repl.o \ diff --git a/py/runtime.c b/py/runtime.c index 830bcc6aa8..09e4237aff 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -153,15 +153,18 @@ void rt_init(void) { mp_map_add_qstr(&map_builtins, MP_QSTR_bytearray, (mp_obj_t)&mp_builtin_bytearray_obj); #if MICROPY_CPYTHON_COMPAT - // Add (empty) micropython module, so it was possible to "import micropython", - // which can be a placeholder module on CPython. - mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython")); - rt_store_name(qstr_from_str_static("micropython"), m_mp); - // Precreate sys module, so "import sys" didn't throw exceptions. mp_obj_new_module(qstr_from_str_static("sys")); #endif + mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython")); + 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" unique_codes_alloc = 0; unique_codes = NULL; |