Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 2712 | Kartik K. Agaram | 2016-02-26 | 1 | -2/+2 |
| | |||||
* | 2677 | Kartik K. Agaram | 2016-02-20 | 1 | -2/+2 |
| | | | | Include type names in the type tree. Though we aren't using them yet. | ||||
* | 2581 - make space for the refcount in address:shared | Kartik K. Agaram | 2016-01-20 | 1 | -5/+13 |
| | | | | | | | | | | | We don't yet actually maintain the refcount. That's next. Hardest part of this was debugging the assume-console scenarios in layer 85. That took some detailed manual diffing of traces (because the output of diff was no good). New tracing added in this commit add 8% to .traces LoC. Commented out trace() calls (used during debugging) make that 45%. | ||||
* | 2576 - distinguish allocated addresses from others | Kartik K. Agaram | 2016-01-19 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | This is the one major refinement on the C programming model I'm planning to introduce in mu. Instead of Rust's menagerie of pointer types and static checking, I want to introduce just one new type, and use it to perform ref-counting at runtime. So far all we're doing is updating new's interface. The actual ref-counting implementation is next. One implication: I might sometimes need duplicate implementations for a recipe with allocated vs vanilla addresses of the same type. So far it seems I can get away with just always passing in allocated addresses; the situations when you want to pass an unallocated address to a recipe should be few and far between. | ||||
* | 2430 - make room for more transforms | Kartik K. Agaram | 2015-11-13 | 1 | -0/+287 |