2015-03-23 17:02:11 -07: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
|
|
|
|
|
|
2015-06-12 11:01:13 -07:00
|
|
|
import "fmt"
|
2015-03-23 17:02:11 -07:00
|
|
|
|
2015-05-27 14:52:22 -07:00
|
|
|
func applyRewrite(f *Func, rb func(*Block) bool, rv func(*Value, *Config) bool) {
|
2015-03-23 17:02:11 -07:00
|
|
|
// repeat rewrites until we find no more rewrites
|
2015-05-28 16:45:33 -07:00
|
|
|
var curb *Block
|
2015-04-15 15:51:25 -07:00
|
|
|
var curv *Value
|
|
|
|
|
defer func() {
|
2015-05-28 16:45:33 -07:00
|
|
|
if curb != nil {
|
2015-06-24 14:03:39 -07:00
|
|
|
curb.Fatalf("panic during rewrite of block %s\n", curb.LongString())
|
2015-05-28 16:45:33 -07:00
|
|
|
}
|
2015-04-15 15:51:25 -07:00
|
|
|
if curv != nil {
|
2015-06-24 14:03:39 -07:00
|
|
|
curv.Fatalf("panic during rewrite of value %s\n", curv.LongString())
|
2015-04-15 15:51:25 -07:00
|
|
|
// TODO(khr): print source location also
|
|
|
|
|
}
|
|
|
|
|
}()
|
2015-05-27 14:52:22 -07:00
|
|
|
config := f.Config
|
2015-03-23 17:02:11 -07:00
|
|
|
for {
|
|
|
|
|
change := false
|
|
|
|
|
for _, b := range f.Blocks {
|
2015-07-09 21:24:12 -06:00
|
|
|
if b.Kind == BlockDead {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2015-05-28 16:45:33 -07:00
|
|
|
if b.Control != nil && b.Control.Op == OpCopy {
|
|
|
|
|
for b.Control.Op == OpCopy {
|
|
|
|
|
b.Control = b.Control.Args[0]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
curb = b
|
|
|
|
|
if rb(b) {
|
|
|
|
|
change = true
|
|
|
|
|
}
|
|
|
|
|
curb = nil
|
2015-03-23 17:02:11 -07:00
|
|
|
for _, v := range b.Values {
|
2015-05-18 16:44:20 -07:00
|
|
|
// elide any copies generated during rewriting
|
|
|
|
|
for i, a := range v.Args {
|
|
|
|
|
if a.Op != OpCopy {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2015-07-17 10:45:48 -06:00
|
|
|
// Rewriting can generate OpCopy loops.
|
|
|
|
|
// They are harmless (see removePredecessor),
|
|
|
|
|
// but take care not to loop forever.
|
|
|
|
|
for a.Op == OpCopy && a != a.Args[0] {
|
2015-05-18 16:44:20 -07:00
|
|
|
a = a.Args[0]
|
|
|
|
|
}
|
|
|
|
|
v.Args[i] = a
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// apply rewrite function
|
2015-04-15 15:51:25 -07:00
|
|
|
curv = v
|
2015-05-27 14:52:22 -07:00
|
|
|
if rv(v, config) {
|
2015-03-23 17:02:11 -07:00
|
|
|
change = true
|
|
|
|
|
}
|
2015-05-28 16:45:33 -07:00
|
|
|
curv = nil
|
2015-03-23 17:02:11 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if !change {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Common functions called from rewriting rules
|
|
|
|
|
|
|
|
|
|
func is64BitInt(t Type) bool {
|
2015-04-15 15:51:25 -07:00
|
|
|
return t.Size() == 8 && t.IsInteger()
|
2015-03-23 17:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func is32BitInt(t Type) bool {
|
2015-04-15 15:51:25 -07:00
|
|
|
return t.Size() == 4 && t.IsInteger()
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-14 11:38:46 -07:00
|
|
|
func is16BitInt(t Type) bool {
|
|
|
|
|
return t.Size() == 2 && t.IsInteger()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func is8BitInt(t Type) bool {
|
|
|
|
|
return t.Size() == 1 && t.IsInteger()
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-15 15:51:25 -07:00
|
|
|
func isPtr(t Type) bool {
|
|
|
|
|
return t.IsPtr()
|
2015-03-23 17:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func isSigned(t Type) bool {
|
2015-04-15 15:51:25 -07:00
|
|
|
return t.IsSigned()
|
2015-03-26 10:49:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func typeSize(t Type) int64 {
|
2015-04-15 15:51:25 -07:00
|
|
|
return t.Size()
|
2015-03-23 17:02:11 -07:00
|
|
|
}
|
2015-05-18 16:44:20 -07:00
|
|
|
|
2015-06-12 11:01:13 -07:00
|
|
|
// addOff adds two int64 offsets. Fails if wraparound happens.
|
2015-06-11 21:29:25 -07:00
|
|
|
func addOff(x, y int64) int64 {
|
2015-05-18 16:44:20 -07:00
|
|
|
z := x + y
|
|
|
|
|
// x and y have same sign and z has a different sign => overflow
|
|
|
|
|
if x^y >= 0 && x^z < 0 {
|
2015-06-12 11:01:13 -07:00
|
|
|
panic(fmt.Sprintf("offset overflow %d %d", x, y))
|
2015-05-18 16:44:20 -07:00
|
|
|
}
|
|
|
|
|
return z
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-19 21:02:28 -07:00
|
|
|
func mergeSym(x, y interface{}) interface{} {
|
|
|
|
|
if x == nil {
|
|
|
|
|
return y
|
|
|
|
|
}
|
|
|
|
|
if y == nil {
|
|
|
|
|
return x
|
|
|
|
|
}
|
|
|
|
|
panic(fmt.Sprintf("mergeSym with two non-nil syms %s %s", x, y))
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-18 16:44:20 -07:00
|
|
|
func inBounds(idx, len int64) bool {
|
|
|
|
|
return idx >= 0 && idx < len
|
|
|
|
|
}
|
2015-07-17 12:26:35 +02:00
|
|
|
|
|
|
|
|
// log2 returns logarithm in base of n.
|
|
|
|
|
// expects n to be a power of 2.
|
|
|
|
|
func log2(n int64) (l int64) {
|
|
|
|
|
for n > 1 {
|
|
|
|
|
l++
|
|
|
|
|
n >>= 1
|
|
|
|
|
}
|
|
|
|
|
return l
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// isPowerOfTwo returns true if n is a power of 2.
|
|
|
|
|
func isPowerOfTwo(n int64) bool {
|
|
|
|
|
return n > 0 && n&(n-1) == 0
|
|
|
|
|
}
|