aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2016-12-09py: Allow inline-assembler emitter to be generic.Damien George
2016-12-09py: Integrate Xtensa assembler into native emitter.Damien George
2016-12-09py/asmxtensa: Add low-level Xtensa assembler.Damien George
2016-12-09py/asmbase: Add MP_PLAT_COMMIT_EXEC option for handling exec code.Damien George
2016-12-09py: Move arch-specific assembler macros from emitnative to asmXXX.h.Damien George
2016-12-09py/emit.h: Remove long-obsolete declarations for cpython emitter.Damien George
2016-12-07py/compile: Simplify configuration of native emitter.Damien George
2016-12-02py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George
2016-11-29Revert "py: Add ability to manually mark blocks during collect."Scott Shawcroft
2016-11-29Only include uheap in debug builds.Scott Shawcroft
2016-11-30py/asmthumb: Fix build for F7 MCUs after recent code refactoring.Damien George
2016-11-28py: fix python3 compatibility errorScott Shawcroft
2016-11-28py: Factor out common code from assemblers into asmbase.[ch].Damien George
2016-11-26py/compile: Remove comment about TODO for short circuiting for if-stmt.Damien George
2016-11-23Add heap analysis scripts based on GDB breakpoint logs.Scott Shawcroft
2016-11-22py/objtype: Implement __call__ handling for an instance w/o heap alloc.Paul Sokolovsky
2016-11-21This introduces an alternative hardware API called nativeio structured around...Scott Shawcroft
2016-11-21py: Add ability to manually mark blocks during collect.Scott Shawcroft
2016-11-21stmhal/moduselect: Move to extmod/ for reuse by other ports.Paul Sokolovsky
2016-11-18py: Add support for properties on native objects when they are in the locals ...Scott Shawcroft
2016-11-18py: Change frozen build to not use -printf which isn't available on Mac OSX.Scott Shawcroft
2016-11-18py: Fix typo in comment.Scott Shawcroft
2016-11-16py/lexer: Make lexer use an mp_reader as its source.Damien George
2016-11-16py/lexer: Rewrite mp_lexer_new_from_fd in terms of mp_reader.Damien George
2016-11-16py/lexer: Provide generic mp_lexer_new_from_file based on mp_reader.Damien George
2016-11-16py/lexer: Rewrite mp_lexer_new_from_str_len in terms of mp_reader_mem.Damien George
2016-11-16py: Factor out persistent-code reader into separate files.Damien George
2016-11-16py: Factor persistent code load/save funcs into persistentcode.[ch].Damien George
2016-11-15py/parse: Add code to fold logical constants in or/and/not operations.Damien George
2016-11-15py/parse: Make mp_parse_node_new_leaf an inline function.Damien George
2016-11-15py/parse: Move function to check for const parse node to parse.[ch].Damien George
2016-11-15py/*.mk: Replace uses of 'sed' with $(SED).Damien George
2016-11-15py/mkrules.mk: Rework find command so it works on OSX.Dave Hylands
2016-11-15py/runtime: mp_resume: Fix exception handling for nanbox port.Paul Sokolovsky
2016-11-15py/runtime: mp_resume: Handle exceptions in Python __next__().Paul Sokolovsky
2016-11-14Merge tag 'v1.8.6'Scott Shawcroft
2016-11-14py/objexcept: Allow clearing traceback with 'exc.__traceback__ = None'.Paul Sokolovsky
2016-11-14all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky
2016-11-10py/emitnative: Fix native import emitter when in viper mode.Damien George
2016-11-08py: Strip leading dirs from frozen mpy files, so any path can be used.Damien George
2016-11-08py: Move frozen bytecode Makefile rules from ports to common mk files.Damien George
2016-11-03py: Add MICROPY_FLOAT_CONST macro for defining float constants.Damien George
2016-11-03py: Change config default so m_malloc0 uses memset if GC not enabled.Colin Hogben
2016-11-02py: Fix wrong assumption that m_renew will not move if shrinkingColin Hogben
2016-11-02unix: fix symbol references for x86 MacJan Pochyla
2016-10-31py: remove asserts that are always true in emitbc.cPavol Rusnak
2016-10-31py: fix null pointer dereference in mpz.c, fix missing va_end in warning.cPavol Rusnak
2016-10-30py/sequence: Fix reverse slicing of lists.Fabio Utzig
2016-10-30extmod/utime_mphal: Allow ticks functions period be configurable by a port.Paul Sokolovsky
2016-10-27py/stream: Typo fix in comment.Paul Sokolovsky