about summary refs log tree commit diff stats
path: root/mu.arc.t
Commit message (Collapse)AuthorAgeFilesLines
* 382 - varargs 'interpolate'Kartik K. Agaram2014-11-291-1/+20
| | | | Brilliant, now I didn't need any low-level changes.
* 380Kartik K. Agaram2014-11-291-0/+21
| | | | | A test attempted earlier that now passes from free. Might as well keep it.
* 379Kartik K. Agaram2014-11-291-0/+48
|
* 378Kartik K. Agaram2014-11-281-0/+20
|
* 376 - similarly simplify record helpersKartik K. Agaram2014-11-281-0/+18
|
* 375 - reorg testsKartik K. Agaram2014-11-281-239/+189
|
* 374 - simplify array helpersKartik K. Agaram2014-11-281-1/+18
|
* 372 - size check for arraysKartik K. Agaram2014-11-281-0/+5
|
* 371 - bugfix: don't read destination when writing arrayKartik K. Agaram2014-11-281-1/+11
| | | | | Finally we've gotten to one of the top-level bugs uncovered by 'interpolate'.
* 370 - unit tests for 'setm'Kartik K. Agaram2014-11-281-0/+43
|
* 368 - replace 'sz' with our new 'sizeof'Kartik K. Agaram2014-11-281-0/+14
|
* 367 - start of unit tests for 'm'Kartik K. Agaram2014-11-281-0/+15
|
* 365 - new primitives let us generalize 'addr'Kartik K. Agaram2014-11-281-0/+3
|
* 363Kartik K. Agaram2014-11-281-0/+15
|
* 362Kartik K. Agaram2014-11-281-0/+3
| | | | Gaining confidence..
* 361 - *now* 'sizeof' on array pointersKartik K. Agaram2014-11-281-0/+3
|
* 360 - back up, let's create a new 'deref' helperKartik K. Agaram2014-11-281-0/+8
|
* 359 - 'sizeof' supports 'deref' pointersKartik K. Agaram2014-11-281-0/+2
| | | | Just non-arrays for now.
* 358 - start of 'sizeof' support for arraysKartik K. Agaram2014-11-281-0/+12
|
* 357Kartik K. Agaram2014-11-281-0/+10
|
* 356 - high time 'sizeof' supported operandsKartik K. Agaram2014-11-281-0/+9
|
* 355Kartik K. Agaram2014-11-281-0/+11
|
* 354 - stepping back, test-driving 'addr' helper againKartik K. Agaram2014-11-281-0/+27
|
* 353 - found lots of holes in array supportKartik K. Agaram2014-11-271-34/+34
| | | | | I've uncovered a few while enhancing 'interpolate', but I'll wait to fix them all before I commit the enhancements.
* 352 - 'interpolate' as a poor man's printfKartik K. Agaram2014-11-271-2/+101
|
* 351 - break/loop from nested blocksKartik K. Agaram2014-11-271-0/+44
|
* 349 - jump to labelKartik K. Agaram2014-11-271-0/+21
|
* 348Kartik K. Agaram2014-11-271-5/+5
|
* 347 - allow 'arg' channel to be rewoundKartik K. Agaram2014-11-271-0/+17
|
* 346Kartik K. Agaram2014-11-271-7/+7
|
* 345Kartik K. Agaram2014-11-271-39/+0
|
* 344 - about to give up on rewrite rulesKartik K. Agaram2014-11-271-0/+18
| | | | | | | | | | | | | | | | | I wanted to come up with some way to rewrite 'def-clause foo' to 'after foo/more-clauses', something like: rewrite def-clause [ (fn-name string-address) <- arg (label-name string-address) <- strcat (fn-name string-address deref) ("/more-clauses" literal) (body expr) <- arg reply `(after ,label-name ,body) ] But the quasiquote is still a nested expression that doesn't fit our model well. Still an open question how to do template interpolation in mu.
* 343 - experiment: rewrite rulesKartik K. Agaram2014-11-271-0/+21
| | | | We'll worry later about implementing them in mu.
* 342 - strcatKartik K. Agaram2014-11-271-1/+29
|
* 341 - standardize traces againKartik K. Agaram2014-11-271-0/+49
|
* 340Kartik K. Agaram2014-11-261-2/+2
|
* 339 - string literals for convenienceKartik K. Agaram2014-11-261-0/+18
| | | | | | I'm cheating a little when it comes to strings, making use of Racket primitives. But in principle it seems like a local transform to implement even in machine code.
* 338 - starting to work on string primitivesKartik K. Agaram2014-11-261-0/+12
|
* 337 - rename 'continue' instructions to 'loop'Kartik K. Agaram2014-11-261-18/+18
|
* 335 - tangle at labels scoped to functionsKartik K. Agaram2014-11-261-0/+30
|
* 334Kartik K. Agaram2014-11-261-0/+4
|
* 333Kartik K. Agaram2014-11-261-1/+2
|
* 323 - function clausesKartik K. Agaram2014-11-241-0/+27
| | | | | | | | | | | You can now call 'def' on a function name multiple times. Each time the instructions you provide are *prepended* to any existing instructions. One important use for this is when you define a new type and need to support it in all your generic methods. Now you can keep all those extensions in one place, near the definition of the type. To redefine a function, use 'def!'.
* 322Kartik K. Agaram2014-11-241-12/+12
|
* 321 - before/after can now come anywhereKartik K. Agaram2014-11-241-0/+17
| | | | | | This pollutes our traces with all 'system software'. Too much trouble to keep it out; just lump it for now. Who knows, might even be useful. Most of the time convert* labels are easy to grep out when debugging.
* 319 - ack, forgot to handle blocks when tanglingKartik K. Agaram2014-11-241-0/+15
| | | | | | | | | | | | Will the 'lightweight tools' really be all that useable if we encourage people to layer them one atop another and track precisely what inputs each can accept? Something to keep an eye on. In the meanwhile, we have a new (but very unrealistic) example demonstrating the tangling directives. There's still a big constraint on ordering: before/after clauses have to come before functions that need them.
* 316Kartik K. Agaram2014-11-241-7/+7
|
* 315 - handle before/after uniformly like defKartik K. Agaram2014-11-241-47/+67
|
* 314 - better syntax for functionsKartik K. Agaram2014-11-241-393/+527
|
* 313 - tangling primitivesKartik K. Agaram2014-11-241-0/+185
|