about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 738Kartik K. Agaram2015-02-101-12/+19
|
* 737Kartik K. Agaram2015-02-101-31/+49
|
* 736Kartik K. Agaram2015-02-101-4/+4
|
* 735Kartik K. Agaram2015-02-101-1/+1
|
* 734Kartik K. Agaram2015-02-102-11/+25
|
* 733Kartik K. Agaram2015-02-101-19/+62
|
* 732Kartik K. Agaram2015-02-101-0/+2
|
* 731Kartik K. Agaram2015-02-102-4/+37
|
* 730 - first test for trace browserKartik K. Agaram2015-02-103-25/+94
| | | | | This was painless compared to the chessboard app. Still need to handle input, though. Fingers crossed..
* 729Kartik K. Agaram2015-02-101-8/+8
|
* 728 - move up/down and expand trace at cursorKartik K. Agaram2015-02-091-4/+40
| | | | | | | Expand isn't anywhere near working, but already I like how the browser returns to the commandline when exiting, without causing a mental context switch. Little details like moving the cursor to the bottom before quitting.
* 727 - start of a trace browserKartik K. Agaram2015-02-091-3/+44
| | | | We can now collapse trace items, and we have a rudimentary event loop.
* 726Kartik K. Agaram2015-02-091-2/+2
|
* 725 - now support cursor movementKartik K. Agaram2015-02-091-0/+8
| | | | This had been on hold for some time; dependencies are crutches.
* 724 - stop using charterm for printing textKartik K. Agaram2015-02-091-19/+12
| | | | | | | We'll keep it around for keyboard input now, for the nice scancode names. Ansi escape codes from http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x361.html
* 723 - now trace.mu works on correct tracesKartik K. Agaram2015-02-081-14/+16
|
* 722 - split at substring, and assorted helpersKartik K. Agaram2015-02-082-1/+120
|
* 721Kartik K. Agaram2015-02-081-6/+6
|
* 720 - substring matching and searchingKartik K. Agaram2015-02-082-5/+231
|
* 718 - disable raw memory warnings in testsKartik K. Agaram2015-02-085-8/+15
|
* 717Kartik K. Agaram2015-02-081-0/+1
|
* 716 - warn when writing to raw memoryKartik K. Agaram2015-02-081-0/+17
|
* 715 - support metadata in top-level namesKartik K. Agaram2015-02-081-1/+12
|
* 714Kartik K. Agaram2015-02-081-8/+11
| | | | Just forget about unicode for now.
* 713 - quick 'n' dirty trace parserKartik K. Agaram2015-02-082-1/+244
| | | | Doesn't quite work yet; I can't have spaces after labels.
* 712Kartik K. Agaram2015-02-072-0/+34
|
* 711 - extract method: string-copyKartik K. Agaram2015-02-072-25/+40
|
* 709Kartik K. Agaram2015-02-071-2/+0
|
* 708Kartik K. Agaram2015-02-054-13/+14
|
* 707Kartik K. Agaram2015-02-051-6/+6
|
* 706Kartik K. Agaram2015-02-042-0/+113
|
* 705 - clean up traces before we try to parse themKartik K. Agaram2015-02-032-36/+41
| | | | | | | | | | For now we want to parse two labels: 'run', identifying call stack, op and args 'mem', distinguishing reads and writes This should give us fodder for a few weeks, to build both a folding UI for individual statements and descending the call stack, and also a query engine that can figure out sources and sinks in the trace graph.
* 704Kartik K. Agaram2015-02-021-1/+1
|
* 703Kartik K. Agaram2015-02-021-0/+6
|
* 702Kartik K. Agaram2015-02-011-9/+6
|
* 701 - down arrow to navigate to next historyKartik K. Agaram2015-02-011-0/+35
|
* 700Kartik K. Agaram2015-02-011-27/+43
|
* 699 - yup, hack of 697 no longer neededKartik K. Agaram2015-02-011-6/+0
|
* 698 - give process-key its own scopeKartik K. Agaram2015-02-011-34/+34
| | | | | | | The relative global variables go into the outer lexical scope. Sharing local variables between functions yet again proven to be a bad idea.
* 696 - hacky solution, but I think <up> works nowKartik K. Agaram2015-02-011-5/+9
|
* 695 - another attempt to handle strings in historyKartik K. Agaram2015-02-012-15/+16
| | | | | | But now that we've added the keyboard parameter to process-keys, modifying it in a recursive call also clobbers it in the caller. All because of my weird, non-standard use of shared scope.
* 694Kartik K. Agaram2015-02-011-32/+0
|
* 693 - color-repl now uses keyboard/screen parametersKartik K. Agaram2015-02-012-36/+66
|
* 692Kartik K. Agaram2015-02-011-29/+0
|
* 691Kartik K. Agaram2015-02-012-113/+0
|
* 690 - convention: '$' commands for debugging onlyKartik K. Agaram2015-02-0113-208/+206
| | | | | | Swap printing generalized objects using arc's infrastructure to be the $-prefixed debug helper, while the erstwhile $print-key-to-host becomes the primitive print-character to host.
* 689Kartik K. Agaram2015-01-311-1/+3
| | | | Typo in a recent test.
* 688 - <up> for history kinda sorta worksKartik K. Agaram2015-01-312-5/+102
| | | | | | | | | | | | | | process-key is extracted to work on a given character, but its helpers for parsing strings and comments still read keys directly from keyboard. Still, this took long enough to get working that it's worth saving. Milestones: a) figuring out how to debug without dumping trace crap on the screen in cursor mode. b) realizing you can't assign directly to result in the up case. Have to let the recursive call do it. c) replacing continuations in 'process-key'.
* 687 - some helpers for debuggingKartik K. Agaram2015-01-311-1/+13
|
* 686 - too over-zealous with continuationsKartik K. Agaram2015-01-311-21/+15
| | | | | Took me all day to realize this, that recursive calls to process-key won't work as long as we call that next-key continuation.