summaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2014-10-17py: Add more compiler optimisations for constant if/while conditions.Damien George
2014-10-17py: Simplify compilation of elif blocks.Damien George
2014-10-17py: Fix compiling of nested while/for and exception handler.Damien George
2014-10-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-10-03py: Fix unix-cpy to compile with uint->mp_uint_t changes.Damien George
2014-10-03py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George
2014-10-03py: Convert [u]int to mp_[u]int_t where appropriate.Damien George
2014-09-23py: Free non-interned strings in the parser when not needed.Damien George
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-09-03Code style/whitespace cleanup; remove obsolete headers.Damien George
2014-08-29py: Add compiler optimisation for conditions in parenthesis.Damien George
2014-08-27Basic native ARM emitterFabian Vogt
2014-08-15py: Fix typing of viper locals; allow default types in annotation.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-08-15py: Clean up and simplify functions in scope; add STATIC in compiler.Damien George
2014-07-09moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-30py: Improvements to native emitter.Damien George
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-06-19Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot
2014-06-07py: Implement default keyword only args.Damien George
2014-05-31py: Fix stack underflow with optimised for loop.Damien George
2014-05-30py: Fix break from within a for loop.Damien George
2014-05-28py: Fix check of small-int overflow when parsing ints.Damien George
2014-05-25py: Don't automatically intern strings in parser.Damien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-12py: Rename BYTE_CODE to BYTECODE (this was missed in previous rename).Damien George
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-08py, compiler: Add basic support for A=const(123).Damien George
2014-05-07py, compiler: Improve passes; add an extra pass for native emitter.Damien George
2014-05-07py, compiler: Start adding support for compile-time constants.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-27py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.Damien George
2014-04-27py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George
2014-04-27py: Save some ROM by shortening compiler error messages.Damien George
2014-04-27py: Change the way function arguments are compiled.Damien George
2014-04-27py: Implement keyword-only args.Damien George
2014-04-26Add ARRAY_SIZE macro, and use it where possible.Damien George
2014-04-25py: Add MICROPY_ENABLE_DOC_STRING, disabled by default.Damien George
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