Files
llgo/ssa/stmt_builder.go

151 lines
3.5 KiB
Go
Raw Normal View History

2024-04-18 01:18:41 +08:00
/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* 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 ssa
import (
2024-04-21 15:12:57 +08:00
"bytes"
"fmt"
"go/types"
2024-04-21 15:12:57 +08:00
"log"
2024-04-18 01:18:41 +08:00
"github.com/goplus/llvm"
)
2024-04-18 15:03:10 +08:00
// -----------------------------------------------------------------------------
2024-04-20 19:53:00 +08:00
type aBasicBlock struct {
2024-04-18 01:18:41 +08:00
impl llvm.BasicBlock
2024-04-20 19:53:00 +08:00
fn Function
idx int
}
// BasicBlock represents a basic block in a function.
type BasicBlock = *aBasicBlock
// Parent returns the function to which the basic block belongs.
func (p BasicBlock) Parent() Function {
return p.fn
}
// Index returns the index of the basic block in the parent function.
func (p BasicBlock) Index() int {
return p.idx
2024-04-18 01:18:41 +08:00
}
2024-04-20 19:53:00 +08:00
2024-04-18 15:03:10 +08:00
// -----------------------------------------------------------------------------
2024-04-18 01:18:41 +08:00
2024-04-18 15:03:10 +08:00
type aBuilder struct {
impl llvm.Builder
Func Function
2024-04-29 13:59:06 +08:00
Prog Program
2024-04-18 01:18:41 +08:00
}
2024-04-18 15:03:10 +08:00
2024-04-20 19:53:00 +08:00
// Builder represents a builder for creating instructions in a function.
2024-04-18 15:03:10 +08:00
type Builder = *aBuilder
2024-04-20 19:53:00 +08:00
// SetBlock sets the current block to the specified basic block.
func (b Builder) SetBlock(blk BasicBlock) Builder {
if b.Func != blk.fn {
2024-04-20 19:53:00 +08:00
panic("mismatched function")
}
2024-04-21 15:12:57 +08:00
if debugInstr {
log.Printf("Block _llgo_%v:\n", blk.idx)
}
2024-04-20 19:53:00 +08:00
b.impl.SetInsertPointAtEnd(blk.impl)
return b
}
// Panic emits a panic instruction.
func (b Builder) Panic(v Expr) {
if debugInstr {
log.Printf("Panic %v\n", v.impl)
}
pkg := b.Func.Pkg
b.Call(pkg.rtFunc("TracePanic"), v)
b.impl.CreateUnreachable()
}
2024-04-29 18:33:02 +08:00
// Unreachable emits an unreachable instruction.
func (b Builder) Unreachable() {
b.impl.CreateUnreachable()
}
2024-04-20 19:53:00 +08:00
// Return emits a return instruction.
func (b Builder) Return(results ...Expr) {
2024-04-21 15:12:57 +08:00
if debugInstr {
var b bytes.Buffer
fmt.Fprint(&b, "Return ")
for i, arg := range results {
if i > 0 {
fmt.Fprint(&b, ", ")
}
fmt.Fprint(&b, arg.impl)
}
log.Println(b.String())
}
2024-04-18 15:03:10 +08:00
switch n := len(results); n {
case 0:
b.impl.CreateRetVoid()
case 1:
b.impl.CreateRet(results[0].impl)
default:
tret := b.Func.raw.Type.(*types.Signature).Results()
2024-05-05 18:20:51 +08:00
b.impl.CreateAggregateRet(llvmParams(0, results, tret, b))
2024-04-18 15:03:10 +08:00
}
2024-04-20 19:53:00 +08:00
}
2024-04-20 22:05:45 +08:00
// Jump emits a jump instruction.
func (b Builder) Jump(jmpb BasicBlock) {
if b.Func != jmpb.fn {
2024-04-20 22:05:45 +08:00
panic("mismatched function")
}
2024-04-21 15:12:57 +08:00
if debugInstr {
log.Printf("Jump _llgo_%v\n", jmpb.idx)
}
2024-04-20 22:05:45 +08:00
b.impl.CreateBr(jmpb.impl)
}
2024-04-20 19:53:00 +08:00
// If emits an if instruction.
func (b Builder) If(cond Expr, thenb, elseb BasicBlock) {
if b.Func != thenb.fn || b.Func != elseb.fn {
2024-04-20 19:53:00 +08:00
panic("mismatched function")
}
2024-04-21 15:12:57 +08:00
if debugInstr {
log.Printf("If %v, _llgo_%v, _llgo_%v\n", cond.impl, thenb.idx, elseb.idx)
}
2024-04-20 19:53:00 +08:00
b.impl.CreateCondBr(cond.impl, thenb.impl, elseb.impl)
2024-04-18 15:03:10 +08:00
}
2024-05-01 07:26:51 +08:00
// The MapUpdate instruction updates the association of Map[Key] to
// Value.
//
// Pos() returns the ast.KeyValueExpr.Colon or ast.IndexExpr.Lbrack,
// if explicit in the source.
//
// Example printed form:
//
// t0[t1] = t2
func (b Builder) MapUpdate(m, k, v Expr) {
if debugInstr {
log.Printf("MapUpdate %v[%v] = %v\n", m.impl, k.impl, v.impl)
}
2024-05-01 07:37:38 +08:00
// TODO(xsw)
// panic("todo")
2024-05-01 07:26:51 +08:00
}
2024-04-18 15:03:10 +08:00
// -----------------------------------------------------------------------------