aboutsummaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2022-05-23py/emitnative: Access qstr values using indirection table qstr_table.Damien George
2022-05-18py/compile: De-duplicate constant objects in module's constant table.Damien George
2022-05-17py/compile: Allow new qstrs to be allocated at all compiler passes.Damien George
2022-05-17py/emitnative: Put a pointer to the native prelude in child_table array.Damien George
2022-04-14py/parse: Factor obj extract code to mp_parse_node_extract_const_object.Damien George
2022-04-01py: Fix compiling and decoding of *args at large arg positions.Damien George
2022-03-31py/runtime: Allow multiple *args in a function call.David Lechner
2022-03-31py/runtime: Allow multiple **args in a function call.David Lechner
2022-03-30py/compile: Only show raw code that is bytecode.Damien George
2022-03-28py: Change jump opcodes to emit 1-byte jump offset when possible.Damien George
2022-03-16py/showbc: Remove global variables and make DECODE_PTR work correctly.Damien George
2022-03-16py/parse: Handle check for target small-int size in parser.Damien George
2022-03-16py/parse: Put const bytes objects in parse tree as const object.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2021-09-10py/parse: Simplify parse nodes representing a list.Damien George
2021-05-30py/compile: Raise an error on async with/for outside an async function.Jeff Epler
2021-04-27py: Add option to compile without any error messages at all.Damien George
2020-07-25py/compile: Don't await __aiter__ special method in async-for.Jonathan Hogg
2020-06-16py/compile: Implement PEP 526, syntax for variable annotations.Damien George
2020-06-16py/grammar.h: Consolidate duplicate sub-rules for :test and =test.Damien George
2020-06-16py/compile: Implement PEP 572, assignment expressions with := operator.Damien George
2020-06-16py/compile: Convert scope test to SCOPE_IS_COMP_LIKE macro.Damien George
2020-05-09py/parse: Make mp_parse_node_extract_list return size_t instead of int.Damien George
2020-04-23all: Format code to add space after C++-style comment start.stijn
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-04-05py/objexcept: Allow compression of exception message text.Jim Mussared
2020-04-05py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-02-06py/compile: Allow 'return' outside function in minimal builds.Petr Viktorin
2019-11-21py/compile: Coalesce error message for break/continue outside loop.Petr Viktorin
2019-10-05py: Add new Xtensa-Windowed arch for native emitter.Damien George
2019-10-04py/compile: Disallow 'import *' outside module level.Petr Viktorin
2019-09-26py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.Josh Lloyd
2019-09-26py/compile: Use calculation instead of switch to convert token to op.Damien George
2019-08-30py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa
2019-08-30py/compile: Improve the line numbering precision for lambdas.Damien George
2019-08-28py: Add global default_emit_opt variable to make emit kind persistent.Damien George
2019-08-19py/compile: Improve the line numbering precision for comprehensions.Milan Rossa
2019-05-06py: remove "if (0)" and "if (false)" branches.Jun Wu
2019-05-01py/asmthumb: Support asm_thumb code running on normal ARM processors.Damien George
2019-03-14py/compile: Check that arch is set when compiling native, viper or asm.Damien George
2019-03-14py/compile: Support multiple inline asm emitters.Damien George
2019-03-14py/compile: Add support to select the native emitter at runtime.Damien George
2019-03-08py: Add support to save native, viper and asm code to .mpy files.Damien George
2019-03-08py/emitnative: Consolidate where HASCONSTS is set to load-const-obj fun.Damien George
2019-03-05py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George
2019-03-05py: Fix VM crash with unwinding jump out of a finally block.Damien George
2019-03-01py/compile: Add optimisation to compile OrderedDict inplace.Damien George
2019-02-26py/compile: Fix handling of unwinding BaseException in async with.Damien George
2019-02-25py: Eliminate warnings about unused arguments when debugging disabled.Damien George