Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | integration tests for desugaring direct mode | Kartik Agaram | 2019-08-24 | 2 | -0/+212 |
| | |||||
* | use the results of parsing in emit-indirect-mode | Kartik Agaram | 2019-08-24 | 2 | -60/+33 |
| | |||||
* | parsing *(reg) | Kartik Agaram | 2019-08-24 | 2 | -0/+121 |
| | |||||
* | build out all variants for skipping whitespace | Kartik Agaram | 2019-08-24 | 11 | -0/+0 |
| | | | | skip {whitespace, non-whitespace} x {from stream, from slice} | ||||
* | . | Kartik Agaram | 2019-08-23 | 1 | -0/+68 |
| | | | | This is pretty complex, but I may not need any more registers. | ||||
* | . | Kartik Agaram | 2019-08-23 | 2 | -4/+14 |
| | |||||
* | . | Kartik Agaram | 2019-08-23 | 2 | -4/+12 |
| | | | | | Some reorg as I realize I may have painted myself into a corner in this function. I have no registers left for the actual parsing. | ||||
* | parsing *reg | Kartik Agaram | 2019-08-23 | 2 | -2/+102 |
| | | | | Isn't used yet, but baby steps. | ||||
* | another error message | Kartik Agaram | 2019-08-23 | 2 | -1/+64 |
| | |||||
* | . | Kartik Agaram | 2019-08-23 | 1 | -3/+3 |
| | |||||
* | lexing complex expressions inside '*(...)' | Kartik Agaram | 2019-08-23 | 3 | -21/+442 |
| | |||||
* | couple of helpers for parsing expressions in parens | Kartik Agaram | 2019-08-22 | 2 | -0/+330 |
| | |||||
* | . | Kartik Agaram | 2019-08-16 | 1 | -2/+2 |
| | |||||
* | sketch of a plan to implement indirect mode | Kartik Agaram | 2019-08-16 | 2 | -2/+60 |
| | |||||
* | desugar: code-generate *reg | Kartik Agaram | 2019-08-16 | 2 | -1/+244 |
| | |||||
* | plan for supporting indirect mode | Kartik Agaram | 2019-08-16 | 2 | -22/+28 |
| | | | | | | | | | | | It may superficially seem like there's a simpler approach: - emit '3/mod' or '0/mod' depending on whether the character is '%' or '*' - increment the start of word-slice - look up the register and emit the appropriate /rm32 But that won't work for 1/mod or 2/mod. We're doing a little bit of upfront planning. | ||||
* | . | Kartik Agaram | 2019-08-16 | 1 | -4/+4 |
| | |||||
* | . | Kartik Agaram | 2019-08-16 | 1 | -1/+1 |
| | |||||
* | add desugar to CI | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | done implementing all variants of 'get' | Kartik Agaram | 2019-08-13 | 10 | -0/+0 |
| | |||||
* | done with get-or-stop | Kartik Agaram | 2019-08-13 | 10 | -0/+0 |
| | |||||
* | half-done testing get-or-stop | Kartik Agaram | 2019-08-13 | 10 | -0/+0 |
| | | | | | | Probably not needed for desugar; I'm just working through what we may replace the calls to 'get-slice' with if and when we decide to start focusing error messages and so writing tests for them. | ||||
* | standardize test input/output/error streams | Kartik Agaram | 2019-08-13 | 14 | -170/+0 |
| | |||||
* | . | Kartik Agaram | 2019-08-13 | 10 | -0/+0 |
| | |||||
* | get desugar working on the commandline | Kartik Agaram | 2019-08-13 | 3 | -7/+54 |
| | |||||
* | . | Kartik Agaram | 2019-08-13 | 11 | -0/+0 |
| | |||||
* | new variant: maybe-get-slice | Kartik Agaram | 2019-08-13 | 11 | -0/+0 |
| | |||||
* | new variant: maybe-get returns null on failure | Kartik Agaram | 2019-08-12 | 11 | -0/+0 |
| | |||||
* | better error message when get aborts | Kartik Agaram | 2019-08-12 | 13 | -9/+13 |
| | |||||
* | extract table functions into their own layer | Kartik Agaram | 2019-08-11 | 5 | -921/+0 |
| | |||||
* | table-based register conversion | Kartik Agaram | 2019-08-01 | 2 | -148/+176 |
| | | | | | | | Requires a change to the C++ translator: support string literals in all segments, not just the code segment. (The self-hosted translator already had this.) | ||||
* | . | Kartik Agaram | 2019-08-01 | 2 | -26/+28 |
| | | | | | First step to cleaning up `desugar-register`: extract the common '%' to register literals. | ||||
* | desugar: code-generate %reg | Kartik Agaram | 2019-07-31 | 2 | -25/+25 |
| | | | | | We're no longer just emitting the register code. We emit all arguments with appropriate metadata. | ||||
* | . | Kartik Agaram | 2019-07-31 | 1 | -1/+8 |
| | |||||
* | Merge branch 'master' into desugar | Kartik Agaram | 2019-07-31 | 10 | -11/+11 |
|\ | |||||
| * | 5499 | Kartik Agaram | 2019-07-31 | 10 | -11/+11 |
| | | |||||
* | | desugar: clean up top-level `convert` | Kartik Agaram | 2019-07-31 | 4 | -43/+84 |
| | | | | | | | | | | | | | | | | | | Model it on `dquotes` rather than `pack`, since it needs almost zero state across words. Manual testing: $ echo 'ab %eax' |subx run apps/desugar ab 0 | ||||
* | | Merge branch 'master' into desugar | Kartik Agaram | 2019-07-28 | 1 | -0/+378 |
|/ | |||||
* | 5485 - promote SubX to top-level | Kartik Agaram | 2019-07-27 | 22 | -0/+21254 |