Home | History | Annotate | Download | only in ssa

Lines Matching refs:Func

54 	Func *Func
89 func (e Edge) Block() *Block {
92 func (e Edge) Index() int {
105 func (b *Block) String() string {
110 func (b *Block) LongString() string {
133 func (b *Block) SetControl(v *Value) {
145 func (b *Block) AddEdgeTo(c *Block) {
150 b.Func.invalidateCFG()
156 func (b *Block) removePred(i int) {
166 b.Func.invalidateCFG()
172 func (b *Block) removeSucc(i int) {
182 b.Func.invalidateCFG()
185 func (b *Block) swapSuccessors() {
198 func (b *Block) Logf(msg string, args ...interface{}) { b.Func.Logf(msg, args...) }
199 func (b *Block) Log() bool { return b.Func.Log() }
200 func (b *Block) Fatalf(msg string, args ...interface{}) { b.Func.Fatalf(msg, args...) }