mirror of
https://github.com/golang/go
synced 2024-11-25 00:37:57 -07:00
[dev.ssa] cmd/compile: optimize phi ops
Redo how we keep track of forward references when building SSA. When the forward reference is resolved, update the Value node in place. Improve the phi elimination pass so it can simplify phis of phis. Give SSA package access to decoded line numbers. Fix line numbers for constant booleans. Change-Id: I3dc9896148d260be2f3dd14cbe5db639ec9fa6b7 Reviewed-on: https://go-review.googlesource.com/18674 Reviewed-by: David Chase <drchase@google.com> Run-TryBot: Keith Randall <khr@golang.org>
This commit is contained in:
parent
23d5810c8f
commit
b5c5efd5de
@ -139,11 +139,6 @@ func buildssa(fn *Node) *ssa.Func {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// We construct SSA using an algorithm similar to
|
|
||||||
// Brau, Buchwald, Hack, Leißa, Mallon, and Zwinkau
|
|
||||||
// http://pp.info.uni-karlsruhe.de/uploads/publikationen/braun13cc.pdf
|
|
||||||
// TODO: check this comment
|
|
||||||
|
|
||||||
// Allocate starting block
|
// Allocate starting block
|
||||||
s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
|
s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
|
||||||
|
|
||||||
@ -285,6 +280,9 @@ type state struct {
|
|||||||
// list of panic calls by function name and line number.
|
// list of panic calls by function name and line number.
|
||||||
// Used to deduplicate panic calls.
|
// Used to deduplicate panic calls.
|
||||||
panics map[funcLine]*ssa.Block
|
panics map[funcLine]*ssa.Block
|
||||||
|
|
||||||
|
// list of FwdRef values.
|
||||||
|
fwdRefs []*ssa.Value
|
||||||
}
|
}
|
||||||
|
|
||||||
type funcLine struct {
|
type funcLine struct {
|
||||||
@ -1327,7 +1325,14 @@ func (s *state) expr(n *Node) *ssa.Value {
|
|||||||
case CTSTR:
|
case CTSTR:
|
||||||
return s.entryNewValue0A(ssa.OpConstString, n.Type, n.Val().U)
|
return s.entryNewValue0A(ssa.OpConstString, n.Type, n.Val().U)
|
||||||
case CTBOOL:
|
case CTBOOL:
|
||||||
return s.constBool(n.Val().U.(bool))
|
v := s.constBool(n.Val().U.(bool))
|
||||||
|
// For some reason the frontend gets the line numbers of
|
||||||
|
// CTBOOL literals totally wrong. Fix it here by grabbing
|
||||||
|
// the line number of the enclosing AST node.
|
||||||
|
if len(s.line) >= 2 {
|
||||||
|
v.Line = s.line[len(s.line)-2]
|
||||||
|
}
|
||||||
|
return v
|
||||||
case CTNIL:
|
case CTNIL:
|
||||||
t := n.Type
|
t := n.Type
|
||||||
switch {
|
switch {
|
||||||
@ -3172,9 +3177,10 @@ func (s *state) checkgoto(from *Node, to *Node) {
|
|||||||
func (s *state) variable(name *Node, t ssa.Type) *ssa.Value {
|
func (s *state) variable(name *Node, t ssa.Type) *ssa.Value {
|
||||||
v := s.vars[name]
|
v := s.vars[name]
|
||||||
if v == nil {
|
if v == nil {
|
||||||
// TODO: get type? Take Sym as arg?
|
|
||||||
v = s.newValue0A(ssa.OpFwdRef, t, name)
|
v = s.newValue0A(ssa.OpFwdRef, t, name)
|
||||||
|
s.fwdRefs = append(s.fwdRefs, v)
|
||||||
s.vars[name] = v
|
s.vars[name] = v
|
||||||
|
s.addNamedValue(name, v)
|
||||||
}
|
}
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
@ -3184,40 +3190,38 @@ func (s *state) mem() *ssa.Value {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *state) linkForwardReferences() {
|
func (s *state) linkForwardReferences() {
|
||||||
// Build ssa graph. Each variable on its first use in a basic block
|
// Build SSA graph. Each variable on its first use in a basic block
|
||||||
// leaves a FwdRef in that block representing the incoming value
|
// leaves a FwdRef in that block representing the incoming value
|
||||||
// of that variable. This function links that ref up with possible definitions,
|
// of that variable. This function links that ref up with possible definitions,
|
||||||
// inserting Phi values as needed. This is essentially the algorithm
|
// inserting Phi values as needed. This is essentially the algorithm
|
||||||
// described by Brau, Buchwald, Hack, Leißa, Mallon, and Zwinkau:
|
// described by Braun, Buchwald, Hack, Leißa, Mallon, and Zwinkau:
|
||||||
// http://pp.info.uni-karlsruhe.de/uploads/publikationen/braun13cc.pdf
|
// http://pp.info.uni-karlsruhe.de/uploads/publikationen/braun13cc.pdf
|
||||||
for _, b := range s.f.Blocks {
|
// Differences:
|
||||||
for _, v := range b.Values {
|
// - We use FwdRef nodes to postpone phi building until the CFG is
|
||||||
if v.Op != ssa.OpFwdRef {
|
// completely built. That way we can avoid the notion of "sealed"
|
||||||
continue
|
// blocks.
|
||||||
}
|
// - Phi optimization is a separate pass (in ../ssa/phielim.go).
|
||||||
name := v.Aux.(*Node)
|
for len(s.fwdRefs) > 0 {
|
||||||
v.Op = ssa.OpCopy
|
v := s.fwdRefs[len(s.fwdRefs)-1]
|
||||||
v.Aux = nil
|
s.fwdRefs = s.fwdRefs[:len(s.fwdRefs)-1]
|
||||||
v.SetArgs1(s.lookupVarIncoming(b, v.Type, name))
|
s.resolveFwdRef(v)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// lookupVarIncoming finds the variable's value at the start of block b.
|
// resolveFwdRef modifies v to be the variable's value at the start of its block.
|
||||||
func (s *state) lookupVarIncoming(b *ssa.Block, t ssa.Type, name *Node) *ssa.Value {
|
// v must be a FwdRef op.
|
||||||
// TODO(khr): have lookupVarIncoming overwrite the fwdRef or copy it
|
func (s *state) resolveFwdRef(v *ssa.Value) {
|
||||||
// will be used in, instead of having the result used in a copy value.
|
b := v.Block
|
||||||
|
name := v.Aux.(*Node)
|
||||||
|
v.Aux = nil
|
||||||
if b == s.f.Entry {
|
if b == s.f.Entry {
|
||||||
if name == &memVar {
|
// Live variable at start of function.
|
||||||
return s.startmem
|
|
||||||
}
|
|
||||||
if canSSA(name) {
|
if canSSA(name) {
|
||||||
v := s.entryNewValue0A(ssa.OpArg, t, name)
|
v.Op = ssa.OpArg
|
||||||
// v starts with AuxInt == 0.
|
v.Aux = name
|
||||||
s.addNamedValue(name, v)
|
return
|
||||||
return v
|
|
||||||
}
|
}
|
||||||
// variable is live at the entry block. Load it.
|
// Not SSAable. Load it.
|
||||||
addr := s.decladdrs[name]
|
addr := s.decladdrs[name]
|
||||||
if addr == nil {
|
if addr == nil {
|
||||||
// TODO: closure args reach here.
|
// TODO: closure args reach here.
|
||||||
@ -3226,64 +3230,69 @@ func (s *state) lookupVarIncoming(b *ssa.Block, t ssa.Type, name *Node) *ssa.Val
|
|||||||
if _, ok := addr.Aux.(*ssa.ArgSymbol); !ok {
|
if _, ok := addr.Aux.(*ssa.ArgSymbol); !ok {
|
||||||
s.Fatalf("variable live at start of function %s is not an argument %s", b.Func.Name, name)
|
s.Fatalf("variable live at start of function %s is not an argument %s", b.Func.Name, name)
|
||||||
}
|
}
|
||||||
return s.entryNewValue2(ssa.OpLoad, t, addr, s.startmem)
|
v.Op = ssa.OpLoad
|
||||||
|
v.AddArgs(addr, s.startmem)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
var vals []*ssa.Value
|
if len(b.Preds) == 0 {
|
||||||
for _, p := range b.Preds {
|
|
||||||
vals = append(vals, s.lookupVarOutgoing(p, t, name))
|
|
||||||
}
|
|
||||||
if len(vals) == 0 {
|
|
||||||
// This block is dead; we have no predecessors and we're not the entry block.
|
// This block is dead; we have no predecessors and we're not the entry block.
|
||||||
// It doesn't matter what we use here as long as it is well-formed,
|
// It doesn't matter what we use here as long as it is well-formed.
|
||||||
// so use the default/zero value.
|
v.Op = ssa.OpUnknown
|
||||||
if name == &memVar {
|
return
|
||||||
return s.startmem
|
|
||||||
}
|
|
||||||
return s.zeroVal(name.Type)
|
|
||||||
}
|
}
|
||||||
v0 := vals[0]
|
// Find variable value on each predecessor.
|
||||||
for i := 1; i < len(vals); i++ {
|
var argstore [4]*ssa.Value
|
||||||
if vals[i] != v0 {
|
args := argstore[:0]
|
||||||
// need a phi value
|
for _, p := range b.Preds {
|
||||||
v := b.NewValue0(s.peekLine(), ssa.OpPhi, t)
|
args = append(args, s.lookupVarOutgoing(p, v.Type, name, v.Line))
|
||||||
v.AddArgs(vals...)
|
|
||||||
s.addNamedValue(name, v)
|
|
||||||
return v
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return v0
|
|
||||||
|
// Decide if we need a phi or not. We need a phi if there
|
||||||
|
// are two different args (which are both not v).
|
||||||
|
var w *ssa.Value
|
||||||
|
for _, a := range args {
|
||||||
|
if a == v {
|
||||||
|
continue // self-reference
|
||||||
|
}
|
||||||
|
if a == w {
|
||||||
|
continue // already have this witness
|
||||||
|
}
|
||||||
|
if w != nil {
|
||||||
|
// two witnesses, need a phi value
|
||||||
|
v.Op = ssa.OpPhi
|
||||||
|
v.AddArgs(args...)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w = a // save witness
|
||||||
|
}
|
||||||
|
if w == nil {
|
||||||
|
s.Fatalf("no witness for reachable phi %s", v)
|
||||||
|
}
|
||||||
|
// One witness. Make v a copy of w.
|
||||||
|
v.Op = ssa.OpCopy
|
||||||
|
v.AddArg(w)
|
||||||
}
|
}
|
||||||
|
|
||||||
// lookupVarOutgoing finds the variable's value at the end of block b.
|
// lookupVarOutgoing finds the variable's value at the end of block b.
|
||||||
func (s *state) lookupVarOutgoing(b *ssa.Block, t ssa.Type, name *Node) *ssa.Value {
|
func (s *state) lookupVarOutgoing(b *ssa.Block, t ssa.Type, name *Node, line int32) *ssa.Value {
|
||||||
m := s.defvars[b.ID]
|
m := s.defvars[b.ID]
|
||||||
if v, ok := m[name]; ok {
|
if v, ok := m[name]; ok {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
// The variable is not defined by b and we haven't
|
// The variable is not defined by b and we haven't
|
||||||
// looked it up yet. Generate v, a copy value which
|
// looked it up yet. Generate a FwdRef for the variable and return that.
|
||||||
// will be the outgoing value of the variable. Then
|
v := b.NewValue0A(line, ssa.OpFwdRef, t, name)
|
||||||
// look up w, the incoming value of the variable.
|
s.fwdRefs = append(s.fwdRefs, v)
|
||||||
// Make v = copy(w). We need the extra copy to
|
|
||||||
// prevent infinite recursion when looking up the
|
|
||||||
// incoming value of the variable.
|
|
||||||
v := b.NewValue0(s.peekLine(), ssa.OpCopy, t)
|
|
||||||
m[name] = v
|
m[name] = v
|
||||||
v.AddArg(s.lookupVarIncoming(b, t, name))
|
s.addNamedValue(name, v)
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: the above mutually recursive functions can lead to very deep stacks. Fix that.
|
|
||||||
|
|
||||||
func (s *state) addNamedValue(n *Node, v *ssa.Value) {
|
func (s *state) addNamedValue(n *Node, v *ssa.Value) {
|
||||||
if n.Class == Pxxx {
|
if n.Class == Pxxx {
|
||||||
// Don't track our dummy nodes (&memVar etc.).
|
// Don't track our dummy nodes (&memVar etc.).
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if n.Sym == nil {
|
|
||||||
// TODO: What the heck is this?
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(n.Sym.Name, "autotmp_") {
|
if strings.HasPrefix(n.Sym.Name, "autotmp_") {
|
||||||
// Don't track autotmp_ variables.
|
// Don't track autotmp_ variables.
|
||||||
return
|
return
|
||||||
@ -3910,7 +3919,7 @@ func (s *genState) genValue(v *ssa.Value) {
|
|||||||
p.To.Sym = Linksym(Pkglookup("duffcopy", Runtimepkg))
|
p.To.Sym = Linksym(Pkglookup("duffcopy", Runtimepkg))
|
||||||
p.To.Offset = v.AuxInt
|
p.To.Offset = v.AuxInt
|
||||||
|
|
||||||
case ssa.OpCopy, ssa.OpAMD64MOVQconvert: // TODO: lower Copy to MOVQ earlier?
|
case ssa.OpCopy, ssa.OpAMD64MOVQconvert: // TODO: use MOVQreg for reg->reg copies instead of OpCopy?
|
||||||
if v.Type.IsMemory() {
|
if v.Type.IsMemory() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -3970,12 +3979,6 @@ func (s *genState) genValue(v *ssa.Value) {
|
|||||||
v.Fatalf("phi arg at different location than phi: %v @ %v, but arg %v @ %v\n%s\n", v, loc, a, aloc, v.Block.Func)
|
v.Fatalf("phi arg at different location than phi: %v @ %v, but arg %v @ %v\n%s\n", v, loc, a, aloc, v.Block.Func)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case ssa.OpConst8, ssa.OpConst16, ssa.OpConst32, ssa.OpConst64, ssa.OpConstString, ssa.OpConstNil, ssa.OpConstBool,
|
|
||||||
ssa.OpConst32F, ssa.OpConst64F:
|
|
||||||
if v.Block.Func.RegAlloc[v.ID] != nil {
|
|
||||||
v.Fatalf("const value %v shouldn't have a location", v)
|
|
||||||
}
|
|
||||||
|
|
||||||
case ssa.OpInitMem:
|
case ssa.OpInitMem:
|
||||||
// memory arg needs no code
|
// memory arg needs no code
|
||||||
case ssa.OpArg:
|
case ssa.OpArg:
|
||||||
@ -4596,6 +4599,10 @@ func (e *ssaExport) CanSSA(t ssa.Type) bool {
|
|||||||
return canSSAType(t.(*Type))
|
return canSSAType(t.(*Type))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e *ssaExport) Line(line int32) string {
|
||||||
|
return Ctxt.Line(int(line))
|
||||||
|
}
|
||||||
|
|
||||||
// Log logs a message from the compiler.
|
// Log logs a message from the compiler.
|
||||||
func (e *ssaExport) Logf(msg string, args ...interface{}) {
|
func (e *ssaExport) Logf(msg string, args ...interface{}) {
|
||||||
// If e was marked as unimplemented, anything could happen. Ignore.
|
// If e was marked as unimplemented, anything could happen. Ignore.
|
||||||
|
@ -81,8 +81,9 @@ type pass struct {
|
|||||||
|
|
||||||
// list of passes for the compiler
|
// list of passes for the compiler
|
||||||
var passes = [...]pass{
|
var passes = [...]pass{
|
||||||
{"phielim", phielim},
|
// TODO: combine phielim and copyelim into a single pass?
|
||||||
{"copyelim", copyelim},
|
{"early phielim", phielim},
|
||||||
|
{"early copyelim", copyelim},
|
||||||
{"early deadcode", deadcode}, // remove generated dead code to avoid doing pointless work during opt
|
{"early deadcode", deadcode}, // remove generated dead code to avoid doing pointless work during opt
|
||||||
{"decompose", decompose},
|
{"decompose", decompose},
|
||||||
{"opt", opt},
|
{"opt", opt},
|
||||||
@ -97,6 +98,9 @@ var passes = [...]pass{
|
|||||||
{"lowered cse", cse},
|
{"lowered cse", cse},
|
||||||
{"lowered deadcode", deadcode},
|
{"lowered deadcode", deadcode},
|
||||||
{"checkLower", checkLower},
|
{"checkLower", checkLower},
|
||||||
|
{"late phielim", phielim},
|
||||||
|
{"late copyelim", copyelim},
|
||||||
|
{"late deadcode", deadcode},
|
||||||
{"critical", critical}, // remove critical edges
|
{"critical", critical}, // remove critical edges
|
||||||
{"layout", layout}, // schedule blocks
|
{"layout", layout}, // schedule blocks
|
||||||
{"schedule", schedule}, // schedule values
|
{"schedule", schedule}, // schedule values
|
||||||
|
@ -67,6 +67,9 @@ type Frontend interface {
|
|||||||
// Auto returns a Node for an auto variable of the given type.
|
// Auto returns a Node for an auto variable of the given type.
|
||||||
// The SSA compiler uses this function to allocate space for spills.
|
// The SSA compiler uses this function to allocate space for spills.
|
||||||
Auto(Type) GCNode
|
Auto(Type) GCNode
|
||||||
|
|
||||||
|
// Line returns a string describing the given line number.
|
||||||
|
Line(int32) string
|
||||||
}
|
}
|
||||||
|
|
||||||
// interface used to hold *gc.Node. We'd use *gc.Node directly but
|
// interface used to hold *gc.Node. We'd use *gc.Node directly but
|
||||||
|
@ -31,6 +31,9 @@ func (DummyFrontend) StringData(s string) interface{} {
|
|||||||
func (DummyFrontend) Auto(t Type) GCNode {
|
func (DummyFrontend) Auto(t Type) GCNode {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
func (DummyFrontend) Line(line int32) string {
|
||||||
|
return "unknown.go:0"
|
||||||
|
}
|
||||||
|
|
||||||
func (d DummyFrontend) Logf(msg string, args ...interface{}) { d.t.Logf(msg, args...) }
|
func (d DummyFrontend) Logf(msg string, args ...interface{}) { d.t.Logf(msg, args...) }
|
||||||
|
|
||||||
|
@ -371,6 +371,9 @@ var genericOps = []opData{
|
|||||||
// Used during ssa construction. Like Copy, but the arg has not been specified yet.
|
// Used during ssa construction. Like Copy, but the arg has not been specified yet.
|
||||||
{name: "FwdRef"},
|
{name: "FwdRef"},
|
||||||
|
|
||||||
|
// Unknown value. Used for Values whose values don't matter because they are dead code.
|
||||||
|
{name: "Unknown"},
|
||||||
|
|
||||||
{name: "VarDef", typ: "Mem"}, // aux is a *gc.Node of a variable that is about to be initialized. arg0=mem, returns mem
|
{name: "VarDef", typ: "Mem"}, // aux is a *gc.Node of a variable that is about to be initialized. arg0=mem, returns mem
|
||||||
{name: "VarKill"}, // aux is a *gc.Node of a variable that is known to be dead. arg0=mem, returns mem
|
{name: "VarKill"}, // aux is a *gc.Node of a variable that is known to be dead. arg0=mem, returns mem
|
||||||
{name: "VarLive"}, // aux is a *gc.Node of a variable that must be kept live. arg0=mem, returns mem
|
{name: "VarLive"}, // aux is a *gc.Node of a variable that must be kept live. arg0=mem, returns mem
|
||||||
|
@ -550,6 +550,7 @@ const (
|
|||||||
OpStoreReg
|
OpStoreReg
|
||||||
OpLoadReg
|
OpLoadReg
|
||||||
OpFwdRef
|
OpFwdRef
|
||||||
|
OpUnknown
|
||||||
OpVarDef
|
OpVarDef
|
||||||
OpVarKill
|
OpVarKill
|
||||||
OpVarLive
|
OpVarLive
|
||||||
@ -4303,6 +4304,10 @@ var opcodeTable = [...]opInfo{
|
|||||||
name: "FwdRef",
|
name: "FwdRef",
|
||||||
generic: true,
|
generic: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Unknown",
|
||||||
|
generic: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "VarDef",
|
name: "VarDef",
|
||||||
generic: true,
|
generic: true,
|
||||||
|
@ -10,29 +10,52 @@ package ssa
|
|||||||
// these phis are redundant:
|
// these phis are redundant:
|
||||||
// v = phi(x,x,x)
|
// v = phi(x,x,x)
|
||||||
// v = phi(x,v,x,v)
|
// v = phi(x,v,x,v)
|
||||||
|
// We repeat this process to also catch situations like:
|
||||||
|
// v = phi(x, phi(x, x), phi(x, v))
|
||||||
|
// TODO: Can we also simplify cases like:
|
||||||
|
// v = phi(v, w, x)
|
||||||
|
// w = phi(v, w, x)
|
||||||
|
// and would that be useful?
|
||||||
func phielim(f *Func) {
|
func phielim(f *Func) {
|
||||||
argSet := newSparseSet(f.NumValues())
|
for {
|
||||||
var args []*Value
|
changed := false
|
||||||
for _, b := range f.Blocks {
|
for _, b := range f.Blocks {
|
||||||
for _, v := range b.Values {
|
nextv:
|
||||||
if v.Op != OpPhi {
|
for _, v := range b.Values {
|
||||||
continue
|
if v.Op != OpPhi {
|
||||||
}
|
continue
|
||||||
argSet.clear()
|
|
||||||
args = args[:0]
|
|
||||||
for _, x := range v.Args {
|
|
||||||
for x.Op == OpCopy {
|
|
||||||
x = x.Args[0]
|
|
||||||
}
|
}
|
||||||
if x != v && !argSet.contains(x.ID) {
|
// If there are two distinct args of v which
|
||||||
argSet.add(x.ID)
|
// are not v itself, then the phi must remain.
|
||||||
args = append(args, x)
|
// Otherwise, we can replace it with a copy.
|
||||||
|
var w *Value
|
||||||
|
for _, x := range v.Args {
|
||||||
|
for x.Op == OpCopy {
|
||||||
|
x = x.Args[0]
|
||||||
|
}
|
||||||
|
if x == v {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if x == w {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if w != nil {
|
||||||
|
continue nextv
|
||||||
|
}
|
||||||
|
w = x
|
||||||
|
}
|
||||||
|
if w == nil {
|
||||||
|
// v references only itself. It must be in
|
||||||
|
// a dead code loop. Don't bother modifying it.
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if len(args) == 1 {
|
|
||||||
v.Op = OpCopy
|
v.Op = OpCopy
|
||||||
v.SetArgs1(args[0])
|
v.SetArgs1(w)
|
||||||
|
changed = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if !changed {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,6 +61,8 @@ func (p stringFuncPrinter) endBlock(b *Block) {
|
|||||||
|
|
||||||
func (p stringFuncPrinter) value(v *Value, live bool) {
|
func (p stringFuncPrinter) value(v *Value, live bool) {
|
||||||
fmt.Fprint(p.w, " ")
|
fmt.Fprint(p.w, " ")
|
||||||
|
//fmt.Fprint(p.w, v.Block.Func.Config.fe.Line(v.Line))
|
||||||
|
//fmt.Fprint(p.w, ": ")
|
||||||
fmt.Fprint(p.w, v.LongString())
|
fmt.Fprint(p.w, v.LongString())
|
||||||
if !live {
|
if !live {
|
||||||
fmt.Fprint(p.w, " DEAD")
|
fmt.Fprint(p.w, " DEAD")
|
||||||
|
Loading…
Reference in New Issue
Block a user