aboutsummaryrefslogtreecommitdiff
path: root/py/nativeglue.c
AgeCommit message (Expand)Author
2022-05-17py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2020-04-18all: Fix implicit floating point promotion.stijn
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-01-27py/nativeglue: Fix typo about where the native fun table enum is.Jim Mussared
2020-01-12py/nativeglue: Use mp_const_X instead of &mp_const_X_obj.Damien George
2019-12-12py/nativeglue: Add float new/get functions with both single and double.Damien George
2019-12-12py/nativeglue: Add funcs/types to native glue table for dynamic runtime.Damien George
2019-12-12py/nativeglue: Add new header file with native function table typedef.Damien George
2019-11-01py/nativeglue: Remove unused mp_obj_new_cell from mp_fun_table.Damien George
2019-10-05py/emitnative: Add support for using setjmp with native emitter.Damien George
2019-09-26py/nativeglue: Make mp_fun_table fixed size regardless of config.Damien George
2019-09-26py/bc0: Order opcodes into groups based on their size and format.Damien George
2019-08-06py: Allow to pass in read-only buffers to viper and inline-asm funcs.Damien George
2019-06-28py: Define EMIT_MACHINE_CODE as EMIT_NATIVE || EMIT_INLINE_ASM.Jun Wu
2019-05-29py/nativeglue: Remove dependency on mp_fun_table in dyn-compiler mode.Damien George
2019-05-29py/nativeglue: Make private glue funs all static, remove commented code.Damien George
2019-05-03py/native: Improve support for bool type in viper functions.Damien George
2019-03-14py/nativeglue: Rename native convert funs to match other native helpers.Damien George
2019-03-14py: Move mp_native_type_from_qstr() from emitnative.c to nativeglue.c.Damien George
2018-10-15py/emitnative: Put None/False/True in global native const table.Damien George
2018-10-01py/emitnative: Implement yield and yield-from in native emitter.Damien George
2018-09-15py: Make viper functions have the same entry signature as native.Damien George
2018-09-13py: Fix native functions so they run with their correct globals context.Damien George
2018-05-23py/emit: Merge build set/slice into existing build emit function.Damien George
2017-10-11py/emitnative: Implement floor-division and modulo for viper emitter.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-15py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-02-16py: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George
2017-02-16py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George
2016-12-09py: Allow inline-assembler emitter to be generic.Damien George
2016-02-09py/viper: Allow casting of Python integers to viper pointers.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-07py/viper: Truncate viper integer args so they can be up to 32-bit.Damien George
2015-10-11py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky
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-07py: Implement full func arg passing for native emitter.Damien George
2015-04-06py: Implement calling functions with *args in native emitter.Damien George
2015-04-03py: Implement closures in native code generator.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-01-21py: Implement proper re-raising in native codegen's finally handler.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-09-29py: Add casting to viper; add native mem stores to viper.Damien George
2014-09-06py: Native emitter now supports delete name & global, and end finally.Damien George
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George