aboutsummaryrefslogtreecommitdiff
path: root/py/emitglue.c
AgeCommit message (Expand)Author
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Change qstr_* functions to use size_t as the type for str len arg.Damien George
2015-11-29py: Change mp_print_strn_t func type to use size_t for the str length.Damien George
2015-11-23py/emitglue: Implement persistent saving and loading of const objects.Damien George
2015-11-23py/emitglue: Add feature-flag header to .mpy to detect bytecode compat.Damien George
2015-11-21py/emitglue: Host definition of mp_verbose_flag.Paul Sokolovsky
2015-11-20py/emitglue: Add mp_raw_code_load_mem to load raw-code from memory.Damien George
2015-11-20py/emitglue: Only compile raw-code fatfs loader when on thumb2 platform.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.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-04-07py: Implement full func arg passing for native emitter.Damien George
2015-01-24py: Don't use anonymous unions, name them instead.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-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-10-26unix: Make -v dump memory info at exit.Paul Sokolovsky
2014-10-25py: Store bytecode arg names in bytecode (were in own array).Damien George
2014-10-24py: Fix debug-printing of bytecode line numbers.Damien George
2014-08-26py: Fix line number printing for file with 1 line.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-06-07py: Implement default keyword only args.Damien George
2014-06-03showbc: Make micropython -v also dump bytecode in hex form.Paul Sokolovsky
2014-06-03showbc: Make sure it's possible to trace MAKE_FUNCTION arg to actual bytecode.Paul Sokolovsky
2014-05-12py: Remove emit_glue init and deinit. Needed only for debugging.Damien George
2014-05-10py: Combine native emitters to 1 glue function; distinguish viper.Damien George
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-05py, unix: Add -v option, print bytecode dump if used.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-27py: Implement keyword-only args.Damien George
2014-04-23emitglue: Typo fix in var name.Paul Sokolovsky
2014-04-20py: Making closures now passes pointer to stack, not a tuple for vars.Damien George
2014-04-13py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George
2014-04-12py: Improve inline assembler; improve compiler constant folding.Damien George
2014-04-11py: Change compile order for default positional and keyword args.Damien George
2014-04-06py: Implement more features in native emitter.Damien George
2014-03-31py: Towards default keyword arguments.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-29py: Free unique_code slot for outer module.Damien George
2014-03-28py: Fix bugs with debugging output.Damien George
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George