| Commit message (Expand) | Author | Age |
* | py: Make viper codegen raise proper exception (ViperTypeError) on error. | Damien George | 2015-04-20 |
* | py: Remove old debugging printf's in compile.c. | Damien George | 2015-04-11 |
* | py: Provide typedefs for function types instead of writing them inline. | Damien George | 2015-04-09 |
* | py: Adjust some spaces in code style/format, purely for consistency. | Damien George | 2015-04-09 |
* | py, compiler: When just bytecode, make explicit calls instead of table. | Damien George | 2015-03-26 |
* | py, compiler: Remove emit_pass1 code, using emit_bc to do its job. | Damien George | 2015-03-26 |
* | py, compiler: Refactor load/store/delete_id logic to reduce code size. | Damien George | 2015-03-26 |
* | py: Fix bug in compiler which allowed through illegal augmented assign. | Damien George | 2015-03-25 |
* | py: Simplify some logic in compiler; add comments about CPython compat. | Damien George | 2015-03-25 |
* | py, extmod: Remove include of unnecessary system headers. | Damien George | 2015-03-14 |
* | py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options. | Damien George | 2015-03-14 |
* | py: In compiler, put macro guard around potentially unused asm vars. | Damien George | 2015-03-14 |
* | py: Simplify some inline-assembler error messages, but retain meaning. | Damien George | 2015-03-03 |
* | py: Give error for duplicate label in inline assembler. | Damien George | 2015-03-03 |
* | py: Set compiler scope before folding constants so error messages work. | Damien George | 2015-03-01 |
* | py: Combine complie functions for or_test/and_test to reduce code size. | Damien George | 2015-02-28 |
* | py: Combine emit functions for jump true/false to reduce code size. | Damien George | 2015-02-28 |
* | py: Combine logic for compiling and/or tests, to reduce code size. | Damien George | 2015-02-28 |
* | py: Transform assert logic in compiler to save code space. | Damien George | 2015-02-27 |
* | py: More robust checking in inline assembler compiler. | Damien George | 2015-02-16 |
* | py: Expose compile.c:list_get as mp_parse_node_extract_list. | Damien George | 2015-02-13 |
* | py: Make inline assembler raise proper SyntaxError exception on error. | Damien George | 2015-02-13 |
* | py: Parse big-int/float/imag constants directly in parser. | Damien George | 2015-02-08 |
* | py: Protect mp_parse and mp_compile with nlr push/pop block. | Damien George | 2015-02-07 |
* | py: Change vstr so that it doesn't null terminate buffer by default. | Damien George | 2015-01-28 |
* | py: Remove mp_obj_str_builder and use vstr instead. | Damien George | 2015-01-21 |
* | py, unix: Allow to compile with -Wunused-parameter. | Damien George | 2015-01-20 |
* | py, unix, stmhal: Allow to compile with -Wshadow. | Damien George | 2015-01-20 |
* | py, unix: Allow to compile with -Wsign-compare. | Damien George | 2015-01-16 |
* | py: Remove unnecessary id_flags argument from emitter's load_fast. | Damien George | 2015-01-16 |
* | py: Add "default" to switches to allow better code flow analysis. | Damien George | 2015-01-14 |
* | py: Only allocate strings/bytes once for load_const_obj. | Damien George | 2015-01-14 |
* | py: Reluctantly add an extra pass to bytecode compiler. | Damien George | 2015-01-14 |
* | py: Make compiler not crash when default except is not last. | Damien George | 2015-01-13 |
* | py: Never intern data of large string/bytes object; add relevant tests. | Damien George | 2015-01-13 |
* | py: Add config option MICROPY_COMP_MODULE_CONST for module consts. | Damien George | 2015-01-10 |
* | py: Move to guarded includes, everywhere in py/ core. | Damien George | 2015-01-01 |
* | py: Allow to properly disable builtin slice operation. | Damien George | 2014-12-27 |
* | py: Allow to properly disable builtin "set" object. | Damien George | 2014-12-27 |
* | py: Remove last uses of printf from compile; use proper SyntaxError. | Damien George | 2014-12-21 |
* | py: Move global/nonlocal decl code to compiler for proper SyntaxError. | Damien George | 2014-12-21 |
* | py: Remove unnecessary RULE_none and PN_none from parser. | Damien George | 2014-12-20 |
* | py: Fix optimised for-loop compiler so it follows proper semantics. | Damien George | 2014-12-12 |
* | py: Fix a semantic issue with range optimisation. | Damien George | 2014-12-11 |
* | py: Make functions static where appropriate. | Damien George | 2014-12-10 |
* | py: Fix bug with right-shifting small ints by large amounts. | Paul Sokolovsky | 2014-11-02 |
* | py: Add more compiler optimisations for constant if/while conditions. | Damien George | 2014-10-17 |
* | py: Simplify compilation of elif blocks. | Damien George | 2014-10-17 |
* | py: Fix compiling of nested while/for and exception handler. | Damien George | 2014-10-17 |
* | py: Make compiler return a proper exception on SyntaxError. | Damien George | 2014-10-05 |