Skip to content

Commit 92b33c0

Browse files
committed
handle properly booleans from v, ok
Change-Id: Ibb6e978384c84b2894dabb2319f8121aab27cac1
1 parent a957ba9 commit 92b33c0

File tree

2 files changed

+46
-11
lines changed

2 files changed

+46
-11
lines changed

src/cmd/compile/internal/devirtualize/devirtualize.go

+17-11
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,23 @@ func analyzeAssignments(n ir.Node, analyzed map[*ir.Name]*types.Type) *types.Typ
343343
}
344344
case ir.OAS2DOTTYPE:
345345
n := n.(*ir.AssignListStmt)
346-
for _, p := range n.Lhs {
347-
if isName(p) {
348-
return handleNode(ir.OAS2DOTTYPE, n.Rhs[0])
349-
}
346+
if isName(n.Lhs[0]) {
347+
return handleNode(ir.OAS2DOTTYPE, n.Rhs[0])
348+
}
349+
if isName(n.Lhs[1]) {
350+
// boolean, nothing to devirtualize.
351+
typ = nil
352+
return true
353+
}
354+
case ir.OAS2MAPR, ir.OAS2RECV, ir.OSELRECV2:
355+
n := n.(*ir.AssignListStmt)
356+
if isName(n.Lhs[0]) {
357+
return handleType(n.Op(), n.Pos(), n.Rhs[0].Type())
358+
}
359+
if isName(n.Lhs[1]) {
360+
// boolean, nothing to devirtualize.
361+
typ = nil
362+
return true
350363
}
351364
case ir.OAS2FUNC:
352365
n := n.(*ir.AssignListStmt)
@@ -368,13 +381,6 @@ func analyzeAssignments(n ir.Node, analyzed map[*ir.Name]*types.Type) *types.Typ
368381
return true
369382
}
370383
}
371-
case ir.OAS2MAPR, ir.OAS2RECV, ir.OSELRECV2:
372-
n := n.(*ir.AssignListStmt)
373-
for _, p := range n.Lhs {
374-
if isName(p) {
375-
return handleType(n.Op(), n.Pos(), n.Rhs[0].Type())
376-
}
377-
}
378384
case ir.ORANGE:
379385
n := n.(*ir.RangeStmt)
380386
xTyp := n.X.Type()

test/devirtualization.go

+29
Original file line numberDiff line numberDiff line change
@@ -1043,6 +1043,35 @@ func selfAssigns() {
10431043
}
10441044
}
10451045

1046+
func boolNoDevirt() {
1047+
{
1048+
m := make(map[int]*Impl) // ERROR "does not escape"
1049+
var v any = &Impl{} // ERROR "escapes"
1050+
_, v = m[0] // ERROR "escapes"
1051+
v.(A).A()
1052+
}
1053+
{
1054+
m := make(chan *Impl)
1055+
var v any = &Impl{} // ERROR "escapes"
1056+
select {
1057+
case _, v = <-m: // ERROR "escapes"
1058+
}
1059+
v.(A).A()
1060+
}
1061+
{
1062+
m := make(chan *Impl)
1063+
var v any = &Impl{} // ERROR "escapes"
1064+
_, v = <-m // ERROR "escapes"
1065+
v.(A).A()
1066+
}
1067+
{
1068+
var a any = 4 // ERROR "does not escape"
1069+
var v any = &Impl{} // ERROR "escapes"
1070+
_, v = a.(int) // ERROR "escapes"
1071+
v.(A).A()
1072+
}
1073+
}
1074+
10461075
func addrTaken() {
10471076
{
10481077
var a A = &Impl{} // ERROR "escapes"

0 commit comments

Comments
 (0)