mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
9bdbe943ce
Signed-off-by: deadprogram <ron@hybridgroup.com>
179 lines
5.2 KiB
Go
179 lines
5.2 KiB
Go
package transform
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"go/token"
|
|
"os"
|
|
|
|
"github.com/tinygo-org/tinygo/compileopts"
|
|
"github.com/tinygo-org/tinygo/compiler/ircheck"
|
|
"github.com/tinygo-org/tinygo/compiler/llvmutil"
|
|
"tinygo.org/x/go-llvm"
|
|
)
|
|
|
|
// OptimizePackage runs optimization passes over the LLVM module for the given
|
|
// Go package.
|
|
func OptimizePackage(mod llvm.Module, config *compileopts.Config) {
|
|
_, speedLevel, _ := config.OptLevel()
|
|
|
|
// Run TinyGo-specific optimization passes.
|
|
if speedLevel > 0 {
|
|
OptimizeMaps(mod)
|
|
}
|
|
}
|
|
|
|
// Optimize runs a number of optimization and transformation passes over the
|
|
// given module. Some passes are specific to TinyGo, others are generic LLVM
|
|
// passes.
|
|
//
|
|
// Please note that some optimizations are not optional, thus Optimize must
|
|
// always be run before emitting machine code.
|
|
func Optimize(mod llvm.Module, config *compileopts.Config) []error {
|
|
optLevel, speedLevel, _ := config.OptLevel()
|
|
|
|
// Make sure these functions are kept in tact during TinyGo transformation passes.
|
|
for _, name := range functionsUsedInTransforms {
|
|
fn := mod.NamedFunction(name)
|
|
if fn.IsNil() {
|
|
panic(fmt.Errorf("missing core function %q", name))
|
|
}
|
|
fn.SetLinkage(llvm.ExternalLinkage)
|
|
}
|
|
|
|
// run a check of all of our code
|
|
if config.VerifyIR() {
|
|
errs := ircheck.Module(mod)
|
|
if errs != nil {
|
|
return errs
|
|
}
|
|
}
|
|
|
|
if speedLevel > 0 {
|
|
// Run some preparatory passes for the Go optimizer.
|
|
po := llvm.NewPassBuilderOptions()
|
|
defer po.Dispose()
|
|
optPasses := "globaldce,globalopt,ipsccp,instcombine<no-verify-fixpoint>,adce,function-attrs"
|
|
if llvmutil.Version() < 18 {
|
|
// LLVM 17 doesn't have the no-verify-fixpoint flag.
|
|
optPasses = "globaldce,globalopt,ipsccp,instcombine,adce,function-attrs"
|
|
}
|
|
err := mod.RunPasses(optPasses, llvm.TargetMachine{}, po)
|
|
if err != nil {
|
|
return []error{fmt.Errorf("could not build pass pipeline: %w", err)}
|
|
}
|
|
|
|
// Run TinyGo-specific optimization passes.
|
|
OptimizeStringToBytes(mod)
|
|
OptimizeReflectImplements(mod)
|
|
maxStackSize := config.MaxStackAlloc()
|
|
OptimizeAllocs(mod, nil, maxStackSize, nil)
|
|
err = LowerInterfaces(mod, config)
|
|
if err != nil {
|
|
return []error{err}
|
|
}
|
|
|
|
errs := LowerInterrupts(mod)
|
|
if len(errs) > 0 {
|
|
return errs
|
|
}
|
|
|
|
// After interfaces are lowered, there are many more opportunities for
|
|
// interprocedural optimizations. To get them to work, function
|
|
// attributes have to be updated first.
|
|
err = mod.RunPasses(optPasses, llvm.TargetMachine{}, po)
|
|
if err != nil {
|
|
return []error{fmt.Errorf("could not build pass pipeline: %w", err)}
|
|
}
|
|
|
|
// Run TinyGo-specific interprocedural optimizations.
|
|
OptimizeAllocs(mod, config.Options.PrintAllocs, maxStackSize, func(pos token.Position, msg string) {
|
|
if pos.Filename != "" {
|
|
fmt.Fprintf(os.Stderr, "%s:%d:%d: %s\n", pos.Filename, pos.Line, pos.Column, msg)
|
|
} else {
|
|
fmt.Fprintln(os.Stderr, msg) // No prefix!
|
|
}
|
|
})
|
|
OptimizeStringToBytes(mod)
|
|
OptimizeStringEqual(mod)
|
|
|
|
} else {
|
|
// Must be run at any optimization level.
|
|
err := LowerInterfaces(mod, config)
|
|
if err != nil {
|
|
return []error{err}
|
|
}
|
|
errs := LowerInterrupts(mod)
|
|
if len(errs) > 0 {
|
|
return errs
|
|
}
|
|
|
|
// Clean up some leftover symbols of the previous transformations.
|
|
po := llvm.NewPassBuilderOptions()
|
|
defer po.Dispose()
|
|
err = mod.RunPasses("globaldce", llvm.TargetMachine{}, po)
|
|
if err != nil {
|
|
return []error{fmt.Errorf("could not build pass pipeline: %w", err)}
|
|
}
|
|
}
|
|
|
|
if config.Scheduler() == "none" {
|
|
// Check for any goroutine starts.
|
|
if start := mod.NamedFunction("internal/task.start"); !start.IsNil() && len(getUses(start)) > 0 {
|
|
errs := []error{}
|
|
for _, call := range getUses(start) {
|
|
errs = append(errs, errorAt(call, "attempted to start a goroutine without a scheduler"))
|
|
}
|
|
return errs
|
|
}
|
|
}
|
|
|
|
if config.VerifyIR() {
|
|
if errs := ircheck.Module(mod); errs != nil {
|
|
return errs
|
|
}
|
|
}
|
|
if err := llvm.VerifyModule(mod, llvm.PrintMessageAction); err != nil {
|
|
return []error{errors.New("optimizations caused a verification failure")}
|
|
}
|
|
|
|
// After TinyGo-specific transforms have finished, undo exporting these functions.
|
|
for _, name := range functionsUsedInTransforms {
|
|
fn := mod.NamedFunction(name)
|
|
if fn.IsNil() || fn.IsDeclaration() {
|
|
continue
|
|
}
|
|
fn.SetLinkage(llvm.InternalLinkage)
|
|
}
|
|
|
|
// Run the ThinLTO pre-link passes, meant to be run on each individual
|
|
// module. This saves compilation time compared to "default<#>" and is meant
|
|
// to better match the optimization passes that are happening during
|
|
// ThinLTO.
|
|
po := llvm.NewPassBuilderOptions()
|
|
defer po.Dispose()
|
|
passes := fmt.Sprintf("thinlto-pre-link<%s>", optLevel)
|
|
err := mod.RunPasses(passes, llvm.TargetMachine{}, po)
|
|
if err != nil {
|
|
return []error{fmt.Errorf("could not build pass pipeline: %w", err)}
|
|
}
|
|
|
|
hasGCPass := MakeGCStackSlots(mod)
|
|
if hasGCPass {
|
|
if err := llvm.VerifyModule(mod, llvm.PrintMessageAction); err != nil {
|
|
return []error{errors.New("GC pass caused a verification failure")}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// functionsUsedInTransform is a list of function symbols that may be used
|
|
// during TinyGo optimization passes so they have to be marked as external
|
|
// linkage until all TinyGo passes have finished.
|
|
var functionsUsedInTransforms = []string{
|
|
"runtime.alloc",
|
|
"runtime.free",
|
|
"runtime.nilPanic",
|
|
}
|