mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
798ace2e58
This code is based on the existing LLVM Go bindings project hosted at: https://github.com/go-llvm/llvm Note that all contributors to the gollvm project have agreed to relicense their changes under the LLVM license and submit them to the LLVM project. Differential Revision: http://reviews.llvm.org/D5684 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219976 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
//===- transforms_pmbuilder.go - Bindings for PassManagerBuilder ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines bindings for the PassManagerBuilder class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
package llvm
|
|
|
|
/*
|
|
#include "llvm-c/Transforms/PassManagerBuilder.h"
|
|
*/
|
|
import "C"
|
|
|
|
type PassManagerBuilder struct {
|
|
C C.LLVMPassManagerBuilderRef
|
|
}
|
|
|
|
func NewPassManagerBuilder() (pmb PassManagerBuilder) {
|
|
pmb.C = C.LLVMPassManagerBuilderCreate()
|
|
return
|
|
}
|
|
|
|
func (pmb PassManagerBuilder) SetOptLevel(level int) {
|
|
C.LLVMPassManagerBuilderSetOptLevel(pmb.C, C.uint(level))
|
|
}
|
|
|
|
func (pmb PassManagerBuilder) SetSizeLevel(level int) {
|
|
C.LLVMPassManagerBuilderSetSizeLevel(pmb.C, C.uint(level))
|
|
}
|
|
|
|
func (pmb PassManagerBuilder) Populate(pm PassManager) {
|
|
C.LLVMPassManagerBuilderPopulateModulePassManager(pmb.C, pm.C)
|
|
}
|
|
|
|
func (pmb PassManagerBuilder) PopulateFunc(pm PassManager) {
|
|
C.LLVMPassManagerBuilderPopulateFunctionPassManager(pmb.C, pm.C)
|
|
}
|
|
|
|
func (pmb PassManagerBuilder) Dispose() {
|
|
C.LLVMPassManagerBuilderDispose(pmb.C)
|
|
}
|