aboutsummaryrefslogtreecommitdiff
path: root/py/runtime.h
AgeCommit message (Expand)Author
2018-09-26py: Fix msvc C++ compiler warnings with MP_OBJ_FUN_MAKE_SIG macro.stijn
2018-09-14py: Optimise call to mp_arg_check_num by compressing fun signature.Damien George
2018-09-13py: Fix native functions so they run with their correct globals context.Damien George
2018-05-10py/runtime: Add mp_load_method_protected helper which catches exceptionsDamien George
2017-12-11py: Introduce a Python stack for scoped allocation.Damien George
2017-12-11py/runtime: Move mp_exc_recursion_depth to runtime and rename to raise.Damien George
2017-12-05py: mp_call_function_*_protected(): Pass-thru return value if possible.Paul Sokolovsky
2017-10-21py/objtype: Fit qstrs for special methods in byte type.Paul Sokolovsky
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-10-04py/objtype: Change type of enum-to-qstr table to uint16_t to save space.Damien George
2017-09-13py/runtime.h: Change empty mp_warning macro so var-args are non empty.Damien George
2017-08-29all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George
2017-08-13all: Raise exceptions via mp_raise_XXXJavier Candeira
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-03-24py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).Damien George
2017-03-20py: Add micropython.schedule() function and associated runtime code.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-16py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George
2016-11-22py/objtype: Implement __call__ handling for an instance w/o heap alloc.Paul Sokolovsky
2016-10-07py: Add mp_raise_OSError(errno) helper function.Damien George
2016-09-23py: Shrink mp_arg_t struct by using reduced-size integer members.Damien George
2016-08-14py/runtime.h: Move comment about mp_not_implemented to correct place.Damien George
2016-08-12py/runtime.h: Define mp_check_self(pred) helper macro.Paul Sokolovsky
2016-08-12py/runtime: Factor out exception raising helpers.Paul Sokolovsky
2016-04-25py: Move call_function_*_protected() functions to py/ for reuse.Paul Sokolovsky
2016-03-14py/argcheck: Use size_t instead of mp_uint_t to count number of args.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25py: Remove mp_load_const_str and replace uses with inlined version.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-02py: Add finer configuration of static funcs when not in stackless mode.Damien George
2015-04-03vm: Support strict stackless mode, with proper exception reporting.Paul Sokolovsky
2015-04-03runtime: Split mp_call_prepare_args_n_kw_var() from mp_call_method_n_kw_var().Paul Sokolovsky
2015-03-21py: Combine duplicated code that converts members from a lookup.Damien George
2015-02-07py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t.Damien George
2015-01-27py: Specify unary/binary op name in TypeError error message.Damien George
2015-01-21py: Implement proper re-raising in native codegen's finally handler.Damien George
2015-01-20py, unix, stmhal: Allow to compile with -Wshadow.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky
2015-01-01py: Make terse_arg_mismatch a global function and use it elsewhere.Damien George
2014-12-29py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper.Damien George
2014-11-06py: Remove obsolute function declaration.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-16py: Viper can call functions with native types, and raise exceptions.Damien George