about summary refs log tree commit diff stats
path: root/apps/desugar.subx
Commit message (Collapse)AuthorAgeFilesLines
* .Kartik Agaram2019-08-161-2/+2
|
* sketch of a plan to implement indirect modeKartik Agaram2019-08-161-2/+60
|
* desugar: code-generate *regKartik Agaram2019-08-161-1/+244
|
* plan for supporting indirect modeKartik Agaram2019-08-161-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 Agaram2019-08-161-4/+4
|
* get desugar working on the commandlineKartik Agaram2019-08-131-6/+54
|
* better error message when get abortsKartik Agaram2019-08-121-1/+2
|
* table-based register conversionKartik Agaram2019-08-011-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 Agaram2019-08-011-26/+28
| | | | | First step to cleaning up `desugar-register`: extract the common '%' to register literals.
* desugar: code-generate %regKartik Agaram2019-07-311-25/+25
| | | | | We're no longer just emitting the register code. We emit all arguments with appropriate metadata.
* .Kartik Agaram2019-07-311-1/+8
|
* desugar: clean up top-level `convert`Kartik Agaram2019-07-311-42/+82
| | | | | | | | | 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 desugarKartik Agaram2019-07-281-0/+378