aykevl / tinygo
- воскресенье, 19 августа 2018 г. в 00:15:47
Go
Go compiler for small devices, based on LLVM.
We never expected Go to be an embedded language and so it's got serious problems [...].
-- Rob Pike, GopherCon 2014 Opening Keynote
TinyGo is a project to bring Go to microcontrollers and small systems with a single processor core. It is similar to emgo but a major difference is that I want to keep the Go memory model (which implies garbage collection of some sort). Another difference is that TinyGo uses LLVM internally instead of emitting C, which hopefully leads to smaller and more efficient code and certainly leads to more flexibility.
My original reasoning was: if Python can run on microcontrollers, then certainly Go should be able to and run on even lower level micros.
Example program (blinky):
import "machine"
func main() {
led := machine.GPIO{machine.LED}
led.Configure(machine.GPIOConfig{Mode: machine.GPIO_OUTPUT})
for {
led.Low()
runtime.Sleep(runtime.Millisecond * 1000)
led.High()
runtime.Sleep(runtime.Millisecond * 1000)
}
}
Currently supported features:
Not yet supported:
Most targets that are supported by LLVM should be supported by this compiler. This means amd64 (where most of the testing happens), ARM, and Cortex-M microcontrollers.
The AVR platform (as used by the Arduino, for example) is also supported when support for it is enabled in LLVM. However, because it is a Harvard style architecture with different address spaces for code and data and because LLVM turns globals into const for you (moving them to PROGMEM) most real programs don't work unfortunately. This can be fixed but that can be difficult to do efficiently and hasn't been implemented yet.
The goal is to reduce code size (and increase performance) by performing all kinds of whole-program analysis passes. The official Go compiler doesn't do a whole lot of analysis (except for escape analysis) becauses it needs to be fast, but embedded programs are necessarily smaller so it becomes practical. And I think especially program size can be reduced by a large margin when actually trying to optimize for it.
Implemented analysis passes:
go
statements for blocking functions.This project is licensed under the BSD 3-clause license, just like the Go project itself.