May 2015
Intermediate to advanced
296 pages
5h 10m
English
The llgo compiler is the LLVM-based frontend for Go written in Go language only. Using this frontend, we can generate the LLVM assembly code from a program written in Go.
You need to download the llgo binaries or build llgo from the source code and add the binaries in the PATH file location as configured.
Do the following steps:
llgo. Create test.go:|$ cat test.go |package main |import "fmt" |func main() { | fmt.Println("Test Message") |}
llgo to get the LLVM assembly:$llgo -dump test.go ; ModuleID = 'main' target datalayout = "e-p:64:64:64..." target triple = "x86_64-unknown-linux" %0 = type { ...
Read now
Unlock full access