mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update deps
This commit is contained in:
parent
fbfc2d57a7
commit
e73459f558
103 changed files with 2452 additions and 740 deletions
6
vendor/golang.org/x/tools/go/internal/cgo/cgo.go
generated
vendored
6
vendor/golang.org/x/tools/go/internal/cgo/cgo.go
generated
vendored
|
@ -160,13 +160,15 @@ func Run(bp *build.Package, pkgdir, tmpdir string, useabs bool) (files, displayF
|
|||
}
|
||||
|
||||
args := stringList(
|
||||
"go", "tool", "cgo", "-srcdir", pkgdir, "-objdir", tmpdir, cgoflags, "--",
|
||||
"go", "tool", "cgo", "-objdir", tmpdir, cgoflags, "--",
|
||||
cgoCPPFLAGS, cgoexeCFLAGS, cgoFiles,
|
||||
)
|
||||
if false {
|
||||
log.Printf("Running cgo for package %q: %s", bp.ImportPath, args)
|
||||
log.Printf("Running cgo for package %q: %s (dir=%s)", bp.ImportPath, args, pkgdir)
|
||||
}
|
||||
cmd := exec.Command(args[0], args[1:]...)
|
||||
cmd.Dir = pkgdir
|
||||
cmd.Env = append(os.Environ(), "PWD="+pkgdir)
|
||||
cmd.Stdout = os.Stderr
|
||||
cmd.Stderr = os.Stderr
|
||||
if err := cmd.Run(); err != nil {
|
||||
|
|
6
vendor/golang.org/x/tools/go/ssa/builder.go
generated
vendored
6
vendor/golang.org/x/tools/go/ssa/builder.go
generated
vendored
|
@ -579,6 +579,8 @@ func (b *builder) expr0(fn *Function, e ast.Expr, tv types.TypeAndValue) Value {
|
|||
y.pos = e.Lparen
|
||||
case *MakeInterface:
|
||||
y.pos = e.Lparen
|
||||
case *SliceToArrayPointer:
|
||||
y.pos = e.Lparen
|
||||
}
|
||||
}
|
||||
return y
|
||||
|
@ -693,6 +695,10 @@ func (b *builder) expr0(fn *Function, e ast.Expr, tv types.TypeAndValue) Value {
|
|||
case *ast.SelectorExpr:
|
||||
sel, ok := fn.Pkg.info.Selections[e]
|
||||
if !ok {
|
||||
// builtin unsafe.{Add,Slice}
|
||||
if obj, ok := fn.Pkg.info.Uses[e.Sel].(*types.Builtin); ok {
|
||||
return &Builtin{name: obj.Name(), sig: tv.Type.(*types.Signature)}
|
||||
}
|
||||
// qualified identifier
|
||||
return b.expr(fn, e.Sel)
|
||||
}
|
||||
|
|
89
vendor/golang.org/x/tools/go/ssa/doc.go
generated
vendored
89
vendor/golang.org/x/tools/go/ssa/doc.go
generated
vendored
|
@ -50,50 +50,51 @@
|
|||
// Instruction interfaces. The following table shows for each
|
||||
// concrete type which of these interfaces it implements.
|
||||
//
|
||||
// Value? Instruction? Member?
|
||||
// *Alloc ✔ ✔
|
||||
// *BinOp ✔ ✔
|
||||
// *Builtin ✔
|
||||
// *Call ✔ ✔
|
||||
// *ChangeInterface ✔ ✔
|
||||
// *ChangeType ✔ ✔
|
||||
// *Const ✔
|
||||
// *Convert ✔ ✔
|
||||
// *DebugRef ✔
|
||||
// *Defer ✔
|
||||
// *Extract ✔ ✔
|
||||
// *Field ✔ ✔
|
||||
// *FieldAddr ✔ ✔
|
||||
// *FreeVar ✔
|
||||
// *Function ✔ ✔ (func)
|
||||
// *Global ✔ ✔ (var)
|
||||
// *Go ✔
|
||||
// *If ✔
|
||||
// *Index ✔ ✔
|
||||
// *IndexAddr ✔ ✔
|
||||
// *Jump ✔
|
||||
// *Lookup ✔ ✔
|
||||
// *MakeChan ✔ ✔
|
||||
// *MakeClosure ✔ ✔
|
||||
// *MakeInterface ✔ ✔
|
||||
// *MakeMap ✔ ✔
|
||||
// *MakeSlice ✔ ✔
|
||||
// *MapUpdate ✔
|
||||
// *NamedConst ✔ (const)
|
||||
// *Next ✔ ✔
|
||||
// *Panic ✔
|
||||
// *Parameter ✔
|
||||
// *Phi ✔ ✔
|
||||
// *Range ✔ ✔
|
||||
// *Return ✔
|
||||
// *RunDefers ✔
|
||||
// *Select ✔ ✔
|
||||
// *Send ✔
|
||||
// *Slice ✔ ✔
|
||||
// *Store ✔
|
||||
// *Type ✔ (type)
|
||||
// *TypeAssert ✔ ✔
|
||||
// *UnOp ✔ ✔
|
||||
// Value? Instruction? Member?
|
||||
// *Alloc ✔ ✔
|
||||
// *BinOp ✔ ✔
|
||||
// *Builtin ✔
|
||||
// *Call ✔ ✔
|
||||
// *ChangeInterface ✔ ✔
|
||||
// *ChangeType ✔ ✔
|
||||
// *Const ✔
|
||||
// *Convert ✔ ✔
|
||||
// *SliceToArrayPointer ✔ ✔
|
||||
// *DebugRef ✔
|
||||
// *Defer ✔
|
||||
// *Extract ✔ ✔
|
||||
// *Field ✔ ✔
|
||||
// *FieldAddr ✔ ✔
|
||||
// *FreeVar ✔
|
||||
// *Function ✔ ✔ (func)
|
||||
// *Global ✔ ✔ (var)
|
||||
// *Go ✔
|
||||
// *If ✔
|
||||
// *Index ✔ ✔
|
||||
// *IndexAddr ✔ ✔
|
||||
// *Jump ✔
|
||||
// *Lookup ✔ ✔
|
||||
// *MakeChan ✔ ✔
|
||||
// *MakeClosure ✔ ✔
|
||||
// *MakeInterface ✔ ✔
|
||||
// *MakeMap ✔ ✔
|
||||
// *MakeSlice ✔ ✔
|
||||
// *MapUpdate ✔
|
||||
// *NamedConst ✔ (const)
|
||||
// *Next ✔ ✔
|
||||
// *Panic ✔
|
||||
// *Parameter ✔
|
||||
// *Phi ✔ ✔
|
||||
// *Range ✔ ✔
|
||||
// *Return ✔
|
||||
// *RunDefers ✔
|
||||
// *Select ✔ ✔
|
||||
// *Send ✔
|
||||
// *Slice ✔ ✔
|
||||
// *Store ✔
|
||||
// *Type ✔ (type)
|
||||
// *TypeAssert ✔ ✔
|
||||
// *UnOp ✔ ✔
|
||||
//
|
||||
// Other key types in this package include: Program, Package, Function
|
||||
// and BasicBlock.
|
||||
|
|
12
vendor/golang.org/x/tools/go/ssa/emit.go
generated
vendored
12
vendor/golang.org/x/tools/go/ssa/emit.go
generated
vendored
|
@ -168,7 +168,7 @@ func isValuePreserving(ut_src, ut_dst types.Type) bool {
|
|||
// emitConv emits to f code to convert Value val to exactly type typ,
|
||||
// and returns the converted value. Implicit conversions are required
|
||||
// by language assignability rules in assignments, parameter passing,
|
||||
// etc. Conversions cannot fail dynamically.
|
||||
// etc.
|
||||
//
|
||||
func emitConv(f *Function, val Value, typ types.Type) Value {
|
||||
t_src := val.Type()
|
||||
|
@ -228,6 +228,16 @@ func emitConv(f *Function, val Value, typ types.Type) Value {
|
|||
// e.g. string -> []byte/[]rune.
|
||||
}
|
||||
|
||||
// Conversion from slice to array pointer?
|
||||
if slice, ok := ut_src.(*types.Slice); ok {
|
||||
if ptr, ok := ut_dst.(*types.Pointer); ok {
|
||||
if arr, ok := ptr.Elem().(*types.Array); ok && types.Identical(slice.Elem(), arr.Elem()) {
|
||||
c := &SliceToArrayPointer{X: val}
|
||||
c.setType(ut_dst)
|
||||
return f.emit(c)
|
||||
}
|
||||
}
|
||||
}
|
||||
// A representation-changing conversion?
|
||||
// At least one of {ut_src,ut_dst} must be *Basic.
|
||||
// (The other may be []byte or []rune.)
|
||||
|
|
9
vendor/golang.org/x/tools/go/ssa/print.go
generated
vendored
9
vendor/golang.org/x/tools/go/ssa/print.go
generated
vendored
|
@ -159,10 +159,11 @@ func printConv(prefix string, v, x Value) string {
|
|||
relName(x, v.(Instruction)))
|
||||
}
|
||||
|
||||
func (v *ChangeType) String() string { return printConv("changetype", v, v.X) }
|
||||
func (v *Convert) String() string { return printConv("convert", v, v.X) }
|
||||
func (v *ChangeInterface) String() string { return printConv("change interface", v, v.X) }
|
||||
func (v *MakeInterface) String() string { return printConv("make", v, v.X) }
|
||||
func (v *ChangeType) String() string { return printConv("changetype", v, v.X) }
|
||||
func (v *Convert) String() string { return printConv("convert", v, v.X) }
|
||||
func (v *ChangeInterface) String() string { return printConv("change interface", v, v.X) }
|
||||
func (v *SliceToArrayPointer) String() string { return printConv("slice to array pointer", v, v.X) }
|
||||
func (v *MakeInterface) String() string { return printConv("make", v, v.X) }
|
||||
|
||||
func (v *MakeClosure) String() string {
|
||||
var b bytes.Buffer
|
||||
|
|
1
vendor/golang.org/x/tools/go/ssa/sanity.go
generated
vendored
1
vendor/golang.org/x/tools/go/ssa/sanity.go
generated
vendored
|
@ -132,6 +132,7 @@ func (s *sanity) checkInstr(idx int, instr Instruction) {
|
|||
case *Call:
|
||||
case *ChangeInterface:
|
||||
case *ChangeType:
|
||||
case *SliceToArrayPointer:
|
||||
case *Convert:
|
||||
if _, ok := instr.X.Type().Underlying().(*types.Basic); !ok {
|
||||
if _, ok := instr.Type().Underlying().(*types.Basic); !ok {
|
||||
|
|
20
vendor/golang.org/x/tools/go/ssa/ssa.go
generated
vendored
20
vendor/golang.org/x/tools/go/ssa/ssa.go
generated
vendored
|
@ -437,7 +437,7 @@ type Global struct {
|
|||
// A Builtin represents a specific use of a built-in function, e.g. len.
|
||||
//
|
||||
// Builtins are immutable values. Builtins do not have addresses.
|
||||
// Builtins can only appear in CallCommon.Func.
|
||||
// Builtins can only appear in CallCommon.Value.
|
||||
//
|
||||
// Name() indicates the function: one of the built-in functions from the
|
||||
// Go spec (excluding "make" and "new") or one of these ssa-defined
|
||||
|
@ -650,6 +650,20 @@ type ChangeInterface struct {
|
|||
X Value
|
||||
}
|
||||
|
||||
// The SliceToArrayPointer instruction yields the conversion of slice X to
|
||||
// array pointer.
|
||||
//
|
||||
// Pos() returns the ast.CallExpr.Lparen, if the instruction arose
|
||||
// from an explicit conversion in the source.
|
||||
//
|
||||
// Example printed form:
|
||||
// t1 = slice to array pointer *[4]byte <- []byte (t0)
|
||||
//
|
||||
type SliceToArrayPointer struct {
|
||||
register
|
||||
X Value
|
||||
}
|
||||
|
||||
// MakeInterface constructs an instance of an interface type from a
|
||||
// value of a concrete type.
|
||||
//
|
||||
|
@ -1567,6 +1581,10 @@ func (v *Convert) Operands(rands []*Value) []*Value {
|
|||
return append(rands, &v.X)
|
||||
}
|
||||
|
||||
func (v *SliceToArrayPointer) Operands(rands []*Value) []*Value {
|
||||
return append(rands, &v.X)
|
||||
}
|
||||
|
||||
func (s *DebugRef) Operands(rands []*Value) []*Value {
|
||||
return append(rands, &s.X)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue