circuitpython/unix
Damien George eb7bfcb286 Split qstr into pools, and put initial pool in ROM.
Qstr's are now split into a linked-list of qstr pools.  This has 2
benefits: the first pool can be in ROM (huge benefit, since we no longer
use RAM for the core qstrs), and subsequent pools use m_new for the next
pool instead of m_renew (thus avoiding a huge single table for all the
qstrs).

Still would be better to use a hash table, but this scheme takes us part
of the way (eventually convert the pools to hash tables).

Also fixed bug with import.

Also improved the way the module code is referenced (not magic number 1
anymore).
2014-01-04 15:57:35 +00:00
..
.gitignore Add unix-cpy, used to test Micro Python byte code against CPython. 2013-12-29 18:01:01 +00:00
main.c Split qstr into pools, and put initial pool in ROM. 2014-01-04 15:57:35 +00:00
Makefile Improve configurability for native x64/thumb emitter. 2014-01-04 13:55:24 +00:00
mpconfigport.h Move INT_FMT, etc. declaration into global mpconfig.h . 2014-01-04 01:57:00 +02:00