about summary refs log tree commit diff stats
path: root/078hash.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2990Kartik K. Agaram2016-05-201-1/+1
| | | | | | | | | | Standardize quotes around reagents in error messages. I'm still sure there's issues. For example, the messages when type-checking 'copy'. I'm not putting quotes around them because in layer 60 I end up creating dilated reagents, and then it's a bit much to have quotes and (two kinds of) brackets. But I'm sure I'm doing that somewhere..
* 2955 - back to more refcount housekeepingKartik K. Agaram2016-05-121-12/+0
| | | | | Update refcounts of address elements when copying containers. Still lots to do; see todo list at end of 036refcount.cc.
* 2931 - be explicit about making copiesKartik K. Agaram2016-05-061-5/+5
|
* 2891 - precompute container sizes and offsetsKartik K. Agaram2016-05-021-1/+1
| | | | | | | 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.
* 2889Kartik K. Agaram2016-04-301-1/+1
|
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-28/+29
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2803Kartik K. Agaram2016-03-211-2/+2
| | | | | Show more thorough information about instructions in the trace, but keep the original form in error messages.
* 2778 - fix all layersKartik K. Agaram2016-03-141-0/+392