about summary refs log tree commit diff stats
path: root/031array.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2893Kartik K. Agaram2016-05-031-456/+0
|
* 2891 - precompute container sizes and offsetsKartik K. Agaram2016-05-021-9/+17
| | | | | | | It's a bit of a trade-off because we need to store copies of container metadata in each reagent (to support shape-shifting containers), and metadata is not lightweight and will get heavier. But it'll become more unambiguously useful when we switch to a compiler.
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-1/+1
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2863Kartik K. Agaram2016-04-241-0/+448
Finally after much massaging, the 'address' and 'new' layers are adjacent.