summaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2025-02-11py/objcode: Factor code object out into its own file.Damien George
2025-01-02py/emitinlinerv32: Add inline assembler support for RV32.Alessandro Gatti
2024-06-21py/emitnative: Fix native async with.Damien George
2024-06-21py/emitndebug: Add native debug emitter.Damien George
2024-06-21py/asmrv32: Add RISC-V RV32IMC native code emitter.Alessandro Gatti
2024-03-22py/compile: Add option to allow compiling top-level await.Damien George
2024-03-07all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton
2024-02-21py/compile: Remove TODO about name mangling.Damien George
2024-02-16py/emitglue: Include fun_data_len in mp_raw_code_t only when saving.Damien George
2024-02-16py/emitglue: Introduce mp_proto_fun_t as a more general mp_raw_code_t.Damien George
2024-01-31py/compile: Fix potential Py-stack overflow in try-finally with return.Damien George
2023-07-13py/compile: Fix async for's stack handling of iterator expression.Damien George
2023-05-03py/compile: Remove over-eager optimisation of tuples as if condition.Damien George
2023-04-27all: Fix spelling mistakes based on codespell check.Damien George
2023-03-09py/compile: Fix scope of assignment expression target in comprehensions.Damien George
2022-12-08py: Pass in address to compiled module instead of returning it.Damien George
2022-07-26py/compile: Support large integers in inline-asm data directive.Damien George
2022-06-20py/emit: Remove logic to detect last-emit-was-return-value.Damien George
2022-06-08py/compile: Give the compiler a hint about num nodes being non-zero.Damien George
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