about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 3095 - start type-checking 'deep-copy' instructionsKartik K. Agaram2016-07-031-0/+8
|
* 3094 - start using deep-copy when writing channelsKartik K. Agaram2016-07-032-7/+16
|
* 3093Kartik K. Agaram2016-07-031-8/+44
| | | | | | | Another bug, this time in cycle detection, which had been present from the start but hadn't actually been tested until now. Turns out it had two bugs, one with the map not being passed into a recursive call, and a more subtle one: I wasn't actually saving the right input address.
* 3092Kartik K. Agaram2016-07-031-52/+25
|
* 3091Kartik K. Agaram2016-07-031-1/+50
|
* 3090Kartik K. Agaram2016-07-031-5/+4
|
* 3089Kartik K. Agaram2016-07-031-14/+2
|
* 3088Kartik K. Agaram2016-07-031-14/+10
| | | | | | | | Gaining confidence now in the fix of 3086. Basically I forgot that size_of doesn't canonize its argument (because it needs to run at transform-time, but canonize cares about the value of the reagent for arrays, and value is only available at run-time). So I was always returning the size of the address (1) as the size of its payload.
* 3087Kartik K. Agaram2016-07-031-1/+1
|
* 3086Kartik K. Agaram2016-07-031-1/+93
| | | | | | | | | More tests, another bugfix. I still don't *really* understand why it works, though.. The new tests aren't really done yet. No assertions, lots of debug info. Just translated from sandboxes. deep_copy_stress_test_2 requires the bugfix.
* 3085Kartik K. Agaram2016-07-021-43/+44
| | | | | | To my surprise, I might be done with deep-copy. Suddenly all the holes I had for special cases have melted away. At least any new bugs will be holes I'd never thought of.
* 3084Kartik K. Agaram2016-07-011-8/+42
|
* 3083Kartik K. Agaram2016-07-014-7/+12
|
* 3082Kartik K. Agaram2016-06-301-5/+36
|
* 3081Kartik K. Agaram2016-06-301-1/+7
| | | | Thanks Ella Couch for reporting this.
* 3080Kartik K. Agaram2016-06-291-1/+1
|
* 3079Kartik K. Agaram2016-06-292-2/+2
|
* 3078Kartik K. Agaram2016-06-291-6/+14
|
* 3077Kartik K. Agaram2016-06-291-1/+25
|
* 3076Kartik K. Agaram2016-06-291-10/+13
|
* 3075Kartik K. Agaram2016-06-291-7/+56
| | | | Back to slow progress on deep-copy.
* 3074Kartik K. Agaram2016-06-292-1/+13
| | | | Thanks Ella Couch for finding this bug.
* 3073Kartik K. Agaram2016-06-281-2/+21
| | | | Support for containers without addresses.
* 3072 - start of deep-copy implementationKartik K. Agaram2016-06-281-0/+74
| | | | Just simple non-address primitives so far.
* 3071Kartik K. Agaram2016-06-281-3/+0
|
* 3070Kartik K. Agaram2016-06-282-18/+18
| | | | | Extract out the implementation of 'allocate' so other instructions (ahem, deep-copy) can use it.
* 3069Kartik K. Agaram2016-06-261-0/+0
|
* 3068Kartik K. Agaram2016-06-261-1/+1
|
* 3067Kartik K. Agaram2016-06-2510-138/+138
|
* 3066Kartik K. Agaram2016-06-241-0/+2
|
* 3065 - Mu language definition for Exuberant CtagsKartik K. Agaram2016-06-241-0/+8
| | | | | | | | | | Thanks Stephen Malina for the suggestion. I don't yet know how to include comments in the .ctagsrc file, so I'll include them here for now: To use this file, symlink or append exuberant-ctags-rc to your ~/.ctagsrc.
* 3064 - improve an error messageKartik K. Agaram2016-06-231-3/+3
|
* 3063Kartik K. Agaram2016-06-193-6/+5
|
* 3062Kartik K. Agaram2016-06-191-0/+4
|
* 3061Kartik K. Agaram2016-06-173-1/+20
|
* 3060Kartik K. Agaram2016-06-172-4/+4
|
* 3059Kartik K. Agaram2016-06-172-1/+13
|
* 3058 - 'remove' for listsKartik K. Agaram2016-06-162-1/+113
|
* 3057 - 'insert' for listsKartik K. Agaram2016-06-161-0/+89
|
* 3056Kartik K. Agaram2016-06-131-2/+2
|
* 3055Kartik K. Agaram2016-06-1314-0/+0
|
* 3054 - keep cursor stable on resize in sandbox/Kartik K. Agaram2016-06-127-29/+112
| | | | This ports commits 3052 and 3053 from the edit/ app.
* 3053 - keep cursor stable on resizeKartik K. Agaram2016-06-121-1/+85
| | | | | As much as possible; if the cursor moves off screen, it still resets to top of screen.
* 3052 - make edit/ render functions higher-orderKartik K. Agaram2016-06-128-44/+48
| | | | | | This required the fix of 3051 to first-class recipe support, and will next enable us to keep the cursor from moving in response to resize events.
* 3051Kartik K. Agaram2016-06-122-2/+25
|
* 3050Kartik K. Agaram2016-06-111-6/+6
|
* 3049 - clearer message for some test failuresKartik K. Agaram2016-06-111-8/+18
|
* 3048 - bugfix: checking 'merge' instructionsKartik K. Agaram2016-06-111-1/+21
|
* 3047 - fix another hole in refcount managementKartik K. Agaram2016-06-111-26/+56
| | | | | | This wouldn't have failed silently; I have that fig leaf. If someone had tried to copy an exclusive container containing an exclusive container containing an address Mu would have crashed on them.
* 3046Kartik K. Agaram2016-06-112-4/+4
|