- 03 May, 2014 1 commit
-
-
Damien George authored
Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
-
- 27 Apr, 2014 1 commit
-
-
Damien George authored
Implements 'def f(*, a)' and 'def f(*a, b)', but not default keyword-only args, eg 'def f(*, a=1)'. Partially addresses issue #524.
-
- 26 Apr, 2014 1 commit
-
-
Damien George authored
-
- 21 Apr, 2014 1 commit
-
-
Damien George authored
-
- 18 Apr, 2014 1 commit
-
-
Damien George authored
-
- 13 Apr, 2014 1 commit
-
-
Damien George authored
Attempt to address issue #386. unique_code_id's have been removed and replaced with a pointer to the "raw code" information. This pointer is stored in the actual byte code (aligned, so the GC can trace it), so that raw code (ie byte code, native code and inline assembler) is kept only for as long as it is needed. In memory it's now like a tree: the outer module's byte code points directly to its children's raw code. So when the outer code gets freed, if there are no remaining functions that need the raw code, then the children's code gets freed as well. This is pretty much like CPython does it, except that CPython stores indexes in the byte code rather than machine pointers. These indices index the per-function constant table in order to find the relevant code.
-
- 12 Apr, 2014 2 commits
-
-
Damien George authored
Improved the Thumb assembler back end. Added many more Thumb instructions to the inline assembler. Improved parsing of assembler instructions and arguments. Assembler functions can now be passed the address of any object that supports the buffer protocol (to get the address of the buffer). Added an example of how to sum numbers from an array in assembler.
-
Damien George authored
-
- 10 Apr, 2014 1 commit
-
-
Damien George authored
Labels should never be negative, and this modified type signature reflects that.
-
- 08 Apr, 2014 1 commit
-
-
Damien George authored
-
- 27 Mar, 2014 1 commit
-
-
Damien George authored
-
- 17 Mar, 2014 1 commit
-
-
xbe authored
Remove unnecessary includes. Add includes that improve portability.
-
- 22 Feb, 2014 1 commit
-
-
Paul Sokolovsky authored
Based on suggestion by @dpgeorge at https://github.com/micropython/micropython/pull/313
-
- 12 Feb, 2014 1 commit
-
-
Paul Sokolovsky authored
-
- 24 Jan, 2014 1 commit
-
-
Damien George authored
There can be multiple emitters allocated during compile (eg byte code and native).
-
- 21 Jan, 2014 1 commit
-
-
Damien George authored
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
-
- 06 Jan, 2014 2 commits
- 21 Dec, 2013 1 commit
-
-
Damien authored
A big change. Micro Python objects are allocated as individual structs with the first element being a pointer to the type information (which is itself an object). This scheme follows CPython. Much more flexible, not necessarily slower, uses same heap memory, and can allocate objects statically. Also change name prefix, from py_ to mp_ (mp for Micro Python).
-
- 03 Nov, 2013 1 commit
-
-
Damien authored
-
- 12 Oct, 2013 2 commits
- 06 Oct, 2013 1 commit
-
-
Damien authored
-
- 05 Oct, 2013 3 commits