LLVM from a Go Perspective
aykevl.nl
LLVM from a Go Perspective
1–10 of 15 posts
Re: LLVM from a Go Perspective
#2Regardless, compiling functions from a language you know to LLVM IR is a good way to learn how IR works. You can do this for C(++) with the clang --emit-llvm switch. In addition, many optimizers in LLVM are geared towards the IR patterns clang emits.
Re: LLVM from a Go Perspective
#3The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language.
Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close to C performance?
Re: LLVM from a Go Perspective
#4Hmm, not sure I agree that LLVM has little documentation. My experience using it has been pretty smooth. Regardless, compiling functions from a language you know to LLVM IR is a good way to learn how IR works. You can do this for C(++) with the clang --emit-llvm switch. In addition, many optimizers in LLVM are geared towards the IR patterns clang emits.
But if you start venturing down into the backend, a lot of gotchas are never documented anywhere, just somehow learned through osmosis from another backend author or looking up code snippets from another implemented backend.
Re: LLVM from a Go Perspective
#5> compiler libraries such as LLVM make this a whole lot easier, making it possible for a single person to develop a new language that is close to C in terms of performance. The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language. Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close…
https://extemporelang.github.io/docs/reference/types/
edit: link is more specific now
Re: LLVM from a Go Perspective
#6Hmm, not sure I agree that LLVM has little documentation. My experience using it has been pretty smooth. Regardless, compiling functions from a language you know to LLVM IR is a good way to learn how IR works. You can do this for C(++) with the clang --emit-llvm switch. In addition, many optimizers in LLVM are geared towards the IR patterns clang emits.
If you're working at the IR level, then there's usually pretty good documentation in terms of the doxygen and various pages explaining things. But if you start venturing down into the backend, a lot of gotchas are never documented anywhere, just somehow learned through osmosis from another backend author or looking up code snippets from another implemented backend.
Re: LLVM from a Go Perspective
#7> compiler libraries such as LLVM make this a whole lot easier, making it possible for a single person to develop a new language that is close to C in terms of performance. The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language. Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close…
Re: LLVM from a Go Perspective
#8> compiler libraries such as LLVM make this a whole lot easier, making it possible for a single person to develop a new language that is close to C in terms of performance. The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language. Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close…
As far as I know, it's mostly Andrew Kelley[1] working on Zig, though it seems to be growing quickly now!
Re: LLVM from a Go Perspective
#9> compiler libraries such as LLVM make this a whole lot easier, making it possible for a single person to develop a new language that is close to C in terms of performance. The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language. Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close…
Meet Wren: https://github.com/wren-lang/wren
Re: LLVM from a Go Perspective
#10> compiler libraries such as LLVM make this a whole lot easier, making it possible for a single person to develop a new language that is close to C in terms of performance. The TinyGo project is interesting, but it is not a new language developed by a single person as Go is not a new language. Wondering is there any such single person project implementing a compiler for a new language using LLVM and delivering close…