Files
llgo/ssa/stmt_builder.go

117 lines
2.8 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"
"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
2024-04-20 19:53:00 +08:00
fn Function
2024-04-18 15:03:10 +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.fn != blk.fn {
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
}
// 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:
2024-04-19 00:05:57 +08:00
b.impl.CreateAggregateRet(llvmValues(results))
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.fn != jmpb.fn {
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.fn != thenb.fn || b.fn != elseb.fn {
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
}
// -----------------------------------------------------------------------------