top | item 22798624

Synthesizing Optimal 8051 Code

90 points| zdw | 6 years ago |lab.whitequark.org | reply

7 comments

order
[+] giovannibajo1|6 years ago|reply
Nice. It reminds me of how compilers generate the optimal sequence of ADD+MUL for a division by a constant; in that case, the algorithm is simpler and has been synthesized in closed form, so the compiler can simply implement the logic (it doesn't need to "bruteforce" its way to it).

This is for instance Go's implementation which is readable and well documented:

https://github.com/golang/go/blob/master/src/cmd/compile/int...

[+] sitkack|6 years ago|reply
Metalesson from whitequark is that they show us how we can be smart by rigorously applying existing wisdom. Esp by learning to use existing tools and taking advice from experts.

> My chosen approach (thanks to John Regehr for the suggestion) is to implement an interpreter for an abstract 8051 assembly representation in Racket and then use Rosette to translate assertions about the results of interpreting an arbitrary piece of code into a query for an SMT solver.

[+] gwern|6 years ago|reply
What speedup over the human-written routines does this achieve?
[+] dhash|6 years ago|reply
This looks like what CVC4's SyGuS component is useful for, especially since their optimization criteria is "smallest program"