aboutsummaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2015-02-16py: More robust checking in inline assembler compiler.Damien George
2015-02-13py: Expose compile.c:list_get as mp_parse_node_extract_list.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-02-07py: Protect mp_parse and mp_compile with nlr push/pop block.Damien George
2015-01-28py: Change vstr so that it doesn't null terminate buffer by default.Damien George
2015-01-21py: Remove mp_obj_str_builder and use vstr instead.Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-20py, unix, stmhal: Allow to compile with -Wshadow.Damien George
2015-01-16py, unix: Allow to compile with -Wsign-compare.Damien George
2015-01-16py: Remove unnecessary id_flags argument from emitter's load_fast.Damien George
2015-01-14py: Add "default" to switches to allow better code flow analysis.Damien George
2015-01-14py: Only allocate strings/bytes once for load_const_obj.Damien George
2015-01-14py: Reluctantly add an extra pass to bytecode compiler.Damien George
2015-01-13py: Make compiler not crash when default except is not last.Damien George
2015-01-13py: Never intern data of large string/bytes object; add relevant tests.Damien George
2015-01-10py: Add config option MICROPY_COMP_MODULE_CONST for module consts.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
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-21py: Remove last uses of printf from compile; use proper SyntaxError.Damien George
2014-12-21py: Move global/nonlocal decl code to compiler for proper SyntaxError.Damien George
2014-12-20py: Remove unnecessary RULE_none and PN_none from parser.Damien George
2014-12-12py: Fix optimised for-loop compiler so it follows proper semantics.Damien George
2014-12-11py: Fix a semantic issue with range optimisation.Damien George
2014-12-10py: Make functions static where appropriate.Damien George
2014-11-02py: Fix bug with right-shifting small ints by large amounts.Paul Sokolovsky
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