当前位置: 首页 > 工具软件 > TinyGo > 使用案例 >

tinygo编译的原理

魏楷
2023-12-01

说明

tinygo本身是个针对微控制器的编译器+工具,可以build、flush。

tinygo依赖自己的go-llvm

tinygo的实现中依赖的自己的go-llvm,其实就是llvm的一个go的binding,最终依赖系统的llvm

通过go-llvm/llvm实现了一个基本的编译器

tinygo基于go的编译器,通过go-llvm/llvm实现了一个基本的编译器,所以支持的语法、特性主要和go类似

例如 channel的发送:

compiler/channel.go

37 	c.createRuntimeCall("chanSend", []llvm.Value{coroutine, ch, valueAllocaCast, valueSize}, "")
38
39	// End the lifetime of the alloca.

src/runtime/chan.go

44 // chanSend sends a single value over the channel. If this operation can
45 // complete immediately (there is a goroutine waiting for a value), it sends the
46 // value and re-activates both goroutines. If not, it sets itself as waiting on
47 // a value.
48 func chanSend(sender *coroutine, ch *channel, value unsafe.Pointer, size uintptr) {

转载于:https://my.oschina.net/chuqq/blog/3067975

 类似资料: