aboutsummaryrefslogtreecommitdiff
path: root/py/emit.h
AgeCommit message (Expand)Author
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-02-16py: Remove unused "use_stack" argument from for_iter_end emit function.Damien George
2017-02-16py: Allow bytecode/native to put iter_buf on stack for simple for loops.Damien George
2016-12-09py/emitinline: Move common code for end of final pass to compiler.Damien George
2016-12-09py/emitinline: Move inline-asm align and data methods to compiler.Damien George
2016-12-09py: Add inline Xtensa assembler.Damien George
2016-12-09py: Integrate Xtensa assembler into native emitter.Damien George
2016-12-09py/emit.h: Remove long-obsolete declarations for cpython emitter.Damien George
2016-09-19py: Combine 3 comprehension emit functions (list/dict/set) into 1.Damien George
2016-04-07py: Combine continuous block of emit steps into with_cleanup emit call.Damien George
2016-01-27py/inlineasm: Add ability to specify return type of asm_thumb funcs.Damien George
2015-11-29py/emit: Change type of arg of load_const_obj from void* to mp_obj_t.Damien George
2015-08-17unix-cpy: Remove unix-cpy. It's no longer needed.Damien George
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-04-20py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George
2015-03-26py, compiler: When just bytecode, make explicit calls instead of table.Damien George
2015-03-26py, compiler: Remove emit_pass1 code, using emit_bc to do its job.Damien George
2015-03-26py, compiler: Refactor load/store/delete_id logic to reduce code size.Damien George
2015-03-03py: Give error for duplicate label in inline assembler.Damien George
2015-02-28py: Combine emit functions for jump true/false to reduce code size.Damien George
2015-02-13py: Make inline assembler raise proper SyntaxError exception on error.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-01-28py: Change vstr so that it doesn't null terminate buffer by default.Damien George
2015-01-16py: Remove unnecessary id_flags argument from emitter's load_fast.Damien George
2015-01-13py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2015-01-01py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky
2014-12-27py: Allow to properly disable builtin slice operation.Damien George
2014-12-27py: Allow to properly disable builtin "set" object.Damien George
2014-12-27py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky
2014-09-08py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.Damien George
2014-09-06py: Add support for emitting native x86 machine code.Damien George
2014-08-27Basic native ARM emitterFabian Vogt
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-30py: Improvements to native emitter.Damien George
2014-05-30py: Fix break from within a for loop.Damien George
2014-05-07py, compiler: Improve passes; add an extra pass for native emitter.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-27py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George
2014-04-21py: Add 'align' and 'data' meta-instructions to inline assembler.Damien George
2014-04-20py: Wrap #if's around emitter functions that are used only by emitcpy.Damien George
2014-04-20py: Making closures now passes pointer to stack, not a tuple for vars.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-12py: Improve inline assembler; improve compiler constant folding.Damien George
2014-04-10py: Simplify stack get/set to become stack adjust in emitters.Damien George
2014-04-10py: Make labels unsigned ints (converted from int).Damien George
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.Damien George
2014-04-09py, compile: Combine have_star_arg, have_dbl_star_arg into star_flags.Damien George
2014-04-02py: Move to Python 3.4.0 compatibility.Damien George