summaryrefslogtreecommitdiffstatshomepage
path: root/py/compile.c
Commit message (Expand)AuthorAge
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Allow to properly disable builtin slice operation.Damien George2014-12-27
* py: Allow to properly disable builtin "set" object.Damien George2014-12-27
* py: Remove last uses of printf from compile; use proper SyntaxError.Damien George2014-12-21
* py: Move global/nonlocal decl code to compiler for proper SyntaxError.Damien George2014-12-21
* py: Remove unnecessary RULE_none and PN_none from parser.Damien George2014-12-20
* py: Fix optimised for-loop compiler so it follows proper semantics.Damien George2014-12-12
* py: Fix a semantic issue with range optimisation.Damien George2014-12-11
* py: Make functions static where appropriate.Damien George2014-12-10
* py: Fix bug with right-shifting small ints by large amounts.Paul Sokolovsky2014-11-02
* py: Add more compiler optimisations for constant if/while conditions.Damien George2014-10-17
* py: Simplify compilation of elif blocks.Damien George2014-10-17
* py: Fix compiling of nested while/for and exception handler.Damien George2014-10-17
* py: Make compiler return a proper exception on SyntaxError.Damien George2014-10-05
* py: Fix unix-cpy to compile with uint->mp_uint_t changes.Damien George2014-10-03
* py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George2014-10-03
* py: Convert [u]int to mp_[u]int_t where appropriate.Damien George2014-10-03
* py: Free non-interned strings in the parser when not needed.Damien George2014-09-23
* py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.Damien George2014-09-08
* py: Add support for emitting native x86 machine code.Damien George2014-09-06
* Code style/whitespace cleanup; remove obsolete headers.Damien George2014-09-03
* py: Add compiler optimisation for conditions in parenthesis.Damien George2014-08-29
* Basic native ARM emitterFabian Vogt2014-08-27
* py: Fix typing of viper locals; allow default types in annotation.Damien George2014-08-15
* py: Allow viper to have type annotations.Damien George2014-08-15
* py: Clean up and simplify functions in scope; add STATIC in compiler.Damien George2014-08-15
* moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky2014-07-09
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Improvements to native emitter.Damien George2014-06-30
* py: Include mpconfig.h before all other includes.Paul Sokolovsky2014-06-21
* Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot2014-06-19
* py: Implement default keyword only args.Damien George2014-06-07
* py: Fix stack underflow with optimised for loop.Damien George2014-05-31
* py: Fix break from within a for loop.Damien George2014-05-30
* py: Fix check of small-int overflow when parsing ints.Damien George2014-05-28
* py: Don't automatically intern strings in parser.Damien George2014-05-25
* Tidy up some configuration options.Damien George2014-05-21
* py: Rename BYTE_CODE to BYTECODE (this was missed in previous rename).Damien George2014-05-12
* py: Rename byte_code to bytecode everywhere.Damien George2014-05-10
* py, compiler: Add basic support for A=const(123).Damien George2014-05-08
* py, compiler: Improve passes; add an extra pass for native emitter.Damien George2014-05-07
* py, compiler: Start adding support for compile-time constants.Damien George2014-05-07
* Add license header to (almost) all files.Damien George2014-05-03
* py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.Damien George2014-04-27
* py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George2014-04-27
* py: Save some ROM by shortening compiler error messages.Damien George2014-04-27
* py: Change the way function arguments are compiled.Damien George2014-04-27
* py: Implement keyword-only args.Damien George2014-04-27
* Add ARRAY_SIZE macro, and use it where possible.Damien George2014-04-26
* py: Add MICROPY_ENABLE_DOC_STRING, disabled by default.Damien George2014-04-25