summaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2015-10-08py: Don't generate unnecessary parse nodes for assignment or kwargs.Damien George
2015-10-08py/compile: Fix edge case when constant-folding negation of integer.Damien George
2015-10-03py: Allow to enable inline assembler without native emitter.Damien George
2015-10-02py: Allocate parse nodes in chunks to reduce fragmentation and RAM use.Damien George
2015-10-01py: Catch all cases of integer (big and small) division by zero.Damien George
2015-09-24py/compile: Put compiler state on the C stack.Damien George
2015-09-23py: Slightly simplify compile and emit of star/double-star arguments.Damien George
2015-09-23py: Fix call args when a stararg is followed by keyword args.Delio Brignoli
2015-09-07py/compile: Refine SyntaxError for repeated use of global/nonlocal.Damien George
2015-09-04py/compile: Only compile function annotations if really needed.Damien George
2015-08-17py: Remove unused compile scope flags, and irrelevant flag compute code.Damien George
2015-08-17unix-cpy: Remove unix-cpy. It's no longer needed.Damien George
2015-07-29py/compile: Give more precise line number for compile errors.Damien George
2015-07-27py: For viper compile errors, add traceback with function and filename.Damien George
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-04-20py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George
2015-04-11py: Remove old debugging printf's in compile.c.Damien George
2015-04-09py: Provide typedefs for function types instead of writing them inline.Damien George
2015-04-09py: Adjust some spaces in code style/format, purely for consistency.Damien George
2015-03-26py, compiler: When just bytecode, make explicit calls instead of table.Damien George
2015-03-26py, compiler: Remove emit_pass1 code, using emit_bc to do its job.Damien George
2015-03-26py, compiler: Refactor load/store/delete_id logic to reduce code size.Damien George
2015-03-25py: Fix bug in compiler which allowed through illegal augmented assign.Damien George
2015-03-25py: Simplify some logic in compiler; add comments about CPython compat.Damien George
2015-03-14py, extmod: Remove include of unnecessary system headers.Damien George
2015-03-14py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options.Damien George
2015-03-14py: In compiler, put macro guard around potentially unused asm vars.Damien George
2015-03-03py: Simplify some inline-assembler error messages, but retain meaning.Damien George
2015-03-03py: Give error for duplicate label in inline assembler.Damien George
2015-03-01py: Set compiler scope before folding constants so error messages work.Damien George
2015-02-28py: Combine complie functions for or_test/and_test to reduce code size.Damien George
2015-02-28py: Combine emit functions for jump true/false to reduce code size.Damien George
2015-02-28py: Combine logic for compiling and/or tests, to reduce code size.Damien George
2015-02-27py: Transform assert logic in compiler to save code space.Damien George
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