index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objfun.c
Age
Commit message (
Expand
)
Author
2016-01-27
py/inlineasm: Add ability to specify return type of asm_thumb funcs.
Damien George
2016-01-11
py: Change type of .make_new and .call args: mp_uint_t becomes size_t.
Damien George
2016-01-03
py: Change struct and macro for builtin fun so they can be type checked.
Damien George
2015-12-17
py/bc: Use size_t instead of mp_uint_t to count size of state and args.
Damien George
2015-12-17
py: Fix MICROPY_STACKLESS mode to compile with MICROPY_OBJ_REPR_D.
Damien George
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-29
py: Make mp_setup_code_state take concrete pointer for func arg.
Damien George
2015-11-13
py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.
Damien George
2015-11-13
py: Add constant table to bytecode.
Damien George
2015-11-13
py: Put all bytecode state (arg count, etc) in bytecode.
Damien George
2015-11-13
py: Reorganise bytecode layout so it's more structured, easier to edit.
Damien George
2015-07-23
py: Allow viper functions to take up to 4 arguments.
Damien George
2015-06-08
py: Fallback to stack alloca for Python-stack if heap alloc fails.
Damien George
2015-05-12
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
Damien George
2015-04-25
objfun: Fix to stackless mode after recent refactor.
Paul Sokolovsky
2015-04-16
py: Add %q format support to mp_[v]printf, and use it.
Damien George
2015-04-16
py: Overhaul and simplify printf/pfenv mechanism.
Damien George
2015-04-11
py: Combine load_attr and store_attr type methods into one (attr).
Damien George
2015-04-09
py: Adjust some spaces in code style/format, purely for consistency.
Damien George
2015-04-07
py: Implement full func arg passing for native emitter.
Damien George
2015-04-02
py: Add finer configuration of static funcs when not in stackless mode.
Damien George
2015-04-03
vm: If there's no heap to call function in stackless manner, call via C stack.
Paul Sokolovsky
2015-04-03
vm: Initial support for calling bytecode functions w/o C stack ("stackless").
Paul Sokolovsky
2015-03-20
py: Allow retrieving a function's __name__.
stijn
2015-02-15
py: Make old_globals part of mp_code_state structure.
Paul Sokolovsky
2015-02-13
py: Implement sdiv/udiv for inline Thumb assembler.
Damien George
2015-01-20
py, unix: Allow to compile with -Wunused-parameter.
Damien George
2015-01-14
py: Add "default" to switches to allow better code flow analysis.
Damien George
2015-01-12
py: Allow to compile with -Wstrict-prototypes.
Damien George
2015-01-11
py: Remove unnecessary BINARY_OP_EQUAL code that just checks pointers.
Damien George
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-11-05
py: Fix some macros defines; cleanup some includes.
Damien George
2014-10-25
py: Store bytecode arg names in bytecode (were in own array).
Damien George
2014-10-03
py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.
Damien George
2014-09-29
py: Fix types, uint -> mp_uint_t.
Damien George
2014-09-23
stmhal: Initialise stack pointer correctly.
Damien George
2014-09-04
py: Use variable length encoded uints in more places in bytecode.
Damien George
2014-08-30
Change some parts of the core API to use mp_uint_t instead of uint/int.
Damien George
2014-08-24
py: Fix bug where GC collected native/viper/asm function data.
Damien George
2014-08-15
py: Viper can now store to global.
Damien George
2014-08-15
py: Allow viper to have type annotations.
Damien George
2014-07-03
Rename machine_(u)int_t to mp_(u)int_t.
Damien George
2014-07-01
stackctrl: Add "mp_" prefix.
Paul Sokolovsky
2014-06-27
py: Add portable framework to query/check C stack usage.
Paul Sokolovsky
2014-06-11
objfun: Remove no longer used mp_obj_fun_prepare_simple_args().
Paul Sokolovsky
2014-06-11
objfun: Factor out mp_setup_code_state() function to set up code_state object.
Paul Sokolovsky
2014-06-08
Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-alloca
Damien George
2014-06-08
py: Simplify function call of a bytecode object.
Damien George
2014-06-07
py: Implement default keyword only args.
Damien George
2014-06-07
py: Merge mp_execute_bytecode into fun_bc_call.
Damien George
[next]