2015-03-03 13:38:14 -08:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package ssa
|
|
|
|
|
|
[dev.ssa] cmd/compile: enhance command line option processing for SSA
The -d compiler flag can also specify ssa phase and flag,
for example -d=ssa/generic_cse/time,ssa/generic_cse/stats
Spaces in the phase names can be specified with an
underscore. Flags currently parsed (not necessarily
recognized by the phases yet) are:
on, off, mem, time, debug, stats, and test
On, off and time are handled in the harness,
debug, stats, and test are interpreted by the phase itself.
The pass is now attached to the Func being compiled, and a
new method logStats(key, ...value) on *Func to encourage a
semi-standardized format for that output. Output fields
are separated by tabs to ease digestion by awk and
spreadsheets. For example,
if f.pass.stats > 0 {
f.logStat("CSE REWRITES", rewrites)
}
Change-Id: I16db2b5af64c50ca9a47efeb51d961147a903abc
Reviewed-on: https://go-review.googlesource.com/19885
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Todd Neal <todd@tneal.org>
2016-02-25 13:10:51 -05:00
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"math"
|
|
|
|
|
)
|
2015-06-25 23:13:57 -05:00
|
|
|
|
2015-03-03 13:38:14 -08:00
|
|
|
// A Func represents a Go func declaration (or function literal) and
|
|
|
|
|
// its body. This package compiles each Func independently.
|
|
|
|
|
type Func struct {
|
2015-07-28 10:56:39 -07:00
|
|
|
Config *Config // architecture information
|
[dev.ssa] cmd/compile: enhance command line option processing for SSA
The -d compiler flag can also specify ssa phase and flag,
for example -d=ssa/generic_cse/time,ssa/generic_cse/stats
Spaces in the phase names can be specified with an
underscore. Flags currently parsed (not necessarily
recognized by the phases yet) are:
on, off, mem, time, debug, stats, and test
On, off and time are handled in the harness,
debug, stats, and test are interpreted by the phase itself.
The pass is now attached to the Func being compiled, and a
new method logStats(key, ...value) on *Func to encourage a
semi-standardized format for that output. Output fields
are separated by tabs to ease digestion by awk and
spreadsheets. For example,
if f.pass.stats > 0 {
f.logStat("CSE REWRITES", rewrites)
}
Change-Id: I16db2b5af64c50ca9a47efeb51d961147a903abc
Reviewed-on: https://go-review.googlesource.com/19885
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Todd Neal <todd@tneal.org>
2016-02-25 13:10:51 -05:00
|
|
|
pass *pass // current pass information (name, options, etc.)
|
2015-07-28 10:56:39 -07:00
|
|
|
Name string // e.g. bytes·Compare
|
|
|
|
|
Type Type // type signature of the function.
|
|
|
|
|
StaticData interface{} // associated static data, untouched by the ssa package
|
|
|
|
|
Blocks []*Block // unordered set of all basic blocks (note: not indexable by ID)
|
|
|
|
|
Entry *Block // the entry basic block
|
|
|
|
|
bid idAlloc // block ID allocator
|
|
|
|
|
vid idAlloc // value ID allocator
|
2015-03-03 13:38:14 -08:00
|
|
|
|
2015-08-03 12:33:03 -07:00
|
|
|
scheduled bool // Values in Blocks are in final order
|
|
|
|
|
|
2015-03-03 13:38:14 -08:00
|
|
|
// when register allocation is done, maps value ids to locations
|
|
|
|
|
RegAlloc []Location
|
2015-10-22 14:22:38 -07:00
|
|
|
|
2015-11-02 08:10:26 -08:00
|
|
|
// map from LocalSlot to set of Values that we want to store in that slot.
|
|
|
|
|
NamedValues map[LocalSlot][]*Value
|
2015-10-22 14:22:38 -07:00
|
|
|
// Names is a copy of NamedValues.Keys. We keep a separate list
|
|
|
|
|
// of keys to make iteration order deterministic.
|
2015-11-02 08:10:26 -08:00
|
|
|
Names []LocalSlot
|
2016-01-28 13:46:30 -08:00
|
|
|
|
|
|
|
|
freeValues *Value // free Values linked by argstorage[0]. All other fields except ID are 0/nil.
|
2016-01-28 15:54:45 -08:00
|
|
|
freeBlocks *Block // free Blocks linked by succstorage[0]. All other fields except ID are 0/nil.
|
2015-03-03 13:38:14 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NumBlocks returns an integer larger than the id of any Block in the Func.
|
|
|
|
|
func (f *Func) NumBlocks() int {
|
|
|
|
|
return f.bid.num()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NumValues returns an integer larger than the id of any Value in the Func.
|
|
|
|
|
func (f *Func) NumValues() int {
|
|
|
|
|
return f.vid.num()
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-28 22:19:46 -06:00
|
|
|
// newSparseSet returns a sparse set that can store at least up to n integers.
|
|
|
|
|
func (f *Func) newSparseSet(n int) *sparseSet {
|
2016-02-02 06:35:34 -05:00
|
|
|
for i, scr := range f.Config.scrSparse {
|
2016-01-28 22:19:46 -06:00
|
|
|
if scr != nil && scr.cap() >= n {
|
2016-02-02 06:35:34 -05:00
|
|
|
f.Config.scrSparse[i] = nil
|
2016-01-28 22:19:46 -06:00
|
|
|
scr.clear()
|
|
|
|
|
return scr
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newSparseSet(n)
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-02 06:35:34 -05:00
|
|
|
// retSparseSet returns a sparse set to the config's cache of sparse sets to be reused by f.newSparseSet.
|
2016-01-28 22:19:46 -06:00
|
|
|
func (f *Func) retSparseSet(ss *sparseSet) {
|
2016-02-02 06:35:34 -05:00
|
|
|
for i, scr := range f.Config.scrSparse {
|
2016-01-28 22:19:46 -06:00
|
|
|
if scr == nil {
|
2016-02-02 06:35:34 -05:00
|
|
|
f.Config.scrSparse[i] = ss
|
2016-01-28 22:19:46 -06:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-02 06:35:34 -05:00
|
|
|
f.Config.scrSparse = append(f.Config.scrSparse, ss)
|
2016-01-28 22:19:46 -06:00
|
|
|
}
|
|
|
|
|
|
2016-01-28 13:46:30 -08:00
|
|
|
// newValue allocates a new Value with the given fields and places it at the end of b.Values.
|
|
|
|
|
func (f *Func) newValue(op Op, t Type, b *Block, line int32) *Value {
|
|
|
|
|
var v *Value
|
|
|
|
|
if f.freeValues != nil {
|
|
|
|
|
v = f.freeValues
|
|
|
|
|
f.freeValues = v.argstorage[0]
|
|
|
|
|
v.argstorage[0] = nil
|
|
|
|
|
} else {
|
|
|
|
|
ID := f.vid.get()
|
|
|
|
|
if int(ID) < len(f.Config.values) {
|
|
|
|
|
v = &f.Config.values[ID]
|
|
|
|
|
} else {
|
|
|
|
|
v = &Value{ID: ID}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
v.Op = op
|
|
|
|
|
v.Type = t
|
|
|
|
|
v.Block = b
|
|
|
|
|
v.Line = line
|
|
|
|
|
b.Values = append(b.Values, v)
|
|
|
|
|
return v
|
2015-06-25 23:13:57 -05:00
|
|
|
}
|
|
|
|
|
|
[dev.ssa] cmd/compile: enhance command line option processing for SSA
The -d compiler flag can also specify ssa phase and flag,
for example -d=ssa/generic_cse/time,ssa/generic_cse/stats
Spaces in the phase names can be specified with an
underscore. Flags currently parsed (not necessarily
recognized by the phases yet) are:
on, off, mem, time, debug, stats, and test
On, off and time are handled in the harness,
debug, stats, and test are interpreted by the phase itself.
The pass is now attached to the Func being compiled, and a
new method logStats(key, ...value) on *Func to encourage a
semi-standardized format for that output. Output fields
are separated by tabs to ease digestion by awk and
spreadsheets. For example,
if f.pass.stats > 0 {
f.logStat("CSE REWRITES", rewrites)
}
Change-Id: I16db2b5af64c50ca9a47efeb51d961147a903abc
Reviewed-on: https://go-review.googlesource.com/19885
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Todd Neal <todd@tneal.org>
2016-02-25 13:10:51 -05:00
|
|
|
// logPassStat writes a string key and int value as a warning in a
|
|
|
|
|
// tab-separated format easily handled by spreadsheets or awk.
|
|
|
|
|
// file names, lines, and function names are included to provide enough (?)
|
|
|
|
|
// context to allow item-by-item comparisons across runs.
|
|
|
|
|
// For example:
|
|
|
|
|
// awk 'BEGIN {FS="\t"} $3~/TIME/{sum+=$4} END{print "t(ns)=",sum}' t.log
|
|
|
|
|
func (f *Func) logStat(key string, args ...interface{}) {
|
|
|
|
|
value := ""
|
|
|
|
|
for _, a := range args {
|
|
|
|
|
value += fmt.Sprintf("\t%v", a)
|
|
|
|
|
}
|
|
|
|
|
f.Config.Warnl(int(f.Entry.Line), "\t%s\t%s%s\t%s", f.pass.name, key, value, f.Name)
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-28 13:46:30 -08:00
|
|
|
// freeValue frees a value. It must no longer be referenced.
|
|
|
|
|
func (f *Func) freeValue(v *Value) {
|
2016-01-28 15:54:45 -08:00
|
|
|
if v.Block == nil {
|
2016-01-28 13:46:30 -08:00
|
|
|
f.Fatalf("trying to free an already freed value")
|
2015-06-25 23:13:57 -05:00
|
|
|
}
|
2016-01-28 13:46:30 -08:00
|
|
|
// Clear everything but ID (which we reuse).
|
|
|
|
|
id := v.ID
|
|
|
|
|
*v = Value{}
|
|
|
|
|
v.ID = id
|
|
|
|
|
v.argstorage[0] = f.freeValues
|
|
|
|
|
f.freeValues = v
|
2015-06-25 23:13:57 -05:00
|
|
|
}
|
|
|
|
|
|
2016-01-28 13:46:30 -08:00
|
|
|
// newBlock allocates a new Block of the given kind and places it at the end of f.Blocks.
|
2015-03-03 13:38:14 -08:00
|
|
|
func (f *Func) NewBlock(kind BlockKind) *Block {
|
2016-01-28 13:46:30 -08:00
|
|
|
var b *Block
|
|
|
|
|
if f.freeBlocks != nil {
|
|
|
|
|
b = f.freeBlocks
|
2016-01-28 15:54:45 -08:00
|
|
|
f.freeBlocks = b.succstorage[0]
|
|
|
|
|
b.succstorage[0] = nil
|
2016-01-28 13:46:30 -08:00
|
|
|
} else {
|
|
|
|
|
ID := f.bid.get()
|
|
|
|
|
if int(ID) < len(f.Config.blocks) {
|
|
|
|
|
b = &f.Config.blocks[ID]
|
|
|
|
|
} else {
|
|
|
|
|
b = &Block{ID: ID}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-25 23:13:57 -05:00
|
|
|
b.Kind = kind
|
|
|
|
|
b.Func = f
|
2016-01-28 15:54:45 -08:00
|
|
|
b.Preds = b.predstorage[:0]
|
|
|
|
|
b.Succs = b.succstorage[:0]
|
|
|
|
|
b.Values = b.valstorage[:0]
|
2015-03-03 13:38:14 -08:00
|
|
|
f.Blocks = append(f.Blocks, b)
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-28 13:46:30 -08:00
|
|
|
func (f *Func) freeBlock(b *Block) {
|
2016-01-28 15:54:45 -08:00
|
|
|
if b.Func == nil {
|
|
|
|
|
f.Fatalf("trying to free an already freed block")
|
|
|
|
|
}
|
2016-01-28 13:46:30 -08:00
|
|
|
// Clear everything but ID (which we reuse).
|
|
|
|
|
id := b.ID
|
|
|
|
|
*b = Block{}
|
|
|
|
|
b.ID = id
|
2016-01-28 15:54:45 -08:00
|
|
|
b.succstorage[0] = f.freeBlocks
|
2016-01-28 13:46:30 -08:00
|
|
|
f.freeBlocks = b
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-11 21:29:25 -07:00
|
|
|
// NewValue0 returns a new value in the block with no arguments and zero aux values.
|
|
|
|
|
func (b *Block) NewValue0(line int32, op Op, t Type) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
2015-03-03 13:38:14 -08:00
|
|
|
v.Args = v.argstorage[:0]
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-11 21:29:25 -07:00
|
|
|
// NewValue returns a new value in the block with no arguments and an auxint value.
|
|
|
|
|
func (b *Block) NewValue0I(line int32, op Op, t Type, auxint int64) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:0]
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue returns a new value in the block with no arguments and an aux value.
|
|
|
|
|
func (b *Block) NewValue0A(line int32, op Op, t Type, aux interface{}) *Value {
|
|
|
|
|
if _, ok := aux.(int64); ok {
|
|
|
|
|
// Disallow int64 aux values. They should be in the auxint field instead.
|
|
|
|
|
// Maybe we want to allow this at some point, but for now we disallow it
|
|
|
|
|
// to prevent errors like using NewValue1A instead of NewValue1I.
|
2015-06-24 14:03:39 -07:00
|
|
|
b.Fatalf("aux field has int64 type op=%s type=%s aux=%v", op, t, aux)
|
2015-06-11 21:29:25 -07:00
|
|
|
}
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
|
|
|
|
v.Aux = aux
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:0]
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue returns a new value in the block with no arguments and both an auxint and aux values.
|
|
|
|
|
func (b *Block) NewValue0IA(line int32, op Op, t Type, auxint int64, aux interface{}) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
|
|
|
|
v.Aux = aux
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:0]
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue1 returns a new value in the block with one argument and zero aux values.
|
|
|
|
|
func (b *Block) NewValue1(line int32, op Op, t Type, arg *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
2015-04-15 15:51:25 -07:00
|
|
|
v.Args = v.argstorage[:1]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg
|
2015-04-15 15:51:25 -07:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-11 21:29:25 -07:00
|
|
|
// NewValue1I returns a new value in the block with one argument and an auxint value.
|
|
|
|
|
func (b *Block) NewValue1I(line int32, op Op, t Type, auxint int64, arg *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:1]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg
|
2015-06-11 21:29:25 -07:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue1A returns a new value in the block with one argument and an aux value.
|
|
|
|
|
func (b *Block) NewValue1A(line int32, op Op, t Type, aux interface{}, arg *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
|
|
|
|
v.Aux = aux
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:1]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg
|
2015-06-11 21:29:25 -07:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue1IA returns a new value in the block with one argument and both an auxint and aux values.
|
|
|
|
|
func (b *Block) NewValue1IA(line int32, op Op, t Type, auxint int64, aux interface{}, arg *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
|
|
|
|
v.Aux = aux
|
2015-06-11 21:29:25 -07:00
|
|
|
v.Args = v.argstorage[:1]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg
|
2015-06-11 21:29:25 -07:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewValue2 returns a new value in the block with two arguments and zero aux values.
|
|
|
|
|
func (b *Block) NewValue2(line int32, op Op, t Type, arg0, arg1 *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
2015-04-15 15:51:25 -07:00
|
|
|
v.Args = v.argstorage[:2]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg0
|
|
|
|
|
v.argstorage[1] = arg1
|
2015-04-15 15:51:25 -07:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-27 15:45:20 +01:00
|
|
|
// NewValue2I returns a new value in the block with two arguments and an auxint value.
|
2016-01-28 13:46:30 -08:00
|
|
|
func (b *Block) NewValue2I(line int32, op Op, t Type, auxint int64, arg0, arg1 *Value) *Value {
|
|
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
2015-06-27 15:45:20 +01:00
|
|
|
v.Args = v.argstorage[:2]
|
2016-01-28 13:46:30 -08:00
|
|
|
v.argstorage[0] = arg0
|
|
|
|
|
v.argstorage[1] = arg1
|
2015-06-27 15:45:20 +01:00
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-11 21:29:25 -07:00
|
|
|
// NewValue3 returns a new value in the block with three arguments and zero aux values.
|
|
|
|
|
func (b *Block) NewValue3(line int32, op Op, t Type, arg0, arg1, arg2 *Value) *Value {
|
2016-01-28 13:46:30 -08:00
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = 0
|
2015-04-15 15:51:25 -07:00
|
|
|
v.Args = []*Value{arg0, arg1, arg2}
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-14 21:47:20 -07:00
|
|
|
// NewValue3I returns a new value in the block with three arguments and an auxint value.
|
2016-01-28 13:46:30 -08:00
|
|
|
func (b *Block) NewValue3I(line int32, op Op, t Type, auxint int64, arg0, arg1, arg2 *Value) *Value {
|
|
|
|
|
v := b.Func.newValue(op, t, b, line)
|
|
|
|
|
v.AuxInt = auxint
|
2015-08-14 21:47:20 -07:00
|
|
|
v.Args = []*Value{arg0, arg1, arg2}
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-03 13:38:14 -08:00
|
|
|
// ConstInt returns an int constant representing its argument.
|
2015-09-08 16:52:25 -07:00
|
|
|
func (f *Func) ConstBool(line int32, t Type, c bool) *Value {
|
|
|
|
|
// TODO: cache?
|
|
|
|
|
i := int64(0)
|
|
|
|
|
if c {
|
|
|
|
|
i = 1
|
|
|
|
|
}
|
|
|
|
|
return f.Entry.NewValue0I(line, OpConstBool, t, i)
|
|
|
|
|
}
|
2015-07-28 14:19:20 -07:00
|
|
|
func (f *Func) ConstInt8(line int32, t Type, c int8) *Value {
|
2015-03-03 13:38:14 -08:00
|
|
|
// TODO: cache?
|
2015-07-28 14:19:20 -07:00
|
|
|
return f.Entry.NewValue0I(line, OpConst8, t, int64(c))
|
|
|
|
|
}
|
|
|
|
|
func (f *Func) ConstInt16(line int32, t Type, c int16) *Value {
|
|
|
|
|
// TODO: cache?
|
|
|
|
|
return f.Entry.NewValue0I(line, OpConst16, t, int64(c))
|
|
|
|
|
}
|
|
|
|
|
func (f *Func) ConstInt32(line int32, t Type, c int32) *Value {
|
|
|
|
|
// TODO: cache?
|
|
|
|
|
return f.Entry.NewValue0I(line, OpConst32, t, int64(c))
|
|
|
|
|
}
|
|
|
|
|
func (f *Func) ConstInt64(line int32, t Type, c int64) *Value {
|
|
|
|
|
// TODO: cache?
|
|
|
|
|
return f.Entry.NewValue0I(line, OpConst64, t, c)
|
|
|
|
|
}
|
2015-08-12 16:38:11 -04:00
|
|
|
func (f *Func) ConstFloat32(line int32, t Type, c float64) *Value {
|
|
|
|
|
// TODO: cache?
|
2015-09-04 06:33:56 -05:00
|
|
|
return f.Entry.NewValue0I(line, OpConst32F, t, int64(math.Float64bits(c)))
|
2015-08-12 16:38:11 -04:00
|
|
|
}
|
|
|
|
|
func (f *Func) ConstFloat64(line int32, t Type, c float64) *Value {
|
|
|
|
|
// TODO: cache?
|
2015-09-04 06:33:56 -05:00
|
|
|
return f.Entry.NewValue0I(line, OpConst64F, t, int64(math.Float64bits(c)))
|
2015-08-12 16:38:11 -04:00
|
|
|
}
|
2015-06-12 11:01:13 -07:00
|
|
|
|
2016-01-13 11:14:57 -08:00
|
|
|
func (f *Func) Logf(msg string, args ...interface{}) { f.Config.Logf(msg, args...) }
|
2016-01-29 14:44:15 -05:00
|
|
|
func (f *Func) Log() bool { return f.Config.Log() }
|
2016-01-13 11:14:57 -08:00
|
|
|
func (f *Func) Fatalf(msg string, args ...interface{}) { f.Config.Fatalf(f.Entry.Line, msg, args...) }
|
|
|
|
|
func (f *Func) Unimplementedf(msg string, args ...interface{}) {
|
|
|
|
|
f.Config.Unimplementedf(f.Entry.Line, msg, args...)
|
|
|
|
|
}
|
2016-01-28 13:46:30 -08:00
|
|
|
|
|
|
|
|
func (f *Func) Free() {
|
|
|
|
|
// Clear values.
|
|
|
|
|
n := f.vid.num()
|
|
|
|
|
if n > len(f.Config.values) {
|
|
|
|
|
n = len(f.Config.values)
|
|
|
|
|
}
|
|
|
|
|
for i := 1; i < n; i++ {
|
|
|
|
|
f.Config.values[i] = Value{}
|
|
|
|
|
f.Config.values[i].ID = ID(i)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clear blocks.
|
|
|
|
|
n = f.bid.num()
|
|
|
|
|
if n > len(f.Config.blocks) {
|
|
|
|
|
n = len(f.Config.blocks)
|
|
|
|
|
}
|
|
|
|
|
for i := 1; i < n; i++ {
|
|
|
|
|
f.Config.blocks[i] = Block{}
|
|
|
|
|
f.Config.blocks[i].ID = ID(i)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unregister from config.
|
|
|
|
|
if f.Config.curFunc != f {
|
|
|
|
|
f.Fatalf("free of function which isn't the last one allocated")
|
|
|
|
|
}
|
|
|
|
|
f.Config.curFunc = nil
|
|
|
|
|
*f = Func{} // just in case
|
|
|
|
|
}
|