Commit 44e90315 authored by Dave Cheney's avatar Dave Cheney

cmd/internal/gc: more Node cleanups

More Node cleanups, these ones touch go.y.

- convert Node.Implicit to bool
- convert Node.Used to bool

Change-Id: I85c7ff9e66cee7122b560adedc995166c874f2f2
Reviewed-on: https://go-review.googlesource.com/7124Reviewed-by: default avatarKeith Randall <khr@golang.org>
parent 42c8be44
...@@ -402,7 +402,7 @@ func transformclosure(xfunc *Node) { ...@@ -402,7 +402,7 @@ func transformclosure(xfunc *Node) {
addr = newname(Lookup(namebuf)) addr = newname(Lookup(namebuf))
addr.Ntype = Nod(OIND, typenod(v.Type), nil) addr.Ntype = Nod(OIND, typenod(v.Type), nil)
addr.Class = PAUTO addr.Class = PAUTO
addr.Used = 1 addr.Used = true
addr.Curfn = xfunc addr.Curfn = xfunc
xfunc.Dcl = list(xfunc.Dcl, addr) xfunc.Dcl = list(xfunc.Dcl, addr)
v.Heapaddr = addr v.Heapaddr = addr
...@@ -461,7 +461,7 @@ func walkclosure(func_ *Node, init **NodeList) *Node { ...@@ -461,7 +461,7 @@ func walkclosure(func_ *Node, init **NodeList) *Node {
clos := Nod(OCOMPLIT, nil, Nod(OIND, typ, nil)) clos := Nod(OCOMPLIT, nil, Nod(OIND, typ, nil))
clos.Esc = func_.Esc clos.Esc = func_.Esc
clos.Right.Implicit = 1 clos.Right.Implicit = true
clos.List = concat(list1(Nod(OCFUNC, func_.Closure.Nname, nil)), func_.Enter) clos.List = concat(list1(Nod(OCFUNC, func_.Closure.Nname, nil)), func_.Enter)
// Force type conversion from *struct to the func type. // Force type conversion from *struct to the func type.
...@@ -609,7 +609,7 @@ func makepartialcall(fn *Node, t0 *Type, meth *Node) *Node { ...@@ -609,7 +609,7 @@ func makepartialcall(fn *Node, t0 *Type, meth *Node) *Node {
ptr.Class = PAUTO ptr.Class = PAUTO
ptr.Addable = 1 ptr.Addable = 1
ptr.Ullman = 1 ptr.Ullman = 1
ptr.Used = 1 ptr.Used = true
ptr.Curfn = xfunc ptr.Curfn = xfunc
xfunc.Dcl = list(xfunc.Dcl, ptr) xfunc.Dcl = list(xfunc.Dcl, ptr)
var body *NodeList var body *NodeList
...@@ -667,7 +667,7 @@ func walkpartialcall(n *Node, init **NodeList) *Node { ...@@ -667,7 +667,7 @@ func walkpartialcall(n *Node, init **NodeList) *Node {
clos := Nod(OCOMPLIT, nil, Nod(OIND, typ, nil)) clos := Nod(OCOMPLIT, nil, Nod(OIND, typ, nil))
clos.Esc = n.Esc clos.Esc = n.Esc
clos.Right.Implicit = 1 clos.Right.Implicit = true
clos.List = list1(Nod(OCFUNC, n.Nname.Nname, nil)) clos.List = list1(Nod(OCFUNC, n.Nname.Nname, nil))
clos.List = list(clos.List, n.Left) clos.List = list(clos.List, n.Left)
......
...@@ -1095,7 +1095,7 @@ func esccall(e *EscState, n *Node, up *Node) { ...@@ -1095,7 +1095,7 @@ func esccall(e *EscState, n *Node, up *Node) {
src.Class = PAUTO src.Class = PAUTO
src.Curfn = Curfn src.Curfn = Curfn
src.Escloopdepth = e.loopdepth src.Escloopdepth = e.loopdepth
src.Used = 1 src.Used = true
src.Lineno = n.Lineno src.Lineno = n.Lineno
n.Escretval = list(n.Escretval, src) n.Escretval = list(n.Escretval, src)
} }
......
...@@ -273,8 +273,8 @@ func Jconv(n *Node, flag int) string { ...@@ -273,8 +273,8 @@ func Jconv(n *Node, flag int) string {
fp += fmt.Sprintf(" isddd(%d)", n.Isddd) fp += fmt.Sprintf(" isddd(%d)", n.Isddd)
} }
if n.Implicit != 0 { if n.Implicit {
fp += fmt.Sprintf(" implicit(%d)", n.Implicit) fp += fmt.Sprintf(" implicit(%v)", n.Implicit)
} }
if n.Embedded != 0 { if n.Embedded != 0 {
...@@ -289,8 +289,8 @@ func Jconv(n *Node, flag int) string { ...@@ -289,8 +289,8 @@ func Jconv(n *Node, flag int) string {
fp += " assigned" fp += " assigned"
} }
if c == 0 && n.Used != 0 { if c == 0 && n.Used {
fp += fmt.Sprintf(" used(%d)", n.Used) fp += fmt.Sprintf(" used(%v)", n.Used)
} }
return fp return fp
} }
...@@ -859,7 +859,7 @@ func stmtfmt(n *Node) string { ...@@ -859,7 +859,7 @@ func stmtfmt(n *Node) string {
} }
case OASOP: case OASOP:
if n.Implicit != 0 { if n.Implicit {
if n.Etype == OADD { if n.Etype == OADD {
f += fmt.Sprintf("%v++", Nconv(n.Left, 0)) f += fmt.Sprintf("%v++", Nconv(n.Left, 0))
} else { } else {
...@@ -1109,7 +1109,7 @@ var opprec = []int{ ...@@ -1109,7 +1109,7 @@ var opprec = []int{
} }
func exprfmt(n *Node, prec int) string { func exprfmt(n *Node, prec int) string {
for n != nil && n.Implicit != 0 && (n.Op == OIND || n.Op == OADDR) { for n != nil && n.Implicit && (n.Op == OIND || n.Op == OADDR) {
n = n.Left n = n.Left
} }
...@@ -1266,9 +1266,9 @@ func exprfmt(n *Node, prec int) string { ...@@ -1266,9 +1266,9 @@ func exprfmt(n *Node, prec int) string {
return f return f
case OCOMPLIT: case OCOMPLIT:
ptrlit := n.Right != nil && n.Right.Implicit != 0 && n.Right.Type != nil && Isptr[n.Right.Type.Etype] ptrlit := n.Right != nil && n.Right.Implicit && n.Right.Type != nil && Isptr[n.Right.Type.Etype]
if fmtmode == FErr { if fmtmode == FErr {
if n.Right != nil && n.Right.Type != nil && n.Implicit == 0 { if n.Right != nil && n.Right.Type != nil && !n.Implicit {
if ptrlit { if ptrlit {
return fmt.Sprintf("&%v literal", Tconv(n.Right.Type.Type, 0)) return fmt.Sprintf("&%v literal", Tconv(n.Right.Type.Type, 0))
} else { } else {
...@@ -1289,7 +1289,7 @@ func exprfmt(n *Node, prec int) string { ...@@ -1289,7 +1289,7 @@ func exprfmt(n *Node, prec int) string {
return f return f
case OPTRLIT: case OPTRLIT:
if fmtmode == FExp && n.Left.Implicit != 0 { if fmtmode == FExp && n.Left.Implicit {
return fmt.Sprintf("%v", Nconv(n.Left, 0)) return fmt.Sprintf("%v", Nconv(n.Left, 0))
} }
var f string var f string
...@@ -1299,7 +1299,7 @@ func exprfmt(n *Node, prec int) string { ...@@ -1299,7 +1299,7 @@ func exprfmt(n *Node, prec int) string {
case OSTRUCTLIT: case OSTRUCTLIT:
if fmtmode == FExp { // requires special handling of field names if fmtmode == FExp { // requires special handling of field names
var f string var f string
if n.Implicit != 0 { if n.Implicit {
f += "{" f += "{"
} else { } else {
f += fmt.Sprintf("(%v{", Tconv(n.Type, 0)) f += fmt.Sprintf("(%v{", Tconv(n.Type, 0))
...@@ -1314,7 +1314,7 @@ func exprfmt(n *Node, prec int) string { ...@@ -1314,7 +1314,7 @@ func exprfmt(n *Node, prec int) string {
} }
} }
if n.Implicit == 0 { if !n.Implicit {
f += "})" f += "})"
return f return f
} }
...@@ -1330,7 +1330,7 @@ func exprfmt(n *Node, prec int) string { ...@@ -1330,7 +1330,7 @@ func exprfmt(n *Node, prec int) string {
if fmtmode == FErr { if fmtmode == FErr {
return fmt.Sprintf("%v literal", Tconv(n.Type, 0)) return fmt.Sprintf("%v literal", Tconv(n.Type, 0))
} }
if fmtmode == FExp && n.Implicit != 0 { if fmtmode == FExp && n.Implicit {
return fmt.Sprintf("{ %v }", Hconv(n.List, obj.FmtComma)) return fmt.Sprintf("{ %v }", Hconv(n.List, obj.FmtComma))
} }
var f string var f string
......
...@@ -613,7 +613,7 @@ func Tempname(nn *Node, t *Type) { ...@@ -613,7 +613,7 @@ func Tempname(nn *Node, t *Type) {
func temp(t *Type) *Node { func temp(t *Type) *Node {
n := Nod(OXXX, nil, nil) n := Nod(OXXX, nil, nil)
Tempname(n, t) Tempname(n, t)
n.Sym.Def.Used = 1 n.Sym.Def.Used = true
return n.Orig return n.Orig
} }
......
...@@ -418,7 +418,7 @@ simple_stmt: ...@@ -418,7 +418,7 @@ simple_stmt:
switch($$.Op) { switch($$.Op) {
case ONAME, ONONAME, OTYPE, OPACK, OLITERAL: case ONAME, ONONAME, OTYPE, OPACK, OLITERAL:
$$ = Nod(OPAREN, $$, nil); $$ = Nod(OPAREN, $$, nil);
$$.Implicit = 1; $$.Implicit = true;
break; break;
} }
} }
...@@ -460,13 +460,13 @@ simple_stmt: ...@@ -460,13 +460,13 @@ simple_stmt:
| expr LINC | expr LINC
{ {
$$ = Nod(OASOP, $1, Nodintconst(1)); $$ = Nod(OASOP, $1, Nodintconst(1));
$$.Implicit = 1; $$.Implicit = true;
$$.Etype = OADD; $$.Etype = OADD;
} }
| expr LDEC | expr LDEC
{ {
$$ = Nod(OASOP, $1, Nodintconst(1)); $$ = Nod(OASOP, $1, Nodintconst(1));
$$.Implicit = 1; $$.Implicit = true;
$$.Etype = OSUB; $$.Etype = OSUB;
} }
...@@ -886,7 +886,7 @@ uexpr: ...@@ -886,7 +886,7 @@ uexpr:
// Special case for &T{...}: turn into (*T){...}. // Special case for &T{...}: turn into (*T){...}.
$$ = $2; $$ = $2;
$$.Right = Nod(OIND, $$.Right, nil); $$.Right = Nod(OIND, $$.Right, nil);
$$.Right.Implicit = 1; $$.Right.Implicit = true;
} else { } else {
$$ = Nod(OADDR, $2, nil); $$ = Nod(OADDR, $2, nil);
} }
...@@ -949,7 +949,7 @@ pexpr_no_paren: ...@@ -949,7 +949,7 @@ pexpr_no_paren:
if $1.Op == OPACK { if $1.Op == OPACK {
var s *Sym var s *Sym
s = restrictlookup($3.Name, $1.Pkg); s = restrictlookup($3.Name, $1.Pkg);
$1.Used = 1; $1.Used = true;
$$ = oldname(s); $$ = oldname(s);
break; break;
} }
...@@ -1034,7 +1034,7 @@ bare_complitexpr: ...@@ -1034,7 +1034,7 @@ bare_complitexpr:
switch($$.Op) { switch($$.Op) {
case ONAME, ONONAME, OTYPE, OPACK, OLITERAL: case ONAME, ONONAME, OTYPE, OPACK, OLITERAL:
$$ = Nod(OPAREN, $$, nil); $$ = Nod(OPAREN, $$, nil);
$$.Implicit = 1; $$.Implicit = true;
} }
} }
| '{' start_complit braced_keyval_list '}' | '{' start_complit braced_keyval_list '}'
...@@ -1160,7 +1160,7 @@ name: ...@@ -1160,7 +1160,7 @@ name:
{ {
$$ = oldname($1); $$ = oldname($1);
if $$.Pack != nil { if $$.Pack != nil {
$$.Pack.Used = 1; $$.Pack.Used = true;
} }
} }
...@@ -1238,7 +1238,7 @@ dotname: ...@@ -1238,7 +1238,7 @@ dotname:
if $1.Op == OPACK { if $1.Op == OPACK {
var s *Sym var s *Sym
s = restrictlookup($3.Name, $1.Pkg); s = restrictlookup($3.Name, $1.Pkg);
$1.Used = 1; $1.Used = true;
$$ = oldname(s); $$ = oldname(s);
break; break;
} }
...@@ -1626,7 +1626,7 @@ packname: ...@@ -1626,7 +1626,7 @@ packname:
$$ = $1; $$ = $1;
n = oldname($1); n = oldname($1);
if n.Pack != nil { if n.Pack != nil {
n.Pack.Used = 1; n.Pack.Used = true;
} }
} }
| LNAME '.' sym | LNAME '.' sym
...@@ -1637,7 +1637,7 @@ packname: ...@@ -1637,7 +1637,7 @@ packname:
Yyerror("%v is not a package", Sconv($1, 0)); Yyerror("%v is not a package", Sconv($1, 0));
pkg = localpkg; pkg = localpkg;
} else { } else {
$1.Def.Used = 1; $1.Def.Used = true;
pkg = $1.Def.Pkg; pkg = $1.Def.Pkg;
} }
$$ = restrictlookup($3.Name, pkg); $$ = restrictlookup($3.Name, pkg);
......
...@@ -174,12 +174,12 @@ func fixautoused(p *obj.Prog) { ...@@ -174,12 +174,12 @@ func fixautoused(p *obj.Prog) {
if p == nil { if p == nil {
break break
} }
if p.As == obj.ATYPE && p.From.Node != nil && p.From.Name == obj.NAME_AUTO && ((p.From.Node).(*Node)).Used == 0 { if p.As == obj.ATYPE && p.From.Node != nil && p.From.Name == obj.NAME_AUTO && !((p.From.Node).(*Node)).Used {
*lp = p.Link *lp = p.Link
continue continue
} }
if (p.As == obj.AVARDEF || p.As == obj.AVARKILL) && p.To.Node != nil && ((p.To.Node).(*Node)).Used == 0 { if (p.As == obj.AVARDEF || p.As == obj.AVARKILL) && p.To.Node != nil && !((p.To.Node).(*Node)).Used {
// Cannot remove VARDEF instruction, because - unlike TYPE handled above - // Cannot remove VARDEF instruction, because - unlike TYPE handled above -
// VARDEFs are interspersed with other code, and a jump might be using the // VARDEFs are interspersed with other code, and a jump might be using the
// VARDEF as a target. Replace with a no-op instead. A later pass will remove // VARDEF as a target. Replace with a no-op instead. A later pass will remove
...@@ -267,11 +267,11 @@ func markautoused(p *obj.Prog) { ...@@ -267,11 +267,11 @@ func markautoused(p *obj.Prog) {
} }
if p.From.Node != nil { if p.From.Node != nil {
((p.From.Node).(*Node)).Used = 1 ((p.From.Node).(*Node)).Used = true
} }
if p.To.Node != nil { if p.To.Node != nil {
((p.To.Node).(*Node)).Used = 1 ((p.To.Node).(*Node)).Used = true
} }
} }
} }
......
...@@ -840,7 +840,7 @@ func inlvar(var_ *Node) *Node { ...@@ -840,7 +840,7 @@ func inlvar(var_ *Node) *Node {
n := newname(var_.Sym) n := newname(var_.Sym)
n.Type = var_.Type n.Type = var_.Type
n.Class = PAUTO n.Class = PAUTO
n.Used = 1 n.Used = true
n.Curfn = Curfn // the calling function, not the called one n.Curfn = Curfn // the calling function, not the called one
n.Addrtaken = var_.Addrtaken n.Addrtaken = var_.Addrtaken
...@@ -863,7 +863,7 @@ func retvar(t *Type, i int) *Node { ...@@ -863,7 +863,7 @@ func retvar(t *Type, i int) *Node {
n := newname(Lookup(namebuf)) n := newname(Lookup(namebuf))
n.Type = t.Type n.Type = t.Type
n.Class = PAUTO n.Class = PAUTO
n.Used = 1 n.Used = true
n.Curfn = Curfn // the calling function, not the called one n.Curfn = Curfn // the calling function, not the called one
Curfn.Dcl = list(Curfn.Dcl, n) Curfn.Dcl = list(Curfn.Dcl, n)
return n return n
...@@ -876,7 +876,7 @@ func argvar(t *Type, i int) *Node { ...@@ -876,7 +876,7 @@ func argvar(t *Type, i int) *Node {
n := newname(Lookup(namebuf)) n := newname(Lookup(namebuf))
n.Type = t.Type n.Type = t.Type
n.Class = PAUTO n.Class = PAUTO
n.Used = 1 n.Used = true
n.Curfn = Curfn // the calling function, not the called one n.Curfn = Curfn // the calling function, not the called one
Curfn.Dcl = list(Curfn.Dcl, n) Curfn.Dcl = list(Curfn.Dcl, n)
return n return n
......
...@@ -3131,7 +3131,7 @@ func mkpackage(pkgname string) { ...@@ -3131,7 +3131,7 @@ func mkpackage(pkgname string) {
// leave s->block set to cause redeclaration // leave s->block set to cause redeclaration
// errors if a conflicting top-level name is // errors if a conflicting top-level name is
// introduced by a different file. // introduced by a different file.
if s.Def.Used == 0 && nsyntaxerrors == 0 { if !s.Def.Used && nsyntaxerrors == 0 {
pkgnotused(int(s.Def.Lineno), s.Def.Pkg.Path, s.Name) pkgnotused(int(s.Def.Lineno), s.Def.Pkg.Path, s.Name)
} }
s.Def = nil s.Def = nil
...@@ -3141,9 +3141,9 @@ func mkpackage(pkgname string) { ...@@ -3141,9 +3141,9 @@ func mkpackage(pkgname string) {
if s.Def.Sym != s { if s.Def.Sym != s {
// throw away top-level name left over // throw away top-level name left over
// from previous import . "x" // from previous import . "x"
if s.Def.Pack != nil && s.Def.Pack.Used == 0 && nsyntaxerrors == 0 { if s.Def.Pack != nil && !s.Def.Pack.Used && nsyntaxerrors == 0 {
pkgnotused(int(s.Def.Pack.Lineno), s.Def.Pack.Pkg.Path, "") pkgnotused(int(s.Def.Pack.Lineno), s.Def.Pack.Pkg.Path, "")
s.Def.Pack.Used = 1 s.Def.Pack.Used = true
} }
s.Def = nil s.Def = nil
......
...@@ -197,8 +197,8 @@ func cmpstackvar(a *Node, b *Node) int { ...@@ -197,8 +197,8 @@ func cmpstackvar(a *Node, b *Node) int {
return 0 return 0
} }
if (a.Used == 0) != (b.Used == 0) { if a.Used != b.Used {
return int(b.Used) - int(a.Used) return bool2int(b.Used) - bool2int(a.Used)
} }
ap := bool2int(haspointers(a.Type)) ap := bool2int(haspointers(a.Type))
...@@ -235,7 +235,7 @@ func allocauto(ptxt *obj.Prog) { ...@@ -235,7 +235,7 @@ func allocauto(ptxt *obj.Prog) {
// Mark the PAUTO's unused. // Mark the PAUTO's unused.
for ll := Curfn.Dcl; ll != nil; ll = ll.Next { for ll := Curfn.Dcl; ll != nil; ll = ll.Next {
if ll.N.Class == PAUTO { if ll.N.Class == PAUTO {
ll.N.Used = 0 ll.N.Used = false
} }
} }
...@@ -247,7 +247,7 @@ func allocauto(ptxt *obj.Prog) { ...@@ -247,7 +247,7 @@ func allocauto(ptxt *obj.Prog) {
ll := Curfn.Dcl ll := Curfn.Dcl
n := ll.N n := ll.N
if n.Class == PAUTO && n.Op == ONAME && n.Used == 0 { if n.Class == PAUTO && n.Op == ONAME && !n.Used {
// No locals used at all // No locals used at all
Curfn.Dcl = nil Curfn.Dcl = nil
...@@ -257,7 +257,7 @@ func allocauto(ptxt *obj.Prog) { ...@@ -257,7 +257,7 @@ func allocauto(ptxt *obj.Prog) {
for ll := Curfn.Dcl; ll.Next != nil; ll = ll.Next { for ll := Curfn.Dcl; ll.Next != nil; ll = ll.Next {
n = ll.Next.N n = ll.Next.N
if n.Class == PAUTO && n.Op == ONAME && n.Used == 0 { if n.Class == PAUTO && n.Op == ONAME && !n.Used {
ll.Next = nil ll.Next = nil
Curfn.Dcl.End = ll Curfn.Dcl.End = ll
break break
......
...@@ -45,7 +45,7 @@ func typecheckselect(sel *Node) { ...@@ -45,7 +45,7 @@ func typecheckselect(sel *Node) {
// remove implicit conversions; the eventual assignment // remove implicit conversions; the eventual assignment
// will reintroduce them. // will reintroduce them.
case OAS: case OAS:
if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit != 0 { if (n.Right.Op == OCONVNOP || n.Right.Op == OCONVIFACE) && n.Right.Implicit {
n.Right = n.Right.Left n.Right = n.Right.Left
} }
......
...@@ -1341,7 +1341,7 @@ func assignconv(n *Node, t *Type, context string) *Node { ...@@ -1341,7 +1341,7 @@ func assignconv(n *Node, t *Type, context string) *Node {
r := Nod(OCONVNOP, n, nil) r := Nod(OCONVNOP, n, nil)
r.Type = Types[TBOOL] r.Type = Types[TBOOL]
r.Typecheck = 1 r.Typecheck = 1
r.Implicit = 1 r.Implicit = true
n = r n = r
} }
} }
...@@ -1360,7 +1360,7 @@ func assignconv(n *Node, t *Type, context string) *Node { ...@@ -1360,7 +1360,7 @@ func assignconv(n *Node, t *Type, context string) *Node {
r := Nod(op, n, nil) r := Nod(op, n, nil)
r.Type = t r.Type = t
r.Typecheck = 1 r.Typecheck = 1
r.Implicit = 1 r.Implicit = true
r.Orig = n.Orig r.Orig = n.Orig
return r return r
} }
...@@ -2146,7 +2146,7 @@ func adddot(n *Node) *Node { ...@@ -2146,7 +2146,7 @@ func adddot(n *Node) *Node {
// rebuild elided dots // rebuild elided dots
for c := d - 1; c >= 0; c-- { for c := d - 1; c >= 0; c-- {
if n.Left.Type != nil && Isptr[n.Left.Type.Etype] { if n.Left.Type != nil && Isptr[n.Left.Type.Etype] {
n.Left.Implicit = 1 n.Left.Implicit = true
} }
n.Left = Nod(ODOT, n.Left, newname(dotlist[c].field.Sym)) n.Left = Nod(ODOT, n.Left, newname(dotlist[c].field.Sym))
} }
......
...@@ -43,10 +43,10 @@ type Node struct { ...@@ -43,10 +43,10 @@ type Node struct {
Local uint8 Local uint8
Dodata uint8 Dodata uint8
Initorder uint8 Initorder uint8
Used uint8 Used bool
Isddd uint8 Isddd uint8
Readonly bool Readonly bool
Implicit uint8 Implicit bool
Addrtaken bool // address taken, even if not moved to heap Addrtaken bool // address taken, even if not moved to heap
Assigned bool // is the variable ever assigned to Assigned bool // is the variable ever assigned to
Captured bool // is the variable captured by a closure Captured bool // is the variable captured by a closure
......
...@@ -336,7 +336,7 @@ OpSwitch: ...@@ -336,7 +336,7 @@ OpSwitch:
return return
} }
n.Used = 1 n.Used = true
} }
if top&Ecall == 0 && isunsafebuiltin(n) { if top&Ecall == 0 && isunsafebuiltin(n) {
...@@ -667,7 +667,7 @@ OpSwitch: ...@@ -667,7 +667,7 @@ OpSwitch:
if t.Etype != TIDEAL && !Eqtype(l.Type, r.Type) { if t.Etype != TIDEAL && !Eqtype(l.Type, r.Type) {
defaultlit2(&l, &r, 1) defaultlit2(&l, &r, 1)
if n.Op == OASOP && n.Implicit != 0 { if n.Op == OASOP && n.Implicit {
Yyerror("invalid operation: %v (non-numeric type %v)", Nconv(n, 0), Tconv(l.Type, 0)) Yyerror("invalid operation: %v (non-numeric type %v)", Nconv(n, 0), Tconv(l.Type, 0))
n.Type = nil n.Type = nil
return return
...@@ -1146,7 +1146,7 @@ OpSwitch: ...@@ -1146,7 +1146,7 @@ OpSwitch:
} }
n.Left = Nod(OADDR, n.Left, nil) n.Left = Nod(OADDR, n.Left, nil)
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Erv) typecheck(&n.Left, Erv)
l = n.Left l = n.Left
} }
...@@ -1210,7 +1210,7 @@ OpSwitch: ...@@ -1210,7 +1210,7 @@ OpSwitch:
} }
n.Left = Nod(OADDR, n.Left, nil) n.Left = Nod(OADDR, n.Left, nil)
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Erv) typecheck(&n.Left, Erv)
l = n.Left l = n.Left
} }
...@@ -2343,7 +2343,7 @@ func implicitstar(nn **Node) { ...@@ -2343,7 +2343,7 @@ func implicitstar(nn **Node) {
return return
} }
n = Nod(OIND, n, nil) n = Nod(OIND, n, nil)
n.Implicit = 1 n.Implicit = true
typecheck(&n, Erv) typecheck(&n, Erv)
*nn = n *nn = n
} }
...@@ -2506,7 +2506,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool { ...@@ -2506,7 +2506,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool {
if t.Etype == TINTER { if t.Etype == TINTER {
if Isptr[n.Left.Type.Etype] { if Isptr[n.Left.Type.Etype] {
n.Left = Nod(OIND, n.Left, nil) // implicitstar n.Left = Nod(OIND, n.Left, nil) // implicitstar
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Erv) typecheck(&n.Left, Erv)
} }
...@@ -2524,11 +2524,11 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool { ...@@ -2524,11 +2524,11 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool {
if int(rcvr.Etype) == Tptr && Eqtype(rcvr.Type, tt) { if int(rcvr.Etype) == Tptr && Eqtype(rcvr.Type, tt) {
checklvalue(n.Left, "call pointer method on") checklvalue(n.Left, "call pointer method on")
n.Left = Nod(OADDR, n.Left, nil) n.Left = Nod(OADDR, n.Left, nil)
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Etype|Erv) typecheck(&n.Left, Etype|Erv)
} else if int(tt.Etype) == Tptr && int(rcvr.Etype) != Tptr && Eqtype(tt.Type, rcvr) { } else if int(tt.Etype) == Tptr && int(rcvr.Etype) != Tptr && Eqtype(tt.Type, rcvr) {
n.Left = Nod(OIND, n.Left, nil) n.Left = Nod(OIND, n.Left, nil)
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Etype|Erv) typecheck(&n.Left, Etype|Erv)
} else if int(tt.Etype) == Tptr && int(tt.Type.Etype) == Tptr && Eqtype(derefall(tt), derefall(rcvr)) { } else if int(tt.Etype) == Tptr && int(tt.Type.Etype) == Tptr && Eqtype(derefall(tt), derefall(rcvr)) {
Yyerror("calling method %v with receiver %v requires explicit dereference", Nconv(n.Right, 0), Nconv(n.Left, obj.FmtLong)) Yyerror("calling method %v with receiver %v requires explicit dereference", Nconv(n.Right, 0), Nconv(n.Left, obj.FmtLong))
...@@ -2538,7 +2538,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool { ...@@ -2538,7 +2538,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool {
break break
} }
n.Left = Nod(OIND, n.Left, nil) n.Left = Nod(OIND, n.Left, nil)
n.Left.Implicit = 1 n.Left.Implicit = true
typecheck(&n.Left, Etype|Erv) typecheck(&n.Left, Etype|Erv)
tt = tt.Type tt = tt.Type
} }
...@@ -2551,7 +2551,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool { ...@@ -2551,7 +2551,7 @@ func lookdot(n *Node, t *Type, dostrcmp int) bool {
for ll.Left != nil { for ll.Left != nil {
ll = ll.Left ll = ll.Left
} }
if ll.Implicit != 0 { if ll.Implicit {
if Isptr[ll.Type.Etype] && ll.Type.Sym != nil && ll.Type.Sym.Def != nil && ll.Type.Sym.Def.Op == OTYPE { if Isptr[ll.Type.Etype] && ll.Type.Sym != nil && ll.Type.Sym.Def != nil && ll.Type.Sym.Def.Op == OTYPE {
// It is invalid to automatically dereference a named pointer type when selecting a method. // It is invalid to automatically dereference a named pointer type when selecting a method.
// Make n->left == ll to clarify error message. // Make n->left == ll to clarify error message.
...@@ -2946,8 +2946,8 @@ func pushtype(n *Node, t *Type) { ...@@ -2946,8 +2946,8 @@ func pushtype(n *Node, t *Type) {
if n.Right == nil { if n.Right == nil {
n.Right = typenod(t) n.Right = typenod(t)
n.Implicit = 1 // don't print n.Implicit = true // don't print
n.Right.Implicit = 1 // * is okay n.Right.Implicit = true // * is okay
} else if Debug['s'] != 0 { } else if Debug['s'] != 0 {
typecheck(&n.Right, Etype) typecheck(&n.Right, Etype)
if n.Right.Type != nil && Eqtype(n.Right.Type, t) { if n.Right.Type != nil && Eqtype(n.Right.Type, t) {
...@@ -2991,7 +2991,7 @@ func typecheckcomplit(np **Node) { ...@@ -2991,7 +2991,7 @@ func typecheckcomplit(np **Node) {
if Isptr[t.Etype] { if Isptr[t.Etype] {
// For better or worse, we don't allow pointers as the composite literal type, // For better or worse, we don't allow pointers as the composite literal type,
// except when using the &T syntax, which sets implicit on the OIND. // except when using the &T syntax, which sets implicit on the OIND.
if n.Right.Implicit == 0 { if !n.Right.Implicit {
Yyerror("invalid pointer type %v for composite literal (use &%v instead)", Tconv(t, 0), Tconv(t.Type, 0)) Yyerror("invalid pointer type %v for composite literal (use &%v instead)", Tconv(t, 0), Tconv(t.Type, 0))
n.Type = nil n.Type = nil
return return
......
...@@ -37,22 +37,22 @@ func walk(fn *Node) { ...@@ -37,22 +37,22 @@ func walk(fn *Node) {
// Propagate the used flag for typeswitch variables up to the NONAME in it's definition. // Propagate the used flag for typeswitch variables up to the NONAME in it's definition.
for l := fn.Dcl; l != nil; l = l.Next { for l := fn.Dcl; l != nil; l = l.Next {
if l.N.Op == ONAME && l.N.Class&^PHEAP == PAUTO && l.N.Defn != nil && l.N.Defn.Op == OTYPESW && l.N.Used != 0 { if l.N.Op == ONAME && l.N.Class&^PHEAP == PAUTO && l.N.Defn != nil && l.N.Defn.Op == OTYPESW && l.N.Used {
l.N.Defn.Left.Used++ l.N.Defn.Left.Used = true
} }
} }
for l := fn.Dcl; l != nil; l = l.Next { for l := fn.Dcl; l != nil; l = l.Next {
if l.N.Op != ONAME || l.N.Class&^PHEAP != PAUTO || l.N.Sym.Name[0] == '&' || l.N.Used != 0 { if l.N.Op != ONAME || l.N.Class&^PHEAP != PAUTO || l.N.Sym.Name[0] == '&' || l.N.Used {
continue continue
} }
if l.N.Defn != nil && l.N.Defn.Op == OTYPESW { if l.N.Defn != nil && l.N.Defn.Op == OTYPESW {
if l.N.Defn.Left.Used != 0 { if l.N.Defn.Left.Used {
continue continue
} }
lineno = l.N.Defn.Left.Lineno lineno = l.N.Defn.Left.Lineno
Yyerror("%v declared and not used", Sconv(l.N.Sym, 0)) Yyerror("%v declared and not used", Sconv(l.N.Sym, 0))
l.N.Defn.Left.Used = 1 // suppress repeats l.N.Defn.Left.Used = true // suppress repeats
} else { } else {
lineno = l.N.Lineno lineno = l.N.Lineno
Yyerror("%v declared and not used", Sconv(l.N.Sym, 0)) Yyerror("%v declared and not used", Sconv(l.N.Sym, 0))
......
...@@ -1430,7 +1430,7 @@ yydefault: ...@@ -1430,7 +1430,7 @@ yydefault:
switch yyVAL.node.Op { switch yyVAL.node.Op {
case ONAME, ONONAME, OTYPE, OPACK, OLITERAL: case ONAME, ONONAME, OTYPE, OPACK, OLITERAL:
yyVAL.node = Nod(OPAREN, yyVAL.node, nil) yyVAL.node = Nod(OPAREN, yyVAL.node, nil)
yyVAL.node.Implicit = 1 yyVAL.node.Implicit = true
break break
} }
} }
...@@ -1480,7 +1480,7 @@ yydefault: ...@@ -1480,7 +1480,7 @@ yydefault:
//line go.y:461 //line go.y:461
{ {
yyVAL.node = Nod(OASOP, yyDollar[1].node, Nodintconst(1)) yyVAL.node = Nod(OASOP, yyDollar[1].node, Nodintconst(1))
yyVAL.node.Implicit = 1 yyVAL.node.Implicit = true
yyVAL.node.Etype = OADD yyVAL.node.Etype = OADD
} }
case 54: case 54:
...@@ -1488,7 +1488,7 @@ yydefault: ...@@ -1488,7 +1488,7 @@ yydefault:
//line go.y:467 //line go.y:467
{ {
yyVAL.node = Nod(OASOP, yyDollar[1].node, Nodintconst(1)) yyVAL.node = Nod(OASOP, yyDollar[1].node, Nodintconst(1))
yyVAL.node.Implicit = 1 yyVAL.node.Implicit = true
yyVAL.node.Etype = OSUB yyVAL.node.Etype = OSUB
} }
case 55: case 55:
...@@ -1991,7 +1991,7 @@ yydefault: ...@@ -1991,7 +1991,7 @@ yydefault:
// Special case for &T{...}: turn into (*T){...}. // Special case for &T{...}: turn into (*T){...}.
yyVAL.node = yyDollar[2].node yyVAL.node = yyDollar[2].node
yyVAL.node.Right = Nod(OIND, yyVAL.node.Right, nil) yyVAL.node.Right = Nod(OIND, yyVAL.node.Right, nil)
yyVAL.node.Right.Implicit = 1 yyVAL.node.Right.Implicit = true
} else { } else {
yyVAL.node = Nod(OADDR, yyDollar[2].node, nil) yyVAL.node = Nod(OADDR, yyDollar[2].node, nil)
} }
...@@ -2069,7 +2069,7 @@ yydefault: ...@@ -2069,7 +2069,7 @@ yydefault:
if yyDollar[1].node.Op == OPACK { if yyDollar[1].node.Op == OPACK {
var s *Sym var s *Sym
s = restrictlookup(yyDollar[3].sym.Name, yyDollar[1].node.Pkg) s = restrictlookup(yyDollar[3].sym.Name, yyDollar[1].node.Pkg)
yyDollar[1].node.Used = 1 yyDollar[1].node.Used = true
yyVAL.node = oldname(s) yyVAL.node = oldname(s)
break break
} }
...@@ -2175,7 +2175,7 @@ yydefault: ...@@ -2175,7 +2175,7 @@ yydefault:
switch yyVAL.node.Op { switch yyVAL.node.Op {
case ONAME, ONONAME, OTYPE, OPACK, OLITERAL: case ONAME, ONONAME, OTYPE, OPACK, OLITERAL:
yyVAL.node = Nod(OPAREN, yyVAL.node, nil) yyVAL.node = Nod(OPAREN, yyVAL.node, nil)
yyVAL.node.Implicit = 1 yyVAL.node.Implicit = true
} }
} }
case 143: case 143:
...@@ -2308,7 +2308,7 @@ yydefault: ...@@ -2308,7 +2308,7 @@ yydefault:
{ {
yyVAL.node = oldname(yyDollar[1].sym) yyVAL.node = oldname(yyDollar[1].sym)
if yyVAL.node.Pack != nil { if yyVAL.node.Pack != nil {
yyVAL.node.Pack.Used = 1 yyVAL.node.Pack.Used = true
} }
} }
case 163: case 163:
...@@ -2393,7 +2393,7 @@ yydefault: ...@@ -2393,7 +2393,7 @@ yydefault:
if yyDollar[1].node.Op == OPACK { if yyDollar[1].node.Op == OPACK {
var s *Sym var s *Sym
s = restrictlookup(yyDollar[3].sym.Name, yyDollar[1].node.Pkg) s = restrictlookup(yyDollar[3].sym.Name, yyDollar[1].node.Pkg)
yyDollar[1].node.Used = 1 yyDollar[1].node.Used = true
yyVAL.node = oldname(s) yyVAL.node = oldname(s)
break break
} }
...@@ -2818,7 +2818,7 @@ yydefault: ...@@ -2818,7 +2818,7 @@ yydefault:
yyVAL.sym = yyDollar[1].sym yyVAL.sym = yyDollar[1].sym
n = oldname(yyDollar[1].sym) n = oldname(yyDollar[1].sym)
if n.Pack != nil { if n.Pack != nil {
n.Pack.Used = 1 n.Pack.Used = true
} }
} }
case 237: case 237:
...@@ -2831,7 +2831,7 @@ yydefault: ...@@ -2831,7 +2831,7 @@ yydefault:
Yyerror("%v is not a package", Sconv(yyDollar[1].sym, 0)) Yyerror("%v is not a package", Sconv(yyDollar[1].sym, 0))
pkg = localpkg pkg = localpkg
} else { } else {
yyDollar[1].sym.Def.Used = 1 yyDollar[1].sym.Def.Used = true
pkg = yyDollar[1].sym.Def.Pkg pkg = yyDollar[1].sym.Def.Pkg
} }
yyVAL.sym = restrictlookup(yyDollar[3].sym.Name, pkg) yyVAL.sym = restrictlookup(yyDollar[3].sym.Name, pkg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment