Skip to content

Commit 765c0f3

Browse files
tznealrsc
authored andcommitted
cmd/compile: fix half multiply issue
In walkdiv, an OMUL node was created and passed to typecheck, before the op was changed back to OHMUL. In some instances, the node that came back was an evaluated literal constant that occurred with a full multiply. The end result was a literal node with a non-shifted value and an OHMUL op. This change causes code to be generated for the OHMUL. Fixes #11358 Fixes #11369 Change-Id: If42a98c6830d07fe065d5ca57717704fb8cfbd33 Reviewed-on: https://go-review.googlesource.com/11400 Reviewed-by: Russ Cox <[email protected]>
1 parent cd0a8ed commit 765c0f3

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

src/cmd/compile/internal/gc/align.go

+1
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ func typeinit() {
554554
okfor[OLE] = okforcmp[:]
555555
okfor[OLT] = okforcmp[:]
556556
okfor[OMOD] = okforand[:]
557+
okfor[OHMUL] = okforarith[:]
557558
okfor[OMUL] = okforarith[:]
558559
okfor[ONE] = okforeq[:]
559560
okfor[OOR] = okforand[:]

src/cmd/compile/internal/gc/typecheck.go

+1
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ OpSwitch:
524524
OEQ,
525525
OGE,
526526
OGT,
527+
OHMUL,
527528
OLE,
528529
OLT,
529530
OLSH,

src/cmd/compile/internal/gc/walk.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -3599,9 +3599,8 @@ func walkdiv(np **Node, init **NodeList) {
35993599
nc := Nod(OXXX, nil, nil)
36003600

36013601
Nodconst(nc, nl.Type, int64(m.Um))
3602-
n1 := Nod(OMUL, nl, nc)
3602+
n1 := Nod(OHMUL, nl, nc)
36033603
typecheck(&n1, Erv)
3604-
n1.Op = OHMUL
36053604
if m.Ua != 0 {
36063605
// Select a Go type with (at least) twice the width.
36073606
var twide *Type
@@ -3644,9 +3643,8 @@ func walkdiv(np **Node, init **NodeList) {
36443643
nc := Nod(OXXX, nil, nil)
36453644

36463645
Nodconst(nc, nl.Type, m.Sm)
3647-
n1 := Nod(OMUL, nl, nc)
3646+
n1 := Nod(OHMUL, nl, nc)
36483647
typecheck(&n1, Erv)
3649-
n1.Op = OHMUL
36503648
if m.Sm < 0 {
36513649
// add the numerator.
36523650
n1 = Nod(OADD, n1, nl)

test/fixedbugs/issue11369.go

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// run
2+
3+
// Copyright 2015 The Go Authors. All rights reserved.
4+
// Use of this source code is governed by a BSD-style
5+
// license that can be found in the LICENSE file.
6+
7+
// Test that the half multiply resulting from a division
8+
// by a constant generates correct code.
9+
10+
package main
11+
12+
func main() {
13+
var _ = 7 / "0"[0] // test case from #11369
14+
var _ = 1 / "."[0] // test case from #11358
15+
var x = 0 / "0"[0]
16+
var y = 48 / "0"[0]
17+
var z = 5 * 48 / "0"[0]
18+
if x != 0 {
19+
panic("expected 0")
20+
}
21+
if y != 1 {
22+
panic("expected 1")
23+
}
24+
if z != 5 {
25+
panic("expected 5")
26+
}
27+
}

0 commit comments

Comments
 (0)