about summary refs log tree commit diff stats
path: root/033address.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2893Kartik K. Agaram2016-05-031-1032/+0
|
* 2891 - precompute container sizes and offsetsKartik K. Agaram2016-05-021-0/+6
| | | | | | | 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.
* 2874Kartik K. Agaram2016-04-271-1/+1
| | | | | | Be more consistent that 'return' is the name of the instruction, and 'reply' just a synonym. Maybe I should take it out. It wouldn't affect the recipe/ingredient terminology while I teach..
* 2867Kartik K. Agaram2016-04-251-6/+9
|
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-87/+723
| | | | | | | 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/+387
Finally after much massaging, the 'address' and 'new' layers are adjacent.