mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: introduce special ssa Aux type for calls
This is prerequisite to moving call expansion later into SSA, and probably a good idea anyway. Passes tests. This is the first minimal CL that does a 1-for-1 substitution of *ssa.AuxCall for *obj.LSym. Next step (next CL) is to make this change for all calls so that additional information can be stored in AuxCall. Change-Id: Ia3a7715648fd9fb1a176850767a726e6f5b959eb Reviewed-on: https://go-review.googlesource.com/c/go/+/237680 Trust: David Chase <drchase@google.com> Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
This commit is contained in:
parent
7ee35cb301
commit
b4ef49e527
27 changed files with 164 additions and 123 deletions
|
|
@ -861,7 +861,7 @@ func (lv *Liveness) hasStackMap(v *ssa.Value) bool {
|
||||||
// typedmemclr and typedmemmove are write barriers and
|
// typedmemclr and typedmemmove are write barriers and
|
||||||
// deeply non-preemptible. They are unsafe points and
|
// deeply non-preemptible. They are unsafe points and
|
||||||
// hence should not have liveness maps.
|
// hence should not have liveness maps.
|
||||||
if sym, _ := v.Aux.(*obj.LSym); sym == typedmemclr || sym == typedmemmove {
|
if sym, ok := v.Aux.(*ssa.AuxCall); ok && (sym.Fn == typedmemclr || sym.Fn == typedmemmove) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
|
@ -1231,8 +1231,8 @@ func (lv *Liveness) showlive(v *ssa.Value, live bvec) {
|
||||||
s := "live at "
|
s := "live at "
|
||||||
if v == nil {
|
if v == nil {
|
||||||
s += fmt.Sprintf("entry to %s:", lv.fn.funcname())
|
s += fmt.Sprintf("entry to %s:", lv.fn.funcname())
|
||||||
} else if sym, ok := v.Aux.(*obj.LSym); ok {
|
} else if sym, ok := v.Aux.(*ssa.AuxCall); ok && sym.Fn != nil {
|
||||||
fn := sym.Name
|
fn := sym.Fn.Name
|
||||||
if pos := strings.Index(fn, "."); pos >= 0 {
|
if pos := strings.Index(fn, "."); pos >= 0 {
|
||||||
fn = fn[pos+1:]
|
fn = fn[pos+1:]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -805,6 +805,11 @@ func (s *state) newValue2(op ssa.Op, t *types.Type, arg0, arg1 *ssa.Value) *ssa.
|
||||||
return s.curBlock.NewValue2(s.peekPos(), op, t, arg0, arg1)
|
return s.curBlock.NewValue2(s.peekPos(), op, t, arg0, arg1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// newValue2A adds a new value with two arguments and an aux value to the current block.
|
||||||
|
func (s *state) newValue2A(op ssa.Op, t *types.Type, aux interface{}, arg0, arg1 *ssa.Value) *ssa.Value {
|
||||||
|
return s.curBlock.NewValue2A(s.peekPos(), op, t, aux, arg0, arg1)
|
||||||
|
}
|
||||||
|
|
||||||
// newValue2Apos adds a new value with two arguments and an aux value to the current block.
|
// newValue2Apos adds a new value with two arguments and an aux value to the current block.
|
||||||
// isStmt determines whether the created values may be a statement or not
|
// isStmt determines whether the created values may be a statement or not
|
||||||
// (i.e., false means never, yes means maybe).
|
// (i.e., false means never, yes means maybe).
|
||||||
|
|
@ -4297,10 +4302,10 @@ func (s *state) openDeferExit() {
|
||||||
v := s.load(r.closure.Type.Elem(), r.closure)
|
v := s.load(r.closure.Type.Elem(), r.closure)
|
||||||
s.maybeNilCheckClosure(v, callDefer)
|
s.maybeNilCheckClosure(v, callDefer)
|
||||||
codeptr := s.rawLoad(types.Types[TUINTPTR], v)
|
codeptr := s.rawLoad(types.Types[TUINTPTR], v)
|
||||||
call = s.newValue3(ssa.OpClosureCall, types.TypeMem, codeptr, v, s.mem())
|
call = s.newValue3A(ssa.OpClosureCall, types.TypeMem, nil, codeptr, v, s.mem())
|
||||||
} else {
|
} else {
|
||||||
// Do a static call if the original call was a static function or method
|
// Do a static call if the original call was a static function or method
|
||||||
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, fn.Sym.Linksym(), s.mem())
|
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: fn.Sym.Linksym()}, s.mem())
|
||||||
}
|
}
|
||||||
call.AuxInt = stksize
|
call.AuxInt = stksize
|
||||||
s.vars[&memVar] = call
|
s.vars[&memVar] = call
|
||||||
|
|
@ -4432,7 +4437,7 @@ func (s *state) call(n *Node, k callKind) *ssa.Value {
|
||||||
// Call runtime.deferprocStack with pointer to _defer record.
|
// Call runtime.deferprocStack with pointer to _defer record.
|
||||||
arg0 := s.constOffPtrSP(types.Types[TUINTPTR], Ctxt.FixedFrameSize())
|
arg0 := s.constOffPtrSP(types.Types[TUINTPTR], Ctxt.FixedFrameSize())
|
||||||
s.store(types.Types[TUINTPTR], arg0, addr)
|
s.store(types.Types[TUINTPTR], arg0, addr)
|
||||||
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, deferprocStack, s.mem())
|
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: deferprocStack}, s.mem())
|
||||||
if stksize < int64(Widthptr) {
|
if stksize < int64(Widthptr) {
|
||||||
// We need room for both the call to deferprocStack and the call to
|
// We need room for both the call to deferprocStack and the call to
|
||||||
// the deferred function.
|
// the deferred function.
|
||||||
|
|
@ -4477,9 +4482,9 @@ func (s *state) call(n *Node, k callKind) *ssa.Value {
|
||||||
// call target
|
// call target
|
||||||
switch {
|
switch {
|
||||||
case k == callDefer:
|
case k == callDefer:
|
||||||
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, deferproc, s.mem())
|
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: deferproc}, s.mem())
|
||||||
case k == callGo:
|
case k == callGo:
|
||||||
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, newproc, s.mem())
|
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: newproc}, s.mem())
|
||||||
case closure != nil:
|
case closure != nil:
|
||||||
// rawLoad because loading the code pointer from a
|
// rawLoad because loading the code pointer from a
|
||||||
// closure is always safe, but IsSanitizerSafeAddr
|
// closure is always safe, but IsSanitizerSafeAddr
|
||||||
|
|
@ -4487,11 +4492,11 @@ func (s *state) call(n *Node, k callKind) *ssa.Value {
|
||||||
// critical that we not clobber any arguments already
|
// critical that we not clobber any arguments already
|
||||||
// stored onto the stack.
|
// stored onto the stack.
|
||||||
codeptr = s.rawLoad(types.Types[TUINTPTR], closure)
|
codeptr = s.rawLoad(types.Types[TUINTPTR], closure)
|
||||||
call = s.newValue3(ssa.OpClosureCall, types.TypeMem, codeptr, closure, s.mem())
|
call = s.newValue3A(ssa.OpClosureCall, types.TypeMem, nil, codeptr, closure, s.mem())
|
||||||
case codeptr != nil:
|
case codeptr != nil:
|
||||||
call = s.newValue2(ssa.OpInterCall, types.TypeMem, codeptr, s.mem())
|
call = s.newValue2A(ssa.OpInterCall, types.TypeMem, nil, codeptr, s.mem())
|
||||||
case sym != nil:
|
case sym != nil:
|
||||||
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, sym.Linksym(), s.mem())
|
call = s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: sym.Linksym()}, s.mem())
|
||||||
default:
|
default:
|
||||||
s.Fatalf("bad call type %v %v", n.Op, n)
|
s.Fatalf("bad call type %v %v", n.Op, n)
|
||||||
}
|
}
|
||||||
|
|
@ -4924,7 +4929,7 @@ func (s *state) rtcall(fn *obj.LSym, returns bool, results []*types.Type, args .
|
||||||
off = Rnd(off, int64(Widthreg))
|
off = Rnd(off, int64(Widthreg))
|
||||||
|
|
||||||
// Issue call
|
// Issue call
|
||||||
call := s.newValue1A(ssa.OpStaticCall, types.TypeMem, fn, s.mem())
|
call := s.newValue1A(ssa.OpStaticCall, types.TypeMem, &ssa.AuxCall{Fn: fn}, s.mem())
|
||||||
s.vars[&memVar] = call
|
s.vars[&memVar] = call
|
||||||
|
|
||||||
if !returns {
|
if !returns {
|
||||||
|
|
@ -6355,6 +6360,9 @@ func AddAux2(a *obj.Addr, v *ssa.Value, offset int64) {
|
||||||
}
|
}
|
||||||
// Add symbol's offset from its base register.
|
// Add symbol's offset from its base register.
|
||||||
switch n := v.Aux.(type) {
|
switch n := v.Aux.(type) {
|
||||||
|
case *ssa.AuxCall:
|
||||||
|
a.Name = obj.NAME_EXTERN
|
||||||
|
a.Sym = n.Fn
|
||||||
case *obj.LSym:
|
case *obj.LSym:
|
||||||
a.Name = obj.NAME_EXTERN
|
a.Name = obj.NAME_EXTERN
|
||||||
a.Sym = n
|
a.Sym = n
|
||||||
|
|
@ -6541,10 +6549,10 @@ func (s *SSAGenState) Call(v *ssa.Value) *obj.Prog {
|
||||||
} else {
|
} else {
|
||||||
p.Pos = v.Pos.WithNotStmt()
|
p.Pos = v.Pos.WithNotStmt()
|
||||||
}
|
}
|
||||||
if sym, ok := v.Aux.(*obj.LSym); ok {
|
if sym, ok := v.Aux.(*ssa.AuxCall); ok && sym.Fn != nil {
|
||||||
p.To.Type = obj.TYPE_MEM
|
p.To.Type = obj.TYPE_MEM
|
||||||
p.To.Name = obj.NAME_EXTERN
|
p.To.Name = obj.NAME_EXTERN
|
||||||
p.To.Sym = sym
|
p.To.Sym = sym.Fn
|
||||||
} else {
|
} else {
|
||||||
// TODO(mdempsky): Can these differences be eliminated?
|
// TODO(mdempsky): Can these differences be eliminated?
|
||||||
switch thearch.LinkArch.Family {
|
switch thearch.LinkArch.Family {
|
||||||
|
|
@ -6567,12 +6575,14 @@ func (s *SSAGenState) PrepareCall(v *ssa.Value) {
|
||||||
idx := s.livenessMap.Get(v)
|
idx := s.livenessMap.Get(v)
|
||||||
if !idx.StackMapValid() {
|
if !idx.StackMapValid() {
|
||||||
// See Liveness.hasStackMap.
|
// See Liveness.hasStackMap.
|
||||||
if sym, _ := v.Aux.(*obj.LSym); !(sym == typedmemclr || sym == typedmemmove) {
|
if sym, ok := v.Aux.(*ssa.AuxCall); !ok || !(sym.Fn == typedmemclr || sym.Fn == typedmemmove) {
|
||||||
Fatalf("missing stack map index for %v", v.LongString())
|
Fatalf("missing stack map index for %v", v.LongString())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if sym, _ := v.Aux.(*obj.LSym); sym == Deferreturn {
|
call, ok := v.Aux.(*ssa.AuxCall)
|
||||||
|
|
||||||
|
if ok && call.Fn == Deferreturn {
|
||||||
// Deferred calls will appear to be returning to
|
// Deferred calls will appear to be returning to
|
||||||
// the CALL deferreturn(SB) that we are about to emit.
|
// the CALL deferreturn(SB) that we are about to emit.
|
||||||
// However, the stack trace code will show the line
|
// However, the stack trace code will show the line
|
||||||
|
|
@ -6584,11 +6594,11 @@ func (s *SSAGenState) PrepareCall(v *ssa.Value) {
|
||||||
thearch.Ginsnopdefer(s.pp)
|
thearch.Ginsnopdefer(s.pp)
|
||||||
}
|
}
|
||||||
|
|
||||||
if sym, ok := v.Aux.(*obj.LSym); ok {
|
if ok {
|
||||||
// Record call graph information for nowritebarrierrec
|
// Record call graph information for nowritebarrierrec
|
||||||
// analysis.
|
// analysis.
|
||||||
if nowritebarrierrecCheck != nil {
|
if nowritebarrierrecCheck != nil {
|
||||||
nowritebarrierrecCheck.recordCall(s.pp.curfn, sym, v.Pos)
|
nowritebarrierrecCheck.recordCall(s.pp.curfn, call.Fn, v.Pos)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -165,6 +165,18 @@ func checkFunc(f *Func) {
|
||||||
f.Fatalf("value %v has Aux type %T, want string", v, v.Aux)
|
f.Fatalf("value %v has Aux type %T, want string", v, v.Aux)
|
||||||
}
|
}
|
||||||
canHaveAux = true
|
canHaveAux = true
|
||||||
|
case auxCallOff:
|
||||||
|
canHaveAuxInt = true
|
||||||
|
fallthrough
|
||||||
|
case auxCall:
|
||||||
|
if ac, ok := v.Aux.(*AuxCall); ok {
|
||||||
|
if v.Op == OpStaticCall && ac.Fn == nil {
|
||||||
|
f.Fatalf("value %v has *AuxCall with nil Fn", v)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
f.Fatalf("value %v has Aux type %T, want *AuxCall", v, v.Aux)
|
||||||
|
}
|
||||||
|
canHaveAux = true
|
||||||
case auxSym, auxTyp:
|
case auxSym, auxTyp:
|
||||||
canHaveAux = true
|
canHaveAux = true
|
||||||
case auxSymOff, auxSymValAndOff, auxTypSize:
|
case auxSymOff, auxSymValAndOff, auxTypSize:
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@ package ssa
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"cmd/compile/internal/types"
|
"cmd/compile/internal/types"
|
||||||
|
"cmd/internal/obj"
|
||||||
"cmd/internal/src"
|
"cmd/internal/src"
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
@ -140,6 +141,12 @@ var emptyPass pass = pass{
|
||||||
name: "empty pass",
|
name: "empty pass",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AuxCallLSym returns an AuxCall initialized with an LSym that should pass "check"
|
||||||
|
// as the Aux of a static call.
|
||||||
|
func AuxCallLSym(name string) *AuxCall {
|
||||||
|
return &AuxCall{Fn: &obj.LSym{}}
|
||||||
|
}
|
||||||
|
|
||||||
// Fun takes the name of an entry bloc and a series of Bloc calls, and
|
// Fun takes the name of an entry bloc and a series of Bloc calls, and
|
||||||
// returns a fun containing the composed Func. entry must be a name
|
// returns a fun containing the composed Func. entry must be a name
|
||||||
// supplied to one of the Bloc functions. Each of the bloc names and
|
// supplied to one of the Bloc functions. Each of the bloc names and
|
||||||
|
|
|
||||||
|
|
@ -142,10 +142,10 @@ func TestFuseSideEffects(t *testing.T) {
|
||||||
Valu("b", OpArg, c.config.Types.Bool, 0, nil),
|
Valu("b", OpArg, c.config.Types.Bool, 0, nil),
|
||||||
If("b", "then", "else")),
|
If("b", "then", "else")),
|
||||||
Bloc("then",
|
Bloc("then",
|
||||||
Valu("call1", OpStaticCall, types.TypeMem, 0, nil, "mem"),
|
Valu("call1", OpStaticCall, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
|
||||||
Goto("empty")),
|
Goto("empty")),
|
||||||
Bloc("else",
|
Bloc("else",
|
||||||
Valu("call2", OpStaticCall, types.TypeMem, 0, nil, "mem"),
|
Valu("call2", OpStaticCall, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
|
||||||
Goto("empty")),
|
Goto("empty")),
|
||||||
Bloc("empty",
|
Bloc("empty",
|
||||||
Goto("loop")),
|
Goto("loop")),
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@ func init() {
|
||||||
faultOnNilArg0: true,
|
faultOnNilArg0: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("DX"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("DX"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -767,7 +767,7 @@ func init() {
|
||||||
faultOnNilArg0: true,
|
faultOnNilArg0: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("DX"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("DX"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -471,7 +471,7 @@ func init() {
|
||||||
{name: "CSEL0", argLength: 2, reg: gp1flags1, asm: "CSEL", aux: "CCop"}, // auxint(flags) ? arg0 : 0
|
{name: "CSEL0", argLength: 2, reg: gp1flags1, asm: "CSEL", aux: "CCop"}, // auxint(flags) ? arg0 : 0
|
||||||
|
|
||||||
// function calls
|
// function calls
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R26"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R26"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -428,7 +428,7 @@ func init() {
|
||||||
{name: "SRAcond", argLength: 3, reg: gp2flags1, asm: "SRA"}, // arg0 >> 31 if flags indicates HS, arg0 >> arg1 otherwise, signed shift, arg2=flags
|
{name: "SRAcond", argLength: 3, reg: gp2flags1, asm: "SRA"}, // arg0 >> 31 if flags indicates HS, arg0 >> arg1 otherwise, signed shift, arg2=flags
|
||||||
|
|
||||||
// function calls
|
// function calls
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R7"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R7"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -273,7 +273,7 @@ func init() {
|
||||||
{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"}, // float64 -> float32
|
{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"}, // float64 -> float32
|
||||||
|
|
||||||
// function calls
|
// function calls
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R22"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R22"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -255,7 +255,7 @@ func init() {
|
||||||
{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"}, // float64 -> float32
|
{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"}, // float64 -> float32
|
||||||
|
|
||||||
// function calls
|
// function calls
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R22"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{gpsp, buildReg("R22"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -414,7 +414,7 @@ func init() {
|
||||||
{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
|
{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
|
||||||
{name: "LoweredRound64F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
|
{name: "LoweredRound64F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
|
||||||
|
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{callptr, ctxt, 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{callptr, ctxt, 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{callptr}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{callptr}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -224,9 +224,9 @@ func init() {
|
||||||
{name: "MOVconvert", argLength: 2, reg: gp11, asm: "MOV"}, // arg0, but converted to int/ptr as appropriate; arg1=mem
|
{name: "MOVconvert", argLength: 2, reg: gp11, asm: "MOV"}, // arg0, but converted to int/ptr as appropriate; arg1=mem
|
||||||
|
|
||||||
// Calls
|
// Calls
|
||||||
{name: "CALLstatic", argLength: 1, reg: call, aux: "SymOff", call: true, symEffect: "None"}, // call static function aux.(*gc.Sym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: call, aux: "CallOff", call: true}, // call static function aux.(*gc.Sym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: callClosure, aux: "Int64", call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: callClosure, aux: "Int64", call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: callInter, aux: "Int64", call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: callInter, aux: "Int64", call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
// Generic moves and zeros
|
// Generic moves and zeros
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -475,7 +475,7 @@ func init() {
|
||||||
|
|
||||||
{name: "CLEAR", argLength: 2, reg: regInfo{inputs: []regMask{ptr, 0}}, asm: "CLEAR", aux: "SymValAndOff", typ: "Mem", clobberFlags: true, faultOnNilArg0: true, symEffect: "Write"},
|
{name: "CLEAR", argLength: 2, reg: regInfo{inputs: []regMask{ptr, 0}}, asm: "CLEAR", aux: "SymValAndOff", typ: "Mem", clobberFlags: true, faultOnNilArg0: true, symEffect: "Write"},
|
||||||
|
|
||||||
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", clobberFlags: true, call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{ptrsp, buildReg("R12"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "CALLclosure", argLength: 3, reg: regInfo{inputs: []regMask{ptrsp, buildReg("R12"), 0}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{ptr}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "CALLinter", argLength: 2, reg: regInfo{inputs: []regMask{ptr}, clobbers: callerSave}, aux: "Int64", clobberFlags: true, call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@ func init() {
|
||||||
)
|
)
|
||||||
|
|
||||||
var WasmOps = []opData{
|
var WasmOps = []opData{
|
||||||
{name: "LoweredStaticCall", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "SymOff", call: true, symEffect: "None"}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
{name: "LoweredStaticCall", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", call: true}, // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
|
||||||
{name: "LoweredClosureCall", argLength: 3, reg: regInfo{inputs: []regMask{gp, gp, 0}, clobbers: callerSave}, aux: "Int64", call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
{name: "LoweredClosureCall", argLength: 3, reg: regInfo{inputs: []regMask{gp, gp, 0}, clobbers: callerSave}, aux: "Int64", call: true}, // call function via closure. arg0=codeptr, arg1=closure, arg2=mem, auxint=argsize, returns mem
|
||||||
{name: "LoweredInterCall", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
{name: "LoweredInterCall", argLength: 2, reg: regInfo{inputs: []regMask{gp}, clobbers: callerSave}, aux: "Int64", call: true}, // call fn by pointer. arg0=codeptr, arg1=mem, auxint=argsize, returns mem
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1933,30 +1933,30 @@
|
||||||
// recognize runtime.newobject and don't Zero/Nilcheck it
|
// recognize runtime.newobject and don't Zero/Nilcheck it
|
||||||
(Zero (Load (OffPtr [c] (SP)) mem) mem)
|
(Zero (Load (OffPtr [c] (SP)) mem) mem)
|
||||||
&& mem.Op == OpStaticCall
|
&& mem.Op == OpStaticCall
|
||||||
&& isSameSym(mem.Aux, "runtime.newobject")
|
&& isSameCall(mem.Aux, "runtime.newobject")
|
||||||
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
||||||
=> mem
|
=> mem
|
||||||
(Store (Load (OffPtr [c] (SP)) mem) x mem)
|
(Store (Load (OffPtr [c] (SP)) mem) x mem)
|
||||||
&& isConstZero(x)
|
&& isConstZero(x)
|
||||||
&& mem.Op == OpStaticCall
|
&& mem.Op == OpStaticCall
|
||||||
&& isSameSym(mem.Aux, "runtime.newobject")
|
&& isSameCall(mem.Aux, "runtime.newobject")
|
||||||
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
||||||
=> mem
|
=> mem
|
||||||
(Store (OffPtr (Load (OffPtr [c] (SP)) mem)) x mem)
|
(Store (OffPtr (Load (OffPtr [c] (SP)) mem)) x mem)
|
||||||
&& isConstZero(x)
|
&& isConstZero(x)
|
||||||
&& mem.Op == OpStaticCall
|
&& mem.Op == OpStaticCall
|
||||||
&& isSameSym(mem.Aux, "runtime.newobject")
|
&& isSameCall(mem.Aux, "runtime.newobject")
|
||||||
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
||||||
=> mem
|
=> mem
|
||||||
// nil checks just need to rewrite to something useless.
|
// nil checks just need to rewrite to something useless.
|
||||||
// they will be deadcode eliminated soon afterwards.
|
// they will be deadcode eliminated soon afterwards.
|
||||||
(NilCheck (Load (OffPtr [c] (SP)) (StaticCall {sym} _)) _)
|
(NilCheck (Load (OffPtr [c] (SP)) (StaticCall {sym} _)) _)
|
||||||
&& symNamed(sym, "runtime.newobject")
|
&& isSameCall(sym, "runtime.newobject")
|
||||||
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
||||||
&& warnRule(fe.Debug_checknil(), v, "removed nil check")
|
&& warnRule(fe.Debug_checknil(), v, "removed nil check")
|
||||||
=> (Invalid)
|
=> (Invalid)
|
||||||
(NilCheck (OffPtr (Load (OffPtr [c] (SP)) (StaticCall {sym} _))) _)
|
(NilCheck (OffPtr (Load (OffPtr [c] (SP)) (StaticCall {sym} _))) _)
|
||||||
&& symNamed(sym, "runtime.newobject")
|
&& isSameCall(sym, "runtime.newobject")
|
||||||
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
&& c == config.ctxt.FixedFrameSize() + config.RegSize // offset of return value
|
||||||
&& warnRule(fe.Debug_checknil(), v, "removed nil check")
|
&& warnRule(fe.Debug_checknil(), v, "removed nil check")
|
||||||
=> (Invalid)
|
=> (Invalid)
|
||||||
|
|
@ -2010,7 +2010,7 @@
|
||||||
// See the comment in op Move in genericOps.go for discussion of the type.
|
// See the comment in op Move in genericOps.go for discussion of the type.
|
||||||
(StaticCall {sym} s1:(Store _ (Const(64|32) [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
(StaticCall {sym} s1:(Store _ (Const(64|32) [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
||||||
&& sz >= 0
|
&& sz >= 0
|
||||||
&& symNamed(sym, "runtime.memmove")
|
&& isSameCall(sym, "runtime.memmove")
|
||||||
&& t.IsPtr() // avoids TUINTPTR, see issue 30061
|
&& t.IsPtr() // avoids TUINTPTR, see issue 30061
|
||||||
&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
|
&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
|
||||||
&& isInlinableMemmove(dst, src, int64(sz), config)
|
&& isInlinableMemmove(dst, src, int64(sz), config)
|
||||||
|
|
|
||||||
|
|
@ -387,9 +387,9 @@ var genericOps = []opData{
|
||||||
// as a phantom first argument.
|
// as a phantom first argument.
|
||||||
// TODO(josharian): ClosureCall and InterCall should have Int32 aux
|
// TODO(josharian): ClosureCall and InterCall should have Int32 aux
|
||||||
// to match StaticCall's 32 bit arg size limit.
|
// to match StaticCall's 32 bit arg size limit.
|
||||||
{name: "ClosureCall", argLength: 3, aux: "Int64", call: true}, // arg0=code pointer, arg1=context ptr, arg2=memory. auxint=arg size. Returns memory.
|
{name: "ClosureCall", argLength: 3, aux: "Int64", call: true}, // arg0=code pointer, arg1=context ptr, arg2=memory. auxint=arg size. Returns memory.
|
||||||
{name: "StaticCall", argLength: 1, aux: "SymOff", call: true, symEffect: "None"}, // call function aux.(*obj.LSym), arg0=memory. auxint=arg size. Returns memory.
|
{name: "StaticCall", argLength: 1, aux: "CallOff", call: true}, // call function aux.(*obj.LSym), arg0=memory. auxint=arg size. Returns memory.
|
||||||
{name: "InterCall", argLength: 2, aux: "Int64", call: true}, // interface call. arg0=code pointer, arg1=memory, auxint=arg size. Returns memory.
|
{name: "InterCall", argLength: 2, aux: "Int64", call: true}, // interface call. arg0=code pointer, arg1=memory, auxint=arg size. Returns memory.
|
||||||
|
|
||||||
// Conversions: signed extensions, zero (unsigned) extensions, truncations
|
// Conversions: signed extensions, zero (unsigned) extensions, truncations
|
||||||
{name: "SignExt8to16", argLength: 1, typ: "Int16"},
|
{name: "SignExt8to16", argLength: 1, typ: "Int16"},
|
||||||
|
|
|
||||||
|
|
@ -1424,7 +1424,7 @@ func parseValue(val string, arch arch, loc string) (op opData, oparch, typ, auxi
|
||||||
func opHasAuxInt(op opData) bool {
|
func opHasAuxInt(op opData) bool {
|
||||||
switch op.aux {
|
switch op.aux {
|
||||||
case "Bool", "Int8", "Int16", "Int32", "Int64", "Int128", "Float32", "Float64",
|
case "Bool", "Int8", "Int16", "Int32", "Int64", "Int128", "Float32", "Float64",
|
||||||
"SymOff", "SymValAndOff", "TypSize", "ARM64BitField", "FlagConstant", "CCop":
|
"SymOff", "CallOff", "SymValAndOff", "TypSize", "ARM64BitField", "FlagConstant", "CCop":
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
|
@ -1432,7 +1432,7 @@ func opHasAuxInt(op opData) bool {
|
||||||
|
|
||||||
func opHasAux(op opData) bool {
|
func opHasAux(op opData) bool {
|
||||||
switch op.aux {
|
switch op.aux {
|
||||||
case "String", "Sym", "SymOff", "SymValAndOff", "Typ", "TypSize",
|
case "String", "Sym", "SymOff", "Call", "CallOff", "SymValAndOff", "Typ", "TypSize",
|
||||||
"S390XCCMask", "S390XRotateParams":
|
"S390XCCMask", "S390XRotateParams":
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
@ -1775,6 +1775,10 @@ func (op opData) auxType() string {
|
||||||
return "Sym"
|
return "Sym"
|
||||||
case "SymOff":
|
case "SymOff":
|
||||||
return "Sym"
|
return "Sym"
|
||||||
|
case "Call":
|
||||||
|
return "Call"
|
||||||
|
case "CallOff":
|
||||||
|
return "Call"
|
||||||
case "SymValAndOff":
|
case "SymValAndOff":
|
||||||
return "Sym"
|
return "Sym"
|
||||||
case "Typ":
|
case "Typ":
|
||||||
|
|
@ -1809,6 +1813,8 @@ func (op opData) auxIntType() string {
|
||||||
return "float32"
|
return "float32"
|
||||||
case "Float64":
|
case "Float64":
|
||||||
return "float64"
|
return "float64"
|
||||||
|
case "CallOff":
|
||||||
|
return "int32"
|
||||||
case "SymOff":
|
case "SymOff":
|
||||||
return "int32"
|
return "int32"
|
||||||
case "SymValAndOff":
|
case "SymValAndOff":
|
||||||
|
|
|
||||||
|
|
@ -246,7 +246,7 @@ func insertLoopReschedChecks(f *Func) {
|
||||||
// mem1 := call resched (mem0)
|
// mem1 := call resched (mem0)
|
||||||
// goto header
|
// goto header
|
||||||
resched := f.fe.Syslook("goschedguarded")
|
resched := f.fe.Syslook("goschedguarded")
|
||||||
mem1 := sched.NewValue1A(bb.Pos, OpStaticCall, types.TypeMem, resched, mem0)
|
mem1 := sched.NewValue1A(bb.Pos, OpStaticCall, types.TypeMem, &AuxCall{resched}, mem0)
|
||||||
sched.AddEdgeTo(h)
|
sched.AddEdgeTo(h)
|
||||||
headerMemPhi.AddArg(mem1)
|
headerMemPhi.AddArg(mem1)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -67,6 +67,17 @@ type regInfo struct {
|
||||||
|
|
||||||
type auxType int8
|
type auxType int8
|
||||||
|
|
||||||
|
type AuxCall struct {
|
||||||
|
Fn *obj.LSym
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *AuxCall) String() string {
|
||||||
|
if a.Fn == nil {
|
||||||
|
return "AuxCall(nil)"
|
||||||
|
}
|
||||||
|
return fmt.Sprintf("AuxCall(%v)", a.Fn)
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
auxNone auxType = iota
|
auxNone auxType = iota
|
||||||
auxBool // auxInt is 0/1 for false/true
|
auxBool // auxInt is 0/1 for false/true
|
||||||
|
|
@ -85,6 +96,8 @@ const (
|
||||||
auxTyp // aux is a type
|
auxTyp // aux is a type
|
||||||
auxTypSize // aux is a type, auxInt is a size, must have Aux.(Type).Size() == AuxInt
|
auxTypSize // aux is a type, auxInt is a size, must have Aux.(Type).Size() == AuxInt
|
||||||
auxCCop // aux is a ssa.Op that represents a flags-to-bool conversion (e.g. LessThan)
|
auxCCop // aux is a ssa.Op that represents a flags-to-bool conversion (e.g. LessThan)
|
||||||
|
auxCall // aux is a *ssa.AuxCall
|
||||||
|
auxCallOff // aux is a *ssa.AuxCall, AuxInt is int64 param (in+out) size
|
||||||
|
|
||||||
// architecture specific aux types
|
// architecture specific aux types
|
||||||
auxARM64BitField // aux is an arm64 bitfield lsb and width packed into auxInt
|
auxARM64BitField // aux is an arm64 bitfield lsb and width packed into auxInt
|
||||||
|
|
|
||||||
|
|
@ -5816,11 +5816,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 65519, // AX CX DX BX BP SI DI X0 X1 X2 X3 X4 X5 X6 X7
|
clobbers: 65519, // AX CX DX BX BP SI DI X0 X1 X2 X3 X4 X5 X6 X7
|
||||||
},
|
},
|
||||||
|
|
@ -13152,11 +13151,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 4294967279, // AX CX DX BX BP SI DI R8 R9 R10 R11 R12 R13 R14 R15 X0 X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15
|
clobbers: 4294967279, // AX CX DX BX BP SI DI R8 R9 R10 R11 R12 R13 R14 R15 X0 X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15
|
||||||
},
|
},
|
||||||
|
|
@ -16922,11 +16920,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 4294924287, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
|
clobbers: 4294924287, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
|
||||||
},
|
},
|
||||||
|
|
@ -20556,11 +20553,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 9223372035512336383, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 g R30 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31
|
clobbers: 9223372035512336383, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 g R30 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31
|
||||||
},
|
},
|
||||||
|
|
@ -22257,11 +22253,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 140737421246462, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R22 R24 R25 R28 g R31 F0 F2 F4 F6 F8 F10 F12 F14 F16 F18 F20 F22 F24 F26 F28 F30 HI LO
|
clobbers: 140737421246462, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R22 R24 R25 R28 g R31 F0 F2 F4 F6 F8 F10 F12 F14 F16 F18 F20 F22 F24 F26 F28 F30 HI LO
|
||||||
},
|
},
|
||||||
|
|
@ -23804,11 +23799,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 4611686018393833470, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R22 R24 R25 g R31 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31 HI LO
|
clobbers: 4611686018393833470, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R22 R24 R25 g R31 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31 HI LO
|
||||||
},
|
},
|
||||||
|
|
@ -26504,11 +26498,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 576460745860964344, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29 g F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26
|
clobbers: 576460745860964344, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29 g F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26
|
||||||
},
|
},
|
||||||
|
|
@ -27787,11 +27780,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 9223372035781033980, // X3 g X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 X20 X21 X22 X23 X24 X25 X26 X27 X28 X29 X30 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31
|
clobbers: 9223372035781033980, // X3 g X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 X20 X21 X22 X23 X24 X25 X26 X27 X28 X29 X30 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31
|
||||||
},
|
},
|
||||||
|
|
@ -31386,11 +31378,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "CALLstatic",
|
name: "CALLstatic",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
clobberFlags: true,
|
clobberFlags: true,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 4294933503, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 g R14 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
|
clobbers: 4294933503, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 g R14 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
|
||||||
},
|
},
|
||||||
|
|
@ -32031,11 +32022,10 @@ var opcodeTable = [...]opInfo{
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: "LoweredStaticCall",
|
name: "LoweredStaticCall",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
|
||||||
reg: regInfo{
|
reg: regInfo{
|
||||||
clobbers: 844424930131967, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31 g
|
clobbers: 844424930131967, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31 g
|
||||||
},
|
},
|
||||||
|
|
@ -34779,12 +34769,11 @@ var opcodeTable = [...]opInfo{
|
||||||
generic: true,
|
generic: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "StaticCall",
|
name: "StaticCall",
|
||||||
auxType: auxSymOff,
|
auxType: auxCallOff,
|
||||||
argLen: 1,
|
argLen: 1,
|
||||||
call: true,
|
call: true,
|
||||||
symEffect: SymNone,
|
generic: true,
|
||||||
generic: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "InterCall",
|
name: "InterCall",
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ func TestNoGetgLoadReg(t *testing.T) {
|
||||||
Exit("v16"),
|
Exit("v16"),
|
||||||
),
|
),
|
||||||
Bloc("b2",
|
Bloc("b2",
|
||||||
Valu("v12", OpARM64CALLstatic, types.TypeMem, 0, nil, "v1"),
|
Valu("v12", OpARM64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "v1"),
|
||||||
Goto("b3"),
|
Goto("b3"),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
@ -99,7 +99,7 @@ func TestSpillWithLoop(t *testing.T) {
|
||||||
),
|
),
|
||||||
Bloc("loop",
|
Bloc("loop",
|
||||||
Valu("memphi", OpPhi, types.TypeMem, 0, nil, "mem", "call"),
|
Valu("memphi", OpPhi, types.TypeMem, 0, nil, "mem", "call"),
|
||||||
Valu("call", OpAMD64CALLstatic, types.TypeMem, 0, nil, "memphi"),
|
Valu("call", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "memphi"),
|
||||||
Valu("test", OpAMD64CMPBconst, types.TypeFlags, 0, nil, "cond"),
|
Valu("test", OpAMD64CMPBconst, types.TypeFlags, 0, nil, "cond"),
|
||||||
Eq("test", "next", "exit"),
|
Eq("test", "next", "exit"),
|
||||||
),
|
),
|
||||||
|
|
@ -140,12 +140,12 @@ func TestSpillMove1(t *testing.T) {
|
||||||
Bloc("exit1",
|
Bloc("exit1",
|
||||||
// store before call, y is available in a register
|
// store before call, y is available in a register
|
||||||
Valu("mem2", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem"),
|
Valu("mem2", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem"),
|
||||||
Valu("mem3", OpAMD64CALLstatic, types.TypeMem, 0, nil, "mem2"),
|
Valu("mem3", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "mem2"),
|
||||||
Exit("mem3"),
|
Exit("mem3"),
|
||||||
),
|
),
|
||||||
Bloc("exit2",
|
Bloc("exit2",
|
||||||
// store after call, y must be loaded from a spill location
|
// store after call, y must be loaded from a spill location
|
||||||
Valu("mem4", OpAMD64CALLstatic, types.TypeMem, 0, nil, "mem"),
|
Valu("mem4", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
|
||||||
Valu("mem5", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem4"),
|
Valu("mem5", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem4"),
|
||||||
Exit("mem5"),
|
Exit("mem5"),
|
||||||
),
|
),
|
||||||
|
|
@ -188,13 +188,13 @@ func TestSpillMove2(t *testing.T) {
|
||||||
),
|
),
|
||||||
Bloc("exit1",
|
Bloc("exit1",
|
||||||
// store after call, y must be loaded from a spill location
|
// store after call, y must be loaded from a spill location
|
||||||
Valu("mem2", OpAMD64CALLstatic, types.TypeMem, 0, nil, "mem"),
|
Valu("mem2", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
|
||||||
Valu("mem3", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem2"),
|
Valu("mem3", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem2"),
|
||||||
Exit("mem3"),
|
Exit("mem3"),
|
||||||
),
|
),
|
||||||
Bloc("exit2",
|
Bloc("exit2",
|
||||||
// store after call, y must be loaded from a spill location
|
// store after call, y must be loaded from a spill location
|
||||||
Valu("mem4", OpAMD64CALLstatic, types.TypeMem, 0, nil, "mem"),
|
Valu("mem4", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
|
||||||
Valu("mem5", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem4"),
|
Valu("mem5", OpAMD64MOVQstore, types.TypeMem, 0, nil, "p", "y", "mem4"),
|
||||||
Exit("mem5"),
|
Exit("mem5"),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -393,15 +393,9 @@ func canMergeLoad(target, load *Value) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// symNamed reports whether sym's name is name.
|
// isSameCall reports whether sym is the same as the given named symbol
|
||||||
func symNamed(sym Sym, name string) bool {
|
func isSameCall(sym interface{}, name string) bool {
|
||||||
return sym.String() == name
|
return sym.(*AuxCall).Fn.String() == name
|
||||||
}
|
|
||||||
|
|
||||||
// isSameSym reports whether sym is the same as the given named symbol
|
|
||||||
func isSameSym(sym interface{}, name string) bool {
|
|
||||||
s, ok := sym.(fmt.Stringer)
|
|
||||||
return ok && s.String() == name
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// nlz returns the number of leading zeros.
|
// nlz returns the number of leading zeros.
|
||||||
|
|
@ -713,6 +707,9 @@ func auxToSym(i interface{}) Sym {
|
||||||
func auxToType(i interface{}) *types.Type {
|
func auxToType(i interface{}) *types.Type {
|
||||||
return i.(*types.Type)
|
return i.(*types.Type)
|
||||||
}
|
}
|
||||||
|
func auxToCall(i interface{}) *AuxCall {
|
||||||
|
return i.(*AuxCall)
|
||||||
|
}
|
||||||
func auxToS390xCCMask(i interface{}) s390x.CCMask {
|
func auxToS390xCCMask(i interface{}) s390x.CCMask {
|
||||||
return i.(s390x.CCMask)
|
return i.(s390x.CCMask)
|
||||||
}
|
}
|
||||||
|
|
@ -726,6 +723,9 @@ func stringToAux(s string) interface{} {
|
||||||
func symToAux(s Sym) interface{} {
|
func symToAux(s Sym) interface{} {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
func callToAux(s *AuxCall) interface{} {
|
||||||
|
return s
|
||||||
|
}
|
||||||
func typeToAux(t *types.Type) interface{} {
|
func typeToAux(t *types.Type) interface{} {
|
||||||
return t
|
return t
|
||||||
}
|
}
|
||||||
|
|
@ -743,7 +743,7 @@ func uaddOvf(a, b int64) bool {
|
||||||
|
|
||||||
// de-virtualize an InterCall
|
// de-virtualize an InterCall
|
||||||
// 'sym' is the symbol for the itab
|
// 'sym' is the symbol for the itab
|
||||||
func devirt(v *Value, sym Sym, offset int64) *obj.LSym {
|
func devirt(v *Value, sym Sym, offset int64) *AuxCall {
|
||||||
f := v.Block.Func
|
f := v.Block.Func
|
||||||
n, ok := sym.(*obj.LSym)
|
n, ok := sym.(*obj.LSym)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
|
@ -757,7 +757,10 @@ func devirt(v *Value, sym Sym, offset int64) *obj.LSym {
|
||||||
f.Warnl(v.Pos, "couldn't de-virtualize call")
|
f.Warnl(v.Pos, "couldn't de-virtualize call")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return lsym
|
if lsym == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return &AuxCall{Fn: lsym}
|
||||||
}
|
}
|
||||||
|
|
||||||
// isSamePtr reports whether p1 and p2 point to the same address.
|
// isSamePtr reports whether p1 and p2 point to the same address.
|
||||||
|
|
@ -1377,12 +1380,12 @@ func registerizable(b *Block, typ *types.Type) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
// needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
|
// needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
|
||||||
func needRaceCleanup(sym Sym, v *Value) bool {
|
func needRaceCleanup(sym *AuxCall, v *Value) bool {
|
||||||
f := v.Block.Func
|
f := v.Block.Func
|
||||||
if !f.Config.Race {
|
if !f.Config.Race {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if !symNamed(sym, "runtime.racefuncenter") && !symNamed(sym, "runtime.racefuncexit") {
|
if !isSameCall(sym, "runtime.racefuncenter") && !isSameCall(sym, "runtime.racefuncexit") {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
for _, b := range f.Blocks {
|
for _, b := range f.Blocks {
|
||||||
|
|
@ -1391,7 +1394,7 @@ func needRaceCleanup(sym Sym, v *Value) bool {
|
||||||
case OpStaticCall:
|
case OpStaticCall:
|
||||||
// Check for racefuncenter will encounter racefuncexit and vice versa.
|
// Check for racefuncenter will encounter racefuncexit and vice versa.
|
||||||
// Allow calls to panic*
|
// Allow calls to panic*
|
||||||
s := v.Aux.(fmt.Stringer).String()
|
s := v.Aux.(*AuxCall).Fn.String()
|
||||||
switch s {
|
switch s {
|
||||||
case "runtime.racefuncenter", "runtime.racefuncexit",
|
case "runtime.racefuncenter", "runtime.racefuncexit",
|
||||||
"runtime.panicdivide", "runtime.panicwrap",
|
"runtime.panicdivide", "runtime.panicwrap",
|
||||||
|
|
@ -1409,7 +1412,7 @@ func needRaceCleanup(sym Sym, v *Value) bool {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if symNamed(sym, "runtime.racefuncenter") {
|
if isSameCall(sym, "runtime.racefuncenter") {
|
||||||
// If we're removing racefuncenter, remove its argument as well.
|
// If we're removing racefuncenter, remove its argument as well.
|
||||||
if v.Args[0].Op != OpStore {
|
if v.Args[0].Op != OpStore {
|
||||||
return false
|
return false
|
||||||
|
|
|
||||||
|
|
@ -8515,7 +8515,7 @@ func rewriteValuegeneric_OpInterCall(v *Value) bool {
|
||||||
}
|
}
|
||||||
v.reset(OpStaticCall)
|
v.reset(OpStaticCall)
|
||||||
v.AuxInt = int32ToAuxInt(int32(argsize))
|
v.AuxInt = int32ToAuxInt(int32(argsize))
|
||||||
v.Aux = symToAux(devirt(v, itab, off))
|
v.Aux = callToAux(devirt(v, itab, off))
|
||||||
v.AddArg(mem)
|
v.AddArg(mem)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
@ -16022,7 +16022,7 @@ func rewriteValuegeneric_OpNilCheck(v *Value) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// match: (NilCheck (Load (OffPtr [c] (SP)) (StaticCall {sym} _)) _)
|
// match: (NilCheck (Load (OffPtr [c] (SP)) (StaticCall {sym} _)) _)
|
||||||
// cond: symNamed(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")
|
// cond: isSameCall(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")
|
||||||
// result: (Invalid)
|
// result: (Invalid)
|
||||||
for {
|
for {
|
||||||
if v_0.Op != OpLoad {
|
if v_0.Op != OpLoad {
|
||||||
|
|
@ -16042,15 +16042,15 @@ func rewriteValuegeneric_OpNilCheck(v *Value) bool {
|
||||||
if v_0_1.Op != OpStaticCall {
|
if v_0_1.Op != OpStaticCall {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
sym := auxToSym(v_0_1.Aux)
|
sym := auxToCall(v_0_1.Aux)
|
||||||
if !(symNamed(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")) {
|
if !(isSameCall(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.reset(OpInvalid)
|
v.reset(OpInvalid)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// match: (NilCheck (OffPtr (Load (OffPtr [c] (SP)) (StaticCall {sym} _))) _)
|
// match: (NilCheck (OffPtr (Load (OffPtr [c] (SP)) (StaticCall {sym} _))) _)
|
||||||
// cond: symNamed(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")
|
// cond: isSameCall(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")
|
||||||
// result: (Invalid)
|
// result: (Invalid)
|
||||||
for {
|
for {
|
||||||
if v_0.Op != OpOffPtr {
|
if v_0.Op != OpOffPtr {
|
||||||
|
|
@ -16074,8 +16074,8 @@ func rewriteValuegeneric_OpNilCheck(v *Value) bool {
|
||||||
if v_0_0_1.Op != OpStaticCall {
|
if v_0_0_1.Op != OpStaticCall {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
sym := auxToSym(v_0_0_1.Aux)
|
sym := auxToCall(v_0_0_1.Aux)
|
||||||
if !(symNamed(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")) {
|
if !(isSameCall(sym, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize && warnRule(fe.Debug_checknil(), v, "removed nil check")) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.reset(OpInvalid)
|
v.reset(OpInvalid)
|
||||||
|
|
@ -21067,10 +21067,10 @@ func rewriteValuegeneric_OpStaticCall(v *Value) bool {
|
||||||
b := v.Block
|
b := v.Block
|
||||||
config := b.Func.Config
|
config := b.Func.Config
|
||||||
// match: (StaticCall {sym} s1:(Store _ (Const64 [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
// match: (StaticCall {sym} s1:(Store _ (Const64 [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
||||||
// cond: sz >= 0 && symNamed(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)
|
// cond: sz >= 0 && isSameCall(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)
|
||||||
// result: (Move {t.Elem()} [int64(sz)] dst src mem)
|
// result: (Move {t.Elem()} [int64(sz)] dst src mem)
|
||||||
for {
|
for {
|
||||||
sym := auxToSym(v.Aux)
|
sym := auxToCall(v.Aux)
|
||||||
s1 := v_0
|
s1 := v_0
|
||||||
if s1.Op != OpStore {
|
if s1.Op != OpStore {
|
||||||
break
|
break
|
||||||
|
|
@ -21094,7 +21094,7 @@ func rewriteValuegeneric_OpStaticCall(v *Value) bool {
|
||||||
t := auxToType(s3.Aux)
|
t := auxToType(s3.Aux)
|
||||||
mem := s3.Args[2]
|
mem := s3.Args[2]
|
||||||
dst := s3.Args[1]
|
dst := s3.Args[1]
|
||||||
if !(sz >= 0 && symNamed(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)) {
|
if !(sz >= 0 && isSameCall(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.reset(OpMove)
|
v.reset(OpMove)
|
||||||
|
|
@ -21104,10 +21104,10 @@ func rewriteValuegeneric_OpStaticCall(v *Value) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// match: (StaticCall {sym} s1:(Store _ (Const32 [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
// match: (StaticCall {sym} s1:(Store _ (Const32 [sz]) s2:(Store _ src s3:(Store {t} _ dst mem))))
|
||||||
// cond: sz >= 0 && symNamed(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)
|
// cond: sz >= 0 && isSameCall(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)
|
||||||
// result: (Move {t.Elem()} [int64(sz)] dst src mem)
|
// result: (Move {t.Elem()} [int64(sz)] dst src mem)
|
||||||
for {
|
for {
|
||||||
sym := auxToSym(v.Aux)
|
sym := auxToCall(v.Aux)
|
||||||
s1 := v_0
|
s1 := v_0
|
||||||
if s1.Op != OpStore {
|
if s1.Op != OpStore {
|
||||||
break
|
break
|
||||||
|
|
@ -21131,7 +21131,7 @@ func rewriteValuegeneric_OpStaticCall(v *Value) bool {
|
||||||
t := auxToType(s3.Aux)
|
t := auxToType(s3.Aux)
|
||||||
mem := s3.Args[2]
|
mem := s3.Args[2]
|
||||||
dst := s3.Args[1]
|
dst := s3.Args[1]
|
||||||
if !(sz >= 0 && symNamed(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)) {
|
if !(sz >= 0 && isSameCall(sym, "runtime.memmove") && t.IsPtr() && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, int64(sz), config) && clobber(s1, s2, s3)) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.reset(OpMove)
|
v.reset(OpMove)
|
||||||
|
|
@ -21144,7 +21144,7 @@ func rewriteValuegeneric_OpStaticCall(v *Value) bool {
|
||||||
// cond: needRaceCleanup(sym, v)
|
// cond: needRaceCleanup(sym, v)
|
||||||
// result: x
|
// result: x
|
||||||
for {
|
for {
|
||||||
sym := auxToSym(v.Aux)
|
sym := auxToCall(v.Aux)
|
||||||
x := v_0
|
x := v_0
|
||||||
if !(needRaceCleanup(sym, v)) {
|
if !(needRaceCleanup(sym, v)) {
|
||||||
break
|
break
|
||||||
|
|
@ -21608,7 +21608,7 @@ func rewriteValuegeneric_OpStore(v *Value) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// match: (Store (Load (OffPtr [c] (SP)) mem) x mem)
|
// match: (Store (Load (OffPtr [c] (SP)) mem) x mem)
|
||||||
// cond: isConstZero(x) && mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
// cond: isConstZero(x) && mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
||||||
// result: mem
|
// result: mem
|
||||||
for {
|
for {
|
||||||
if v_0.Op != OpLoad {
|
if v_0.Op != OpLoad {
|
||||||
|
|
@ -21625,14 +21625,14 @@ func rewriteValuegeneric_OpStore(v *Value) bool {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
x := v_1
|
x := v_1
|
||||||
if mem != v_2 || !(isConstZero(x) && mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
if mem != v_2 || !(isConstZero(x) && mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.copyOf(mem)
|
v.copyOf(mem)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
// match: (Store (OffPtr (Load (OffPtr [c] (SP)) mem)) x mem)
|
// match: (Store (OffPtr (Load (OffPtr [c] (SP)) mem)) x mem)
|
||||||
// cond: isConstZero(x) && mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
// cond: isConstZero(x) && mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
||||||
// result: mem
|
// result: mem
|
||||||
for {
|
for {
|
||||||
if v_0.Op != OpOffPtr {
|
if v_0.Op != OpOffPtr {
|
||||||
|
|
@ -21653,7 +21653,7 @@ func rewriteValuegeneric_OpStore(v *Value) bool {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
x := v_1
|
x := v_1
|
||||||
if mem != v_2 || !(isConstZero(x) && mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
if mem != v_2 || !(isConstZero(x) && mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.copyOf(mem)
|
v.copyOf(mem)
|
||||||
|
|
@ -24337,7 +24337,7 @@ func rewriteValuegeneric_OpZero(v *Value) bool {
|
||||||
b := v.Block
|
b := v.Block
|
||||||
config := b.Func.Config
|
config := b.Func.Config
|
||||||
// match: (Zero (Load (OffPtr [c] (SP)) mem) mem)
|
// match: (Zero (Load (OffPtr [c] (SP)) mem) mem)
|
||||||
// cond: mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
// cond: mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize() + config.RegSize
|
||||||
// result: mem
|
// result: mem
|
||||||
for {
|
for {
|
||||||
if v_0.Op != OpLoad {
|
if v_0.Op != OpLoad {
|
||||||
|
|
@ -24350,7 +24350,7 @@ func rewriteValuegeneric_OpZero(v *Value) bool {
|
||||||
}
|
}
|
||||||
c := auxIntToInt64(v_0_0.AuxInt)
|
c := auxIntToInt64(v_0_0.AuxInt)
|
||||||
v_0_0_0 := v_0_0.Args[0]
|
v_0_0_0 := v_0_0.Args[0]
|
||||||
if v_0_0_0.Op != OpSP || mem != v_1 || !(mem.Op == OpStaticCall && isSameSym(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
if v_0_0_0.Op != OpSP || mem != v_1 || !(mem.Op == OpStaticCall && isSameCall(mem.Aux, "runtime.newobject") && c == config.ctxt.FixedFrameSize()+config.RegSize) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
v.copyOf(mem)
|
v.copyOf(mem)
|
||||||
|
|
|
||||||
|
|
@ -193,11 +193,11 @@ func (v *Value) auxString() string {
|
||||||
return fmt.Sprintf(" [%g]", v.AuxFloat())
|
return fmt.Sprintf(" [%g]", v.AuxFloat())
|
||||||
case auxString:
|
case auxString:
|
||||||
return fmt.Sprintf(" {%q}", v.Aux)
|
return fmt.Sprintf(" {%q}", v.Aux)
|
||||||
case auxSym, auxTyp:
|
case auxSym, auxCall, auxTyp:
|
||||||
if v.Aux != nil {
|
if v.Aux != nil {
|
||||||
return fmt.Sprintf(" {%v}", v.Aux)
|
return fmt.Sprintf(" {%v}", v.Aux)
|
||||||
}
|
}
|
||||||
case auxSymOff, auxTypSize:
|
case auxSymOff, auxCallOff, auxTypSize:
|
||||||
s := ""
|
s := ""
|
||||||
if v.Aux != nil {
|
if v.Aux != nil {
|
||||||
s = fmt.Sprintf(" {%v}", v.Aux)
|
s = fmt.Sprintf(" {%v}", v.Aux)
|
||||||
|
|
|
||||||
|
|
@ -523,7 +523,7 @@ func wbcall(pos src.XPos, b *Block, fn, typ *obj.LSym, ptr, val, mem, sp, sb *Va
|
||||||
off = round(off, config.PtrSize)
|
off = round(off, config.PtrSize)
|
||||||
|
|
||||||
// issue call
|
// issue call
|
||||||
mem = b.NewValue1A(pos, OpStaticCall, types.TypeMem, fn, mem)
|
mem = b.NewValue1A(pos, OpStaticCall, types.TypeMem, &AuxCall{fn}, mem)
|
||||||
mem.AuxInt = off - config.ctxt.FixedFrameSize()
|
mem.AuxInt = off - config.ctxt.FixedFrameSize()
|
||||||
return mem
|
return mem
|
||||||
}
|
}
|
||||||
|
|
@ -582,7 +582,7 @@ func IsNewObject(v *Value, mem *Value) bool {
|
||||||
if mem.Op != OpStaticCall {
|
if mem.Op != OpStaticCall {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if !isSameSym(mem.Aux, "runtime.newobject") {
|
if !isSameCall(mem.Aux, "runtime.newobject") {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if v.Args[0].Op != OpOffPtr {
|
if v.Args[0].Op != OpOffPtr {
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@ func ssaGenValue(s *gc.SSAGenState, v *ssa.Value) {
|
||||||
switch v.Op {
|
switch v.Op {
|
||||||
case ssa.OpWasmLoweredStaticCall, ssa.OpWasmLoweredClosureCall, ssa.OpWasmLoweredInterCall:
|
case ssa.OpWasmLoweredStaticCall, ssa.OpWasmLoweredClosureCall, ssa.OpWasmLoweredInterCall:
|
||||||
s.PrepareCall(v)
|
s.PrepareCall(v)
|
||||||
if v.Aux == gc.Deferreturn {
|
if call, ok := v.Aux.(*ssa.AuxCall); ok && call.Fn == gc.Deferreturn {
|
||||||
// add a resume point before call to deferreturn so it can be called again via jmpdefer
|
// add a resume point before call to deferreturn so it can be called again via jmpdefer
|
||||||
s.Prog(wasm.ARESUMEPOINT)
|
s.Prog(wasm.ARESUMEPOINT)
|
||||||
}
|
}
|
||||||
|
|
@ -130,7 +130,8 @@ func ssaGenValue(s *gc.SSAGenState, v *ssa.Value) {
|
||||||
getValue64(s, v.Args[1])
|
getValue64(s, v.Args[1])
|
||||||
setReg(s, wasm.REG_CTXT)
|
setReg(s, wasm.REG_CTXT)
|
||||||
}
|
}
|
||||||
if sym, ok := v.Aux.(*obj.LSym); ok {
|
if call, ok := v.Aux.(*ssa.AuxCall); ok && call.Fn != nil {
|
||||||
|
sym := call.Fn
|
||||||
p := s.Prog(obj.ACALL)
|
p := s.Prog(obj.ACALL)
|
||||||
p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: sym}
|
p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: sym}
|
||||||
p.Pos = v.Pos
|
p.Pos = v.Pos
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue