summaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2014-04-21py: Add 'align' and 'data' meta-instructions to inline assembler.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-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-12py, compiler: Fix up creation of default positionals tuple.Damien George
2014-04-11py, compiler: Fix compiling of keyword args following named star.Damien George
2014-04-11py: Change compile order for default positional and keyword args.Damien George
2014-04-11py, compiler: Allow lambda's to yield.Damien George
2014-04-11py: Implement compiling of *-expr within parenthesis.Damien George
2014-04-10py: Add simple way of looking up constants in compiler.Damien George
2014-04-10py: Simplify stack get/set to become stack adjust in emitters.Damien George
2014-04-10py, compiler: Improve stack depth counting.Damien George
2014-04-10py: Make labels unsigned ints (converted from int).Damien George
2014-04-10py, compiler: Implement compiling of relative imports.Damien George
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.Damien George
2014-04-09py, compiler: Turn id_info_t.param into a set of flags.Damien George
2014-04-09py, compile: Simplify initialisation of compiler structure.Damien George
2014-04-09py, compile: Reduce size of compiler structure.Damien George
2014-04-09py, compile: Combine have_star_arg, have_dbl_star_arg into star_flags.Damien George
2014-04-09py, compiler: Clean up and compress scope/compile structures.Damien George
2014-04-08py: implement UNPACK_EX byte code (for: a, *b, c = d)Damien George
2014-04-08py: Improve compiler syntax errors; catch more errors.Damien George
2014-04-06py: Implement more features in native emitter.Damien George
2014-04-06py: Add option to compiler to specify default code emitter.Damien George
2014-04-04py: Enable optimisation of multiplying 2 small ints in compiler.Damien George
2014-04-04py: This time, real proper overflow checking of small int power.Damien George
2014-04-02py: Wrap compile_scope_inline_asm in #if; remove comment from misc.h.Damien George
2014-04-02py: Enable a jump optimisation in the compiler.Damien George
2014-04-02py: Move to Python 3.4.0 compatibility.Damien George
2014-03-31py: Fix bug in optimised for .. range.Damien George
2014-03-31py: Towards default keyword arguments.Damien George
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Rename and reorder parameters in emit_make_function/closure.Damien George
2014-03-31compile: Don't try to constant-fold division by zero.Paul Sokolovsky
2014-03-30py: Fix bug in compiler for empty class bases.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30compile: Print error messages on unimplemented relative imports.Paul Sokolovsky
2014-03-29Merge pull request #389 from pfalcon/with-statementDamien George
2014-03-29py: Free unique_code slot for outer module.Damien George
2014-03-29vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes).Paul Sokolovsky
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George
2014-03-27py: Calculate maximum exception stack size in compiler.Damien George
2014-03-26py: Restore CPython compatibility in compiler for closures with def args.Damien George
2014-03-26py: Support closures with default args.Paul Sokolovsky
2014-03-22Fixed floor division on mp ints and small ints. Added a floordivide test case.Rachel Dowdall
2014-03-22Fixed modulo operator on ints and mp ints to agree with python. Added intdivm...Rachel Dowdall
2014-03-17py: Clean up includes.xbe
2014-03-03py: Unify syntax error handling in compiler; check defualt arg syntax.Damien George
2014-02-26py: Remove name of var arg from macros with var args.Damien George