Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py: Calculate maximum exception stack size in compiler. | Damien George | 2014-03-27 |
| | |||
* | py: Pass all scope flags through to runtime. | Damien George | 2014-02-15 |
| | |||
* | mp_compile(): Properly free module_scope and all nested scopes. | Paul Sokolovsky | 2014-01-23 |
| | |||
* | py: Add module/function/class name to exceptions. | Damien George | 2014-01-19 |
| | | | | | | | Exceptions know source file, line and block name. Also tidy up some debug printing functions and provide a global flag to enable/disable them. | ||
* | py: make closures work. | Damien George | 2013-12-30 |
| | |||
* | Change object representation from 1 big union to individual structs. | Damien | 2013-12-21 |
| | | | | | | | | | | 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). | ||
* | py: work towards working closures. | Damien | 2013-12-11 |
| | |||
* | Add local_num skeleton framework to deref/closure emit calls. | Damien | 2013-10-20 |
| | |||
* | Implement built-in decorators to select emit type. | Damien | 2013-10-05 |
| | |||
* | Further factorise PASS_1 out of specific emit code. | Damien | 2013-10-05 |
| | |||
* | Restructure emit so it goes through a method table. | Damien | 2013-10-05 |
| | |||
* | Initial commit. | Damien | 2013-10-04 |