Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 5676 | Kartik Agaram | 2019-09-19 | 14 | -410/+0 |
| | |||||
* | 5675 - move helpers from subx-common into layers | Kartik Agaram | 2019-09-19 | 25 | -2267/+1684 |
| | | | | | | | | | | | | | | | | This undoes 5672 in favor of a new plan: Layers 000 - 099 are for running without syntax sugar. We use them for building syntax-sugar passes. Layers 100 and up are for running with all syntax sugar. The layers are arranged in approximate order so more phases rely on earlier layers than later ones. I plan to not use intermediate syntax sugar (just sigils without calls, or sigils and calls without braces) anywhere except in the specific passes implementing them. | ||||
* | 5673 - standardize a few knobs | Kartik Agaram | 2019-09-19 | 19 | -30/+10 |
| | |||||
* | 5672 - move hex out of apps | Kartik Agaram | 2019-09-19 | 15 | -1487/+17 |
| | |||||
* | 5669 | Kartik Agaram | 2019-09-19 | 13 | -0/+0 |
| | |||||
* | 5668 - start reorg to permit syntax sugar in layers | Kartik Agaram | 2019-09-19 | 19 | -35/+21 |
| | | | | | | | | | | | | | | | | | | | Right now we always build the library before any apps. Apps are where our syntax sugar translators (sigils, calls, braces) live. So we can't use sugar in the standard library. New idea: move all code for SubX phases into the top-level. Perhaps we should also just build a single file rather than pipeline stages. But for now we'll build each phase by building up to some specific layer. This will simplify test_apps and move lots of one-off logic to a more standard form in test_layers. I'm also going to reorg existing layers so that we introduce each phase at a point where it mostly only gets the helpers it needs. This commit itself is just cleaning up some common strings. Using explicit names for them streamlines binaries a bit. | ||||
* | 5667 | Kartik Agaram | 2019-09-19 | 1 | -2/+0 |
| | |||||
* | 5666 - start of sugar for structured control flow | Kartik Agaram | 2019-09-19 | 2 | -0/+337 |
| | |||||
* | 5664 | Kartik Agaram | 2019-09-18 | 1 | -1/+0 |
| | |||||
* | 5663 | Kartik Agaram | 2019-09-18 | 1 | -4/+63 |
| | | | | | | Snapshot of mulisp before we put it on the back-burner. It's going to take too long, and we're better off building out the lower layers that make it more convenient to create. | ||||
* | 5661 | Kartik Agaram | 2019-09-15 | 14 | -17/+17 |
| | |||||
* | 5647 - experimental support for swapping OS | Kartik Agaram | 2019-09-11 | 12 | -0/+0 |
| | |||||
* | 5646 | Kartik Agaram | 2019-09-11 | 1 | -1/+1 |
| | |||||
* | 5644 - plan data structures for mulisp | Kartik Agaram | 2019-09-08 | 1 | -7/+42 |
| | |||||
* | 5637 | Kartik Agaram | 2019-09-07 | 2 | -13/+9 |
| | |||||
* | 5634 - add read/eval/print phases | Kartik Agaram | 2019-09-07 | 1 | -16/+78 |
| | |||||
* | 5633 - start of a toy lisp interpreter | Kartik Agaram | 2019-09-07 | 1 | -0/+76 |
| | |||||
* | 5631 - syntax for calls starting to work! | Kartik Agaram | 2019-09-06 | 2 | -13/+554 |
| | | | | Now added to CI. | ||||
* | 5630 | Kartik Agaram | 2019-09-06 | 12 | -5/+57 |
| | |||||
* | 5627 | Kartik Agaram | 2019-09-06 | 1 | -41/+41 |
| | |||||
* | 5626 | Kartik Agaram | 2019-09-06 | 1 | -285/+285 |
| | |||||
* | 5625 | Kartik Agaram | 2019-09-05 | 1 | -5/+5 |
| | |||||
* | 5624 | Kartik Agaram | 2019-09-05 | 1 | -1/+69 |
| | | | | Fix a bug in call.subx's tokenizer. | ||||
* | 5623 | Kartik Agaram | 2019-09-04 | 12 | -428/+0 |
| | |||||
* | 5622 | Kartik Agaram | 2019-09-04 | 1 | -0/+1 |
| | |||||
* | 5621 | Kartik Agaram | 2019-09-04 | 1 | -8/+160 |
| | | | | Done with calls.subx's variant of next-word. | ||||
* | 5620 | Kartik Agaram | 2019-09-04 | 3 | -31/+634 |
| | | | | | | Further flesh out next-word variant for calls.subx. All the code is sketched out, and baseline tests pass. No tests yet for new functionality compared to sigils.subx. | ||||
* | 5616 | Kartik Agaram | 2019-09-04 | 12 | -327/+0 |
| | |||||
* | 5615 - long strings in self-hosted translator | Kartik Agaram | 2019-09-04 | 2 | -2/+27 |
| | | | | | | My SubX translator phases assume lines are never longer than 512 bytes. However, dquotes.subx was generating lines longer than that by blowing up string literals by 4-5x. | ||||
* | 5613 | Kartik Agaram | 2019-09-03 | 3 | -17/+200 |
| | | | | | Translating common bits from sigils.subx expression-aware variant of next-word to use sigils in calls.subx. | ||||
* | 5612 | Kartik Agaram | 2019-09-02 | 1 | -1/+1 |
| | |||||
* | 5611 | Kartik Agaram | 2019-09-02 | 1 | -3/+3 |
| | |||||
* | 5607 - start of notation for function calls | Kartik Agaram | 2019-09-02 | 1 | -0/+216 |
| | |||||
* | 5608 - write int to stream | Kartik Agaram | 2019-09-02 | 11 | -0/+0 |
| | |||||
* | 5607 | Kartik Agaram | 2019-09-01 | 10 | -25/+26 |
| | |||||
* | 5606 | Kartik Agaram | 2019-09-01 | 1 | -0/+2 |
| | |||||
* | 5605 - sigils: support *disp32 | Kartik Agaram | 2019-09-01 | 2 | -4/+241 |
| | |||||
* | 5604 | Kartik Agaram | 2019-09-01 | 2 | -7/+7 |
| | |||||
* | 5603 | Kartik Agaram | 2019-09-01 | 2 | -12/+12 |
| | |||||
* | 5602 | Kartik Agaram | 2019-09-01 | 2 | -66/+75 |
| | |||||
* | 5601 | Kartik Agaram | 2019-08-31 | 1 | -68/+68 |
| | |||||
* | 5600 | Kartik Agaram | 2019-08-31 | 21 | -91/+111 |
| | |||||
* | 5599 - sigils: support metadata in %reg and *reg | Kartik Agaram | 2019-08-31 | 2 | -3/+176 |
| | | | | | We already support metadata after *(...) No plans to support metadata _inside_ *(...) | ||||
* | 5598 | Kartik Agaram | 2019-08-31 | 1 | -2/+1 |
| | |||||
* | 5596 | Kartik Agaram | 2019-08-31 | 2 | -8/+12 |
| | |||||
* | 5595 - support ebp and esp in sigils | Kartik Agaram | 2019-08-31 | 2 | -0/+173 |
| | | | | The x86 instruction set carves out exceptions for these registers. | ||||
* | 5594 - rename 'desugar' to 'sigils' | Kartik Agaram | 2019-08-31 | 2 | -15/+16 |
| | | | | There's going to be multiple forms of syntax sugar going forward. | ||||
* | 5592 - switch register names to lowercase | Kartik Agaram | 2019-08-26 | 16 | -7413/+7413 |
| | |||||
* | 5591 | Kartik Agaram | 2019-08-26 | 11 | -0/+0 |
| | |||||
* | 5590 | Kartik Agaram | 2019-08-25 | 3 | -3/+3 |
| |