aboutsummaryrefslogtreecommitdiff
path: root/py/emitnative.c
AgeCommit message (Expand)Author
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-03-23py: Define and use MP_OBJ_ITER_BUF_NSLOTS to get size of stack iter buf.Damien George
2017-03-17py: Reduce size of mp_code_state_t structure.Damien George
2017-03-15py/emitnative: Remove obsolete commented out code.Damien George
2017-03-14py/emitnative: Use assertions and mp_not_implemented correctly.Damien George
2017-02-16py: Remove unused "use_stack" argument from for_iter_end emit function.Damien George
2017-02-16py: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George
2017-02-16py: Allow bytecode/native to put iter_buf on stack for simple for loops.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-01-17py/emitnative: Remove assert(0)'s or replace with mp_not_implemented.Damien George
2016-12-09py: Integrate Xtensa assembler into native emitter.Damien George
2016-12-09py: Move arch-specific assembler macros from emitnative to asmXXX.h.Damien George
2016-11-28py: Factor out common code from assemblers into asmbase.[ch].Damien George
2016-11-10py/emitnative: Fix native import emitter when in viper mode.Damien George
2016-09-19py: Combine 3 comprehension emit functions (list/dict/set) into 1.Damien George
2016-08-27py: Rename struct mp_code_state to mp_code_state_t.Damien George
2016-04-26py/emitnative: Use MP_OBJ_NEW_SMALL_INT instead of manual bit shifting.Damien George
2016-04-07py: Implement basic with support in native emitter.Damien George
2016-04-07py: Combine continuous block of emit steps into with_cleanup emit call.Damien George
2016-02-15py/emitnative: Add check that RHS of viper store is of integral type.Damien George
2016-02-09py/viper: Allow uint as index to load/store, and give better error msg.Damien George
2016-02-02py: Extend native type-sig to use 4 bits, so uint is separate to ptr.Damien George
2015-12-10py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George
2015-11-29py/emit: Change type of arg of load_const_obj from void* to mp_obj_t.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.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-11-13py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George
2015-10-14py: Fix build of ARM native emitter due to recent viper changes.Damien George
2015-10-13py: Implement ptr32 load and store in viper emitter.Damien George
2015-10-08py/emitnative: Raise ViperTypeError for unsupported unary ops.Damien George
2015-09-23py: Slightly simplify compile and emit of star/double-star arguments.Damien George
2015-08-12py: In native ARM emitter, load r7 with table earlier in func prelude.Damien George
2015-07-27py: For viper compile errors, add traceback with function and filename.Damien George
2015-07-23py: Issue an error when compiling Viper functions with more than 4 args.Damien George
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-06-04py: Implement native multiply operation in viper emitter.Damien George
2015-06-04py: Implement implicit cast to obj for viper load/store index/value.Damien George
2015-05-08emitnative: Revamp ARM codegen compile after full-arg support refactors.Paul Sokolovsky
2015-05-06py: Fix naming of function arguments when function is a closure.Damien George
2015-04-22py/emitnative.c: Fix stack adjustment when erroring on binary op.Damien George
2015-04-20py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-16py: Convert occurrences of non-debug printf to mp_printf.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: Fix bug in native emitter when closing over an argument.Damien George
2015-04-03py: Get native emitter working again with x86 (now supports closures).Damien George
2015-04-03py: Implement closures in native code generator.Damien George