aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.c
AgeCommit message (Expand)Author
2017-06-09py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George
2017-03-29py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George
2017-03-29py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George
2017-03-17py: Reduce size of mp_code_state_t structure.Damien George
2017-03-07py: Use mp_obj_get_array where sequence may be a tuple or a list.Krzysztof Blazewicz
2017-02-16py/objfun: Convert mp_uint_t to size_t where appropriate.Damien George
2016-12-09py: Allow inline-assembler emitter to be generic.Damien George
2016-10-21py: Specialise builtin funcs to use separate type for fixed arg count.Damien George
2016-09-27py/objfun: Use if instead of switch to check return value of VM execute.Damien George
2016-09-27py/objfun: Remove unnecessary check for viper fun with 5 or more args.Damien George
2016-08-27py: Rename struct mp_code_state to mp_code_state_t.Damien George
2016-03-16py/objfun: Allow inline-asm functions to be called with 4 arguments.Damien George
2016-02-02py: Extend native type-sig to use 4 bits, so uint is separate to ptr.Damien George
2016-01-27py/inlineasm: Add ability to specify return type of asm_thumb funcs.Damien George
2016-01-11py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George
2016-01-03py: Change struct and macro for builtin fun so they can be type checked.Damien George
2015-12-17py/bc: Use size_t instead of mp_uint_t to count size of state and args.Damien George
2015-12-17py: Fix MICROPY_STACKLESS mode to compile with MICROPY_OBJ_REPR_D.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Make mp_setup_code_state take concrete pointer for func arg.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.Damien George
2015-11-13py: Add constant table to bytecode.Damien George
2015-11-13py: Put all bytecode state (arg count, etc) in bytecode.Damien George
2015-11-13py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George
2015-07-23py: Allow viper functions to take up to 4 arguments.Damien George
2015-06-08py: Fallback to stack alloca for Python-stack if heap alloc fails.Damien George
2015-05-12py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George
2015-04-25objfun: Fix to stackless mode after recent refactor.Paul Sokolovsky
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-04-09py: Adjust some spaces in code style/format, purely for consistency.Damien George
2015-04-07py: Implement full func arg passing for native emitter.Damien George
2015-04-02py: Add finer configuration of static funcs when not in stackless mode.Damien George
2015-04-03vm: If there's no heap to call function in stackless manner, call via C stack.Paul Sokolovsky
2015-04-03vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky
2015-03-20py: Allow retrieving a function's __name__.stijn
2015-02-15py: Make old_globals part of mp_code_state structure.Paul Sokolovsky
2015-02-13py: Implement sdiv/udiv for inline Thumb assembler.Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-14py: Add "default" to switches to allow better code flow analysis.Damien George
2015-01-12py: Allow to compile with -Wstrict-prototypes.Damien George
2015-01-11py: Remove unnecessary BINARY_OP_EQUAL code that just checks pointers.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-11-05py: Fix some macros defines; cleanup some includes.Damien George
2014-10-25py: Store bytecode arg names in bytecode (were in own array).Damien George
2014-10-03py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George
2014-09-29py: Fix types, uint -> mp_uint_t.Damien George
2014-09-23stmhal: Initialise stack pointer correctly.Damien George
2014-09-04py: Use variable length encoded uints in more places in bytecode.Damien George