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