Files
llgo/cl/compile.go

328 lines
7.3 KiB
Go
Raw Normal View History

2023-12-10 11:24:08 +08:00
/*
2024-04-20 15:58:34 +08:00
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
2023-12-10 11:24:08 +08:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cl
2024-04-20 15:58:34 +08:00
import (
2024-04-20 17:31:49 +08:00
"fmt"
2024-04-21 16:04:05 +08:00
"log"
2024-04-21 17:54:51 +08:00
"os"
2024-04-20 15:58:34 +08:00
"sort"
llssa "github.com/goplus/llgo/ssa"
"golang.org/x/tools/go/ssa"
)
2024-04-21 16:04:05 +08:00
// -----------------------------------------------------------------------------
type dbgFlags = int
const (
DbgFlagInstruction dbgFlags = 1 << iota
2024-04-21 17:54:51 +08:00
DbgFlagGoSSA
2024-04-21 16:04:05 +08:00
2024-04-21 17:54:51 +08:00
DbgFlagAll = DbgFlagInstruction | DbgFlagGoSSA
2024-04-21 16:04:05 +08:00
)
var (
debugInstr bool
2024-04-21 17:54:51 +08:00
debugGoSSA bool
2024-04-21 16:04:05 +08:00
)
// SetDebug sets debug flags.
func SetDebug(dbgFlags dbgFlags) {
debugInstr = (dbgFlags & DbgFlagInstruction) != 0
2024-04-21 17:54:51 +08:00
debugGoSSA = (dbgFlags & DbgFlagGoSSA) != 0
}
// -----------------------------------------------------------------------------
const (
fnNormal = iota
fnHasVArg
fnUnsafeInit
)
func funcKind(vfn ssa.Value) int {
if fn, ok := vfn.(*ssa.Function); ok {
n := len(fn.Params)
if n == 0 {
if fn.Name() == "init" && fn.Pkg.Pkg.Path() == "unsafe" {
return fnUnsafeInit
}
} else {
last := fn.Params[n-1]
if last.Name() == llssa.NameValist {
return fnHasVArg
}
}
}
return fnNormal
2024-04-20 15:58:34 +08:00
}
2024-04-20 17:31:49 +08:00
// -----------------------------------------------------------------------------
type instrAndValue interface {
ssa.Instruction
ssa.Value
}
2024-04-20 15:58:34 +08:00
type context struct {
2024-04-20 23:15:10 +08:00
prog llssa.Program
pkg llssa.Package
fn llssa.Function
2024-04-21 17:54:51 +08:00
goPkg *ssa.Package
2024-04-20 23:15:10 +08:00
bvals map[ssa.Value]llssa.Expr // block values
2024-04-21 15:12:57 +08:00
inits []func()
2024-04-20 23:15:10 +08:00
}
func (p *context) compileType(pkg llssa.Package, member *ssa.Type) {
panic("todo")
2024-04-20 15:58:34 +08:00
}
// Global variable.
2024-04-21 15:12:57 +08:00
func (p *context) compileGlobal(pkg llssa.Package, gbl *ssa.Global) {
2024-04-21 16:04:05 +08:00
name, typ := gbl.Name(), gbl.Type()
if debugInstr {
log.Println("==> NewVar", name, typ)
}
g := pkg.NewVar(name, typ)
2024-04-21 00:22:39 +08:00
g.Init(p.prog.Null(g.Type))
2024-04-20 15:58:34 +08:00
}
2024-04-21 15:12:57 +08:00
func (p *context) compileFunc(pkg llssa.Package, f *ssa.Function) {
2024-04-21 16:04:05 +08:00
name := f.Name()
if debugInstr {
log.Println("==> NewFunc", name)
}
fn := pkg.NewFunc(name, f.Signature)
2024-04-21 15:12:57 +08:00
p.inits = append(p.inits, func() {
p.fn = fn
defer func() {
p.fn = nil
}()
nblk := len(f.Blocks)
if nblk == 0 { // external function
return
}
2024-04-21 17:54:51 +08:00
if debugGoSSA {
f.WriteTo(os.Stderr)
}
2024-04-21 16:04:05 +08:00
if debugInstr {
log.Println("==> FuncBody", name)
}
2024-04-21 15:12:57 +08:00
fn.MakeBlocks(nblk)
b := fn.NewBuilder()
for _, block := range f.Blocks {
p.compileBlock(b, block)
}
})
2024-04-20 17:31:49 +08:00
}
2024-04-20 15:58:34 +08:00
2024-04-20 22:05:45 +08:00
func (p *context) compileBlock(b llssa.Builder, block *ssa.BasicBlock) llssa.BasicBlock {
ret := p.fn.Block(block.Index)
b.SetBlock(ret)
2024-04-20 23:15:10 +08:00
p.bvals = make(map[ssa.Value]llssa.Expr)
2024-04-20 17:31:49 +08:00
for _, instr := range block.Instrs {
p.compileInstr(b, instr)
2024-04-20 15:58:34 +08:00
}
2024-04-20 22:05:45 +08:00
return ret
2024-04-20 15:58:34 +08:00
}
2024-04-20 22:16:28 +08:00
func (p *context) compileInstrAndValue(b llssa.Builder, iv instrAndValue) (ret llssa.Expr) {
2024-04-20 23:15:10 +08:00
if v, ok := p.bvals[iv]; ok {
2024-04-20 22:16:28 +08:00
return v
}
2024-04-20 17:31:49 +08:00
switch v := iv.(type) {
2024-04-20 23:15:10 +08:00
case *ssa.Call:
2024-04-21 16:04:05 +08:00
call := v.Call
2024-04-21 17:54:51 +08:00
kind := funcKind(call.Value)
if kind == fnUnsafeInit {
return
}
if debugGoSSA {
log.Println(">>> Call", call.Value, call.Args)
}
2024-04-21 16:04:05 +08:00
fn := p.compileValue(b, call.Value)
2024-04-21 17:54:51 +08:00
args := p.compileValues(b, call.Args, kind)
2024-04-21 16:04:05 +08:00
ret = b.Call(fn, args...)
2024-04-20 23:15:10 +08:00
case *ssa.BinOp:
x := p.compileValue(b, v.X)
y := p.compileValue(b, v.Y)
ret = b.BinOp(v.Op, x, y)
2024-04-20 17:31:49 +08:00
case *ssa.UnOp:
x := p.compileValue(b, v.X)
2024-04-20 22:16:28 +08:00
ret = b.UnOp(v.Op, x)
2024-04-21 15:12:57 +08:00
case *ssa.IndexAddr:
x := p.compileValue(b, v.X)
idx := p.compileValue(b, v.Index)
ret = b.IndexAddr(x, idx)
case *ssa.Alloc:
t := v.Type()
ret = b.Alloc(p.prog.Type(t), v.Heap)
2024-04-20 22:16:28 +08:00
default:
panic(fmt.Sprintf("compileInstrAndValue: unknown instr - %T\n", iv))
2024-04-20 17:31:49 +08:00
}
2024-04-20 23:15:10 +08:00
p.bvals[iv] = ret
2024-04-20 22:16:28 +08:00
return ret
2023-12-10 13:43:44 +08:00
}
2024-04-20 17:31:49 +08:00
func (p *context) compileInstr(b llssa.Builder, instr ssa.Instruction) {
if iv, ok := instr.(instrAndValue); ok {
p.compileInstrAndValue(b, iv)
return
}
switch v := instr.(type) {
2024-04-20 22:05:45 +08:00
case *ssa.Store:
ptr := p.compileValue(b, v.Addr)
val := p.compileValue(b, v.Val)
b.Store(ptr, val)
case *ssa.Jump:
fn := p.fn
succs := v.Block().Succs
jmpb := fn.Block(succs[0].Index)
b.Jump(jmpb)
case *ssa.Return:
var results []llssa.Expr
if n := len(v.Results); n > 0 {
results = make([]llssa.Expr, n)
for i, r := range v.Results {
results[i] = p.compileValue(b, r)
}
}
b.Return(results...)
2024-04-20 17:31:49 +08:00
case *ssa.If:
2024-04-20 22:05:45 +08:00
fn := p.fn
cond := p.compileValue(b, v.Cond)
succs := v.Block().Succs
thenb := fn.Block(succs[0].Index)
elseb := fn.Block(succs[1].Index)
b.If(cond, thenb, elseb)
default:
panic(fmt.Sprintf("compileInstr: unknown instr - %T\n", instr))
2024-04-20 17:31:49 +08:00
}
2023-12-10 13:43:44 +08:00
}
2024-04-20 22:16:28 +08:00
func (p *context) compileValue(b llssa.Builder, v ssa.Value) llssa.Expr {
2024-04-20 22:05:45 +08:00
if iv, ok := v.(instrAndValue); ok {
2024-04-20 22:16:28 +08:00
return p.compileInstrAndValue(b, iv)
}
switch v := v.(type) {
2024-04-20 23:15:10 +08:00
case *ssa.Parameter:
fn := v.Parent()
for idx, param := range fn.Params {
if param == v {
return p.fn.Param(idx)
}
}
case *ssa.Function:
2024-04-21 17:54:51 +08:00
if v.Pkg != p.goPkg {
panic("todo")
}
2024-04-21 15:12:57 +08:00
fn := p.pkg.FuncOf(v.Name())
2024-04-20 23:15:10 +08:00
return fn.Expr
2024-04-20 22:16:28 +08:00
case *ssa.Global:
2024-04-21 17:54:51 +08:00
if v.Pkg != p.goPkg {
panic("todo")
}
2024-04-21 15:12:57 +08:00
g := p.pkg.VarOf(v.Name())
2024-04-20 22:16:28 +08:00
return g.Expr
case *ssa.Const:
2024-04-21 15:12:57 +08:00
t := v.Type()
return b.Const(v.Value, p.prog.Type(t))
2024-04-20 17:31:49 +08:00
}
2024-04-20 23:15:10 +08:00
panic(fmt.Sprintf("compileValue: unknown value - %T\n", v))
}
2024-04-21 17:54:51 +08:00
func (p *context) compileVArg(ret []llssa.Expr, b llssa.Builder, v ssa.Value) []llssa.Expr {
_ = b
switch v := v.(type) {
case *ssa.Const:
if v.Value == nil {
return ret
}
}
panic("todo")
}
func (p *context) compileValues(b llssa.Builder, vals []ssa.Value, hasVArg int) []llssa.Expr {
n := len(vals) - hasVArg
ret := make([]llssa.Expr, n)
for i := 0; i < n; i++ {
ret[i] = p.compileValue(b, vals[i])
}
if hasVArg > 0 {
ret = p.compileVArg(ret, b, vals[n])
2024-04-20 23:15:10 +08:00
}
return ret
2023-12-10 13:43:44 +08:00
}
2024-04-20 17:31:49 +08:00
// -----------------------------------------------------------------------------
2023-12-10 13:43:44 +08:00
2024-04-21 16:04:05 +08:00
type Config struct {
}
2024-04-20 17:31:49 +08:00
// NewPackage compiles a Go package to LLVM IR package.
func NewPackage(prog llssa.Program, pkg *ssa.Package, conf *Config) (ret llssa.Package, err error) {
2023-12-10 15:34:42 +08:00
type namedMember struct {
name string
val ssa.Member
}
// Sort by position, so that the order of the functions in the IR matches
// the order of functions in the source file. This is useful for testing,
// for example.
var members []*namedMember
for name, v := range pkg.Members {
members = append(members, &namedMember{name, v})
}
sort.Slice(members, func(i, j int) bool {
iPos := members[i].val.Pos()
jPos := members[j].val.Pos()
return iPos < jPos
})
2024-04-20 17:31:49 +08:00
pkgTypes := pkg.Pkg
ret = prog.NewPackage(pkgTypes.Name(), pkgTypes.Path())
ctx := &context{
2024-04-21 17:54:51 +08:00
prog: prog,
pkg: ret,
goPkg: pkg,
2024-04-20 17:31:49 +08:00
}
2023-12-10 15:34:42 +08:00
for _, m := range members {
member := m.val
switch member := member.(type) {
case *ssa.Function:
if member.TypeParams() != nil {
// Do not try to build generic (non-instantiated) functions.
continue
}
2024-04-20 22:05:45 +08:00
ctx.compileFunc(ret, member)
2023-12-10 15:34:42 +08:00
case *ssa.Type:
2024-04-20 17:31:49 +08:00
ctx.compileType(ret, member)
2023-12-10 15:34:42 +08:00
case *ssa.Global:
2024-04-20 17:31:49 +08:00
ctx.compileGlobal(ret, member)
2023-12-10 15:34:42 +08:00
}
}
2024-04-21 15:12:57 +08:00
for _, ini := range ctx.inits {
ini()
}
2023-12-11 00:37:09 +08:00
return
}
2024-04-20 17:31:49 +08:00
// -----------------------------------------------------------------------------