summaryrefslogtreecommitdiffstatshomepage
path: root/py/nativeglue.c
Commit message (Expand)AuthorAge
* py/dynruntime: Export mp_load_method_maybe and mp_arg_parse_all* funcs.Brian Pugh2024-05-24
* py/dynruntime: Add mp_obj_exception_init function to create C exception.Damien George2024-05-23
* py/dynruntime: Add mp_binary_get_size/get_val_array/set_val_array.Damien George2024-03-28
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/emitglue: Introduce mp_proto_fun_t as a more general mp_raw_code_t.Damien George2024-02-16
* py/dynruntime: Add mp_get_buffer.Damien George2023-10-16
* py/dynruntime.h: Implement MP_OBJ_NEW_QSTR.Jim Mussared2023-09-01
* py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George2022-05-17
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* all: Fix implicit floating point promotion.stijn2020-04-18
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py/nativeglue: Fix typo about where the native fun table enum is.Jim Mussared2020-01-27
* py/nativeglue: Use mp_const_X instead of &mp_const_X_obj.Damien George2020-01-12
* py/nativeglue: Add float new/get functions with both single and double.Damien George2019-12-12
* py/nativeglue: Add funcs/types to native glue table for dynamic runtime.Damien George2019-12-12
* py/nativeglue: Add new header file with native function table typedef.Damien George2019-12-12
* py/nativeglue: Remove unused mp_obj_new_cell from mp_fun_table.Damien George2019-11-01
* py/emitnative: Add support for using setjmp with native emitter.Damien George2019-10-05
* py/nativeglue: Make mp_fun_table fixed size regardless of config.Damien George2019-09-26
* py/bc0: Order opcodes into groups based on their size and format.Damien George2019-09-26
* py: Allow to pass in read-only buffers to viper and inline-asm funcs.Damien George2019-08-06
* py: Define EMIT_MACHINE_CODE as EMIT_NATIVE || EMIT_INLINE_ASM.Jun Wu2019-06-28
* py/nativeglue: Remove dependency on mp_fun_table in dyn-compiler mode.Damien George2019-05-29
* py/nativeglue: Make private glue funs all static, remove commented code.Damien George2019-05-29
* py/native: Improve support for bool type in viper functions.Damien George2019-05-03
* py/nativeglue: Rename native convert funs to match other native helpers.Damien George2019-03-14
* py: Move mp_native_type_from_qstr() from emitnative.c to nativeglue.c.Damien George2019-03-14
* py/emitnative: Put None/False/True in global native const table.Damien George2018-10-15
* py/emitnative: Implement yield and yield-from in native emitter.Damien George2018-10-01
* py: Make viper functions have the same entry signature as native.Damien George2018-09-15
* py: Fix native functions so they run with their correct globals context.Damien George2018-09-13
* py/emit: Merge build set/slice into existing build emit function.Damien George2018-05-23
* py/emitnative: Implement floor-division and modulo for viper emitter.Damien George2017-10-11
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann2017-08-15
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George2017-02-16
* py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George2017-02-16
* py: Allow inline-assembler emitter to be generic.Damien George2016-12-09
* py/viper: Allow casting of Python integers to viper pointers.Damien George2016-02-09
* py: Extend native type-sig to use 4 bits, so uint is separate to ptr.Damien George2016-02-02
* py/inlineasm: Add ability to specify return type of asm_thumb funcs.Damien George2016-01-27
* py/viper: Truncate viper integer args so they can be up to 32-bit.Damien George2016-01-07
* py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky2015-10-11
* py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George2015-06-25
* py: Remove mp_load_const_str and replace uses with inlined version.Damien George2015-06-25
* py: Implement full func arg passing for native emitter.Damien George2015-04-07
* py: Implement calling functions with *args in native emitter.Damien George2015-04-06