aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/github.com/google/pprof/internal/binutils
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2019-02-28 16:21:48 -0500
committerBryan C. Mills <bcmills@google.com>2019-03-11 20:27:03 +0000
commit756a69c6c9d4c7d203e3c38d865240d5e5720efb (patch)
tree2fd8b44ed7b0c256e86f0babcfc011bd98951e21 /src/cmd/vendor/github.com/google/pprof/internal/binutils
parent486ca37b14f56b2e125fc3afbd900a5369532043 (diff)
downloadgo-756a69c6c9d4c7d203e3c38d865240d5e5720efb.tar.xz
cmd: refresh cmd/vendor to match 'go mod vendor'
This change preserves the maximum versions from cmd/vendor/vendor.json where feasible, but bumps the versions of x/sys (for CL 162987) and x/tools (for CL 162989 and CL 160837) so that 'go test all' passes in module mode when run from a working directory in src/cmd. A small change to cmd/vet (not vendored) was necessary to preserve its flag behavior given a pristine copy of x/tools; see CL 162989 for more detail. This change was generated by running 'go mod vendor' at CL 164622. (Welcoooome to the fuuuuuture!) Updates #30228 Updates #30241 Change-Id: I889590318dc857d4a6e20c3023d09a27128d8255 Reviewed-on: https://go-review.googlesource.com/c/go/+/164618 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Jay Conrod <jayconrod@google.com>
Diffstat (limited to 'src/cmd/vendor/github.com/google/pprof/internal/binutils')
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils_test.go392
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm_test.go152
-rwxr-xr-xsrc/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/build_mac.sh31
-rwxr-xr-xsrc/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_linux_64bin9503 -> 0 bytes
-rwxr-xr-xsrc/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64bin8648 -> 0 bytes
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Info.plist20
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Resources/DWARF/exe_mac_64bin8840 -> 0 bytes
-rwxr-xr-xsrc/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/fake-llvm-symbolizer34
-rwxr-xr-xsrc/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64bin4496 -> 0 bytes
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Info.plist20
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Resources/DWARF/lib_mac_64bin8934 -> 0 bytes
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_elf1
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_macho1
13 files changed, 0 insertions, 651 deletions
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils_test.go b/src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils_test.go
deleted file mode 100644
index 17d4225a87..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils_test.go
+++ /dev/null
@@ -1,392 +0,0 @@
-// Copyright 2014 Google Inc. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package binutils
-
-import (
- "bytes"
- "fmt"
- "math"
- "path/filepath"
- "reflect"
- "regexp"
- "runtime"
- "strings"
- "testing"
-
- "github.com/google/pprof/internal/plugin"
-)
-
-var testAddrMap = map[int]string{
- 1000: "_Z3fooid.clone2",
- 2000: "_ZNSaIiEC1Ev.clone18",
- 3000: "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm",
-}
-
-func functionName(level int) (name string) {
- if name = testAddrMap[level]; name != "" {
- return name
- }
- return fmt.Sprintf("fun%d", level)
-}
-
-func TestAddr2Liner(t *testing.T) {
- const offset = 0x500
-
- a := addr2Liner{rw: &mockAddr2liner{}, base: offset}
- for i := 1; i < 8; i++ {
- addr := i*0x1000 + offset
- s, err := a.addrInfo(uint64(addr))
- if err != nil {
- t.Fatalf("addrInfo(%#x): %v", addr, err)
- }
- if len(s) != i {
- t.Fatalf("addrInfo(%#x): got len==%d, want %d", addr, len(s), i)
- }
- for l, f := range s {
- level := (len(s) - l) * 1000
- want := plugin.Frame{Func: functionName(level), File: fmt.Sprintf("file%d", level), Line: level}
-
- if f != want {
- t.Errorf("AddrInfo(%#x)[%d]: = %+v, want %+v", addr, l, f, want)
- }
- }
- }
- s, err := a.addrInfo(0xFFFF)
- if err != nil {
- t.Fatalf("addrInfo(0xFFFF): %v", err)
- }
- if len(s) != 0 {
- t.Fatalf("AddrInfo(0xFFFF): got len==%d, want 0", len(s))
- }
- a.rw.close()
-}
-
-type mockAddr2liner struct {
- output []string
-}
-
-func (a *mockAddr2liner) write(s string) error {
- var lines []string
- switch s {
- case "1000":
- lines = []string{"_Z3fooid.clone2", "file1000:1000"}
- case "2000":
- lines = []string{"_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "3000":
- lines = []string{"_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "4000":
- lines = []string{"fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "5000":
- lines = []string{"fun5000", "file5000:5000", "fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "6000":
- lines = []string{"fun6000", "file6000:6000", "fun5000", "file5000:5000", "fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "7000":
- lines = []string{"fun7000", "file7000:7000", "fun6000", "file6000:6000", "fun5000", "file5000:5000", "fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "8000":
- lines = []string{"fun8000", "file8000:8000", "fun7000", "file7000:7000", "fun6000", "file6000:6000", "fun5000", "file5000:5000", "fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- case "9000":
- lines = []string{"fun9000", "file9000:9000", "fun8000", "file8000:8000", "fun7000", "file7000:7000", "fun6000", "file6000:6000", "fun5000", "file5000:5000", "fun4000", "file4000:4000", "_ZNSt6vectorIS_IS_IiSaIiEESaIS1_EESaIS3_EEixEm", "file3000:3000", "_ZNSaIiEC1Ev.clone18", "file2000:2000", "_Z3fooid.clone2", "file1000:1000"}
- default:
- lines = []string{"??", "??:0"}
- }
- a.output = append(a.output, "0x"+s)
- a.output = append(a.output, lines...)
- return nil
-}
-
-func (a *mockAddr2liner) readLine() (string, error) {
- if len(a.output) == 0 {
- return "", fmt.Errorf("end of file")
- }
- next := a.output[0]
- a.output = a.output[1:]
- return next, nil
-}
-
-func (a *mockAddr2liner) close() {
-}
-
-func TestAddr2LinerLookup(t *testing.T) {
- const oddSizedData = `
-00001000 T 0x1000
-00002000 T 0x2000
-00003000 T 0x3000
-`
- const evenSizedData = `
-0000000000001000 T 0x1000
-0000000000002000 T 0x2000
-0000000000003000 T 0x3000
-0000000000004000 T 0x4000
-`
- for _, d := range []string{oddSizedData, evenSizedData} {
- a, err := parseAddr2LinerNM(0, bytes.NewBufferString(d))
- if err != nil {
- t.Errorf("nm parse error: %v", err)
- continue
- }
- for address, want := range map[uint64]string{
- 0x1000: "0x1000",
- 0x1001: "0x1000",
- 0x1FFF: "0x1000",
- 0x2000: "0x2000",
- 0x2001: "0x2000",
- } {
- if got, _ := a.addrInfo(address); !checkAddress(got, address, want) {
- t.Errorf("%x: got %v, want %s", address, got, want)
- }
- }
- for _, unknown := range []uint64{0x0fff, 0x4001} {
- if got, _ := a.addrInfo(unknown); got != nil {
- t.Errorf("%x: got %v, want nil", unknown, got)
- }
- }
- }
-}
-
-func checkAddress(got []plugin.Frame, address uint64, want string) bool {
- if len(got) != 1 {
- return false
- }
- return got[0].Func == want
-}
-
-func TestSetTools(t *testing.T) {
- // Test that multiple calls work.
- bu := &Binutils{}
- bu.SetTools("")
- bu.SetTools("")
-}
-
-func TestSetFastSymbolization(t *testing.T) {
- // Test that multiple calls work.
- bu := &Binutils{}
- bu.SetFastSymbolization(true)
- bu.SetFastSymbolization(false)
-}
-
-func skipUnlessLinuxAmd64(t *testing.T) {
- if runtime.GOOS != "linux" || runtime.GOARCH != "amd64" {
- t.Skip("This test only works on x86-64 Linux")
- }
-}
-
-func skipUnlessDarwinAmd64(t *testing.T) {
- if runtime.GOOS != "darwin" || runtime.GOARCH != "amd64" {
- t.Skip("This test only works on x86-64 Mac")
- }
-}
-
-func TestDisasm(t *testing.T) {
- skipUnlessLinuxAmd64(t)
- bu := &Binutils{}
- insts, err := bu.Disasm(filepath.Join("testdata", "exe_linux_64"), 0, math.MaxUint64)
- if err != nil {
- t.Fatalf("Disasm: unexpected error %v", err)
- }
- mainCount := 0
- for _, x := range insts {
- if x.Function == "main" {
- mainCount++
- }
- }
- if mainCount == 0 {
- t.Error("Disasm: found no main instructions")
- }
-}
-
-func findSymbol(syms []*plugin.Sym, name string) *plugin.Sym {
- for _, s := range syms {
- for _, n := range s.Name {
- if n == name {
- return s
- }
- }
- }
- return nil
-}
-
-func TestObjFile(t *testing.T) {
- skipUnlessLinuxAmd64(t)
- for _, tc := range []struct {
- desc string
- start, limit, offset uint64
- addr uint64
- }{
- {"fake mapping", 0, math.MaxUint64, 0, 0x40052d},
- {"fixed load address", 0x400000, 0x4006fc, 0, 0x40052d},
- // True user-mode ASLR binaries are ET_DYN rather than ET_EXEC so this case
- // is a bit artificial except that it approximates the
- // vmlinux-with-kernel-ASLR case where the binary *is* ET_EXEC.
- {"simulated ASLR address", 0x500000, 0x5006fc, 0, 0x50052d},
- } {
- t.Run(tc.desc, func(t *testing.T) {
- bu := &Binutils{}
- f, err := bu.Open(filepath.Join("testdata", "exe_linux_64"), tc.start, tc.limit, tc.offset)
- if err != nil {
- t.Fatalf("Open: unexpected error %v", err)
- }
- defer f.Close()
- syms, err := f.Symbols(regexp.MustCompile("main"), 0)
- if err != nil {
- t.Fatalf("Symbols: unexpected error %v", err)
- }
-
- m := findSymbol(syms, "main")
- if m == nil {
- t.Fatalf("Symbols: did not find main")
- }
- for _, addr := range []uint64{m.Start + f.Base(), tc.addr} {
- gotFrames, err := f.SourceLine(addr)
- if err != nil {
- t.Fatalf("SourceLine: unexpected error %v", err)
- }
- wantFrames := []plugin.Frame{
- {Func: "main", File: "/tmp/hello.c", Line: 3},
- }
- if !reflect.DeepEqual(gotFrames, wantFrames) {
- t.Fatalf("SourceLine for main: got %v; want %v\n", gotFrames, wantFrames)
- }
- }
- })
- }
-}
-
-func TestMachoFiles(t *testing.T) {
- skipUnlessDarwinAmd64(t)
-
- // Load `file`, pretending it was mapped at `start`. Then get the symbol
- // table. Check that it contains the symbol `sym` and that the address
- // `addr` gives the `expected` stack trace.
- for _, tc := range []struct {
- desc string
- file string
- start, limit, offset uint64
- addr uint64
- sym string
- expected []plugin.Frame
- }{
- {"normal mapping", "exe_mac_64", 0x100000000, math.MaxUint64, 0,
- 0x100000f50, "_main",
- []plugin.Frame{
- {Func: "main", File: "/tmp/hello.c", Line: 3},
- }},
- {"other mapping", "exe_mac_64", 0x200000000, math.MaxUint64, 0,
- 0x200000f50, "_main",
- []plugin.Frame{
- {Func: "main", File: "/tmp/hello.c", Line: 3},
- }},
- {"lib normal mapping", "lib_mac_64", 0, math.MaxUint64, 0,
- 0xfa0, "_bar",
- []plugin.Frame{
- {Func: "bar", File: "/tmp/lib.c", Line: 5},
- }},
- } {
- t.Run(tc.desc, func(t *testing.T) {
- bu := &Binutils{}
- f, err := bu.Open(filepath.Join("testdata", tc.file), tc.start, tc.limit, tc.offset)
- if err != nil {
- t.Fatalf("Open: unexpected error %v", err)
- }
- t.Logf("binutils: %v", bu)
- if runtime.GOOS == "darwin" && !bu.rep.addr2lineFound && !bu.rep.llvmSymbolizerFound {
- // On OSX user needs to install gaddr2line or llvm-symbolizer with
- // Homebrew, skip the test when the environment doesn't have it
- // installed.
- t.Skip("couldn't find addr2line or gaddr2line")
- }
- defer f.Close()
- syms, err := f.Symbols(nil, 0)
- if err != nil {
- t.Fatalf("Symbols: unexpected error %v", err)
- }
-
- m := findSymbol(syms, tc.sym)
- if m == nil {
- t.Fatalf("Symbols: could not find symbol %v", tc.sym)
- }
- gotFrames, err := f.SourceLine(tc.addr)
- if err != nil {
- t.Fatalf("SourceLine: unexpected error %v", err)
- }
- if !reflect.DeepEqual(gotFrames, tc.expected) {
- t.Fatalf("SourceLine for main: got %v; want %v\n", gotFrames, tc.expected)
- }
- })
- }
-}
-
-func TestLLVMSymbolizer(t *testing.T) {
- if runtime.GOOS != "linux" {
- t.Skip("testtdata/llvm-symbolizer has only been tested on linux")
- }
-
- cmd := filepath.Join("testdata", "fake-llvm-symbolizer")
- symbolizer, err := newLLVMSymbolizer(cmd, "foo", 0)
- if err != nil {
- t.Fatalf("newLLVMSymbolizer: unexpected error %v", err)
- }
- defer symbolizer.rw.close()
-
- for _, c := range []struct {
- addr uint64
- frames []plugin.Frame
- }{
- {0x10, []plugin.Frame{
- {Func: "Inlined_0x10", File: "foo.h", Line: 0},
- {Func: "Func_0x10", File: "foo.c", Line: 2},
- }},
- {0x20, []plugin.Frame{
- {Func: "Inlined_0x20", File: "foo.h", Line: 0},
- {Func: "Func_0x20", File: "foo.c", Line: 2},
- }},
- } {
- frames, err := symbolizer.addrInfo(c.addr)
- if err != nil {
- t.Errorf("LLVM: unexpected error %v", err)
- continue
- }
- if !reflect.DeepEqual(frames, c.frames) {
- t.Errorf("LLVM: expect %v; got %v\n", c.frames, frames)
- }
- }
-}
-
-func TestOpenMalformedELF(t *testing.T) {
- // Test that opening a malformed ELF file will report an error containing
- // the word "ELF".
- bu := &Binutils{}
- _, err := bu.Open(filepath.Join("testdata", "malformed_elf"), 0, 0, 0)
- if err == nil {
- t.Fatalf("Open: unexpected success")
- }
-
- if !strings.Contains(err.Error(), "ELF") {
- t.Errorf("Open: got %v, want error containing 'ELF'", err)
- }
-}
-
-func TestOpenMalformedMachO(t *testing.T) {
- // Test that opening a malformed Mach-O file will report an error containing
- // the word "Mach-O".
- bu := &Binutils{}
- _, err := bu.Open(filepath.Join("testdata", "malformed_macho"), 0, 0, 0)
- if err == nil {
- t.Fatalf("Open: unexpected success")
- }
-
- if !strings.Contains(err.Error(), "Mach-O") {
- t.Errorf("Open: got %v, want error containing 'Mach-O'", err)
- }
-}
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm_test.go b/src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm_test.go
deleted file mode 100644
index 3563198f48..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm_test.go
+++ /dev/null
@@ -1,152 +0,0 @@
-// Copyright 2014 Google Inc. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package binutils
-
-import (
- "fmt"
- "regexp"
- "testing"
-
- "github.com/google/pprof/internal/plugin"
-)
-
-// TestFindSymbols tests the FindSymbols routine using a hardcoded nm output.
-func TestFindSymbols(t *testing.T) {
- type testcase struct {
- query, syms string
- want []plugin.Sym
- }
-
- testsyms := `0000000000001000 t lineA001
-0000000000001000 t lineA002
-0000000000001000 t line1000
-0000000000002000 t line200A
-0000000000002000 t line2000
-0000000000002000 t line200B
-0000000000003000 t line3000
-0000000000003000 t _ZNK4DumbclEPKc
-0000000000003000 t lineB00C
-0000000000003000 t line300D
-0000000000004000 t _the_end
- `
- testcases := []testcase{
- {
- "line.*[AC]",
- testsyms,
- []plugin.Sym{
- {Name: []string{"lineA001"}, File: "object.o", Start: 0x1000, End: 0x1FFF},
- {Name: []string{"line200A"}, File: "object.o", Start: 0x2000, End: 0x2FFF},
- {Name: []string{"lineB00C"}, File: "object.o", Start: 0x3000, End: 0x3FFF},
- },
- },
- {
- "Dumb::operator",
- testsyms,
- []plugin.Sym{
- {Name: []string{"Dumb::operator()(char const*) const"}, File: "object.o", Start: 0x3000, End: 0x3FFF},
- },
- },
- }
-
- for _, tc := range testcases {
- syms, err := findSymbols([]byte(tc.syms), "object.o", regexp.MustCompile(tc.query), 0)
- if err != nil {
- t.Fatalf("%q: findSymbols: %v", tc.query, err)
- }
- if err := checkSymbol(syms, tc.want); err != nil {
- t.Errorf("%q: %v", tc.query, err)
- }
- }
-}
-
-func checkSymbol(got []*plugin.Sym, want []plugin.Sym) error {
- if len(got) != len(want) {
- return fmt.Errorf("unexpected number of symbols %d (want %d)", len(got), len(want))
- }
-
- for i, g := range got {
- w := want[i]
- if len(g.Name) != len(w.Name) {
- return fmt.Errorf("names, got %d, want %d", len(g.Name), len(w.Name))
- }
- for n := range g.Name {
- if g.Name[n] != w.Name[n] {
- return fmt.Errorf("name %d, got %q, want %q", n, g.Name[n], w.Name[n])
- }
- }
- if g.File != w.File {
- return fmt.Errorf("filename, got %q, want %q", g.File, w.File)
- }
- if g.Start != w.Start {
- return fmt.Errorf("start address, got %#x, want %#x", g.Start, w.Start)
- }
- if g.End != w.End {
- return fmt.Errorf("end address, got %#x, want %#x", g.End, w.End)
- }
- }
- return nil
-}
-
-// TestFunctionAssembly tests the FunctionAssembly routine by using a
-// fake objdump script.
-func TestFunctionAssembly(t *testing.T) {
- type testcase struct {
- s plugin.Sym
- asm string
- want []plugin.Inst
- }
- testcases := []testcase{
- {
- plugin.Sym{Name: []string{"symbol1"}, Start: 0x1000, End: 0x1FFF},
- ` 1000: instruction one
- 1001: instruction two
- 1002: instruction three
- 1003: instruction four
-`,
- []plugin.Inst{
- {Addr: 0x1000, Text: "instruction one"},
- {Addr: 0x1001, Text: "instruction two"},
- {Addr: 0x1002, Text: "instruction three"},
- {Addr: 0x1003, Text: "instruction four"},
- },
- },
- {
- plugin.Sym{Name: []string{"symbol2"}, Start: 0x2000, End: 0x2FFF},
- ` 2000: instruction one
- 2001: instruction two
-`,
- []plugin.Inst{
- {Addr: 0x2000, Text: "instruction one"},
- {Addr: 0x2001, Text: "instruction two"},
- },
- },
- }
-
- for _, tc := range testcases {
- insts, err := disassemble([]byte(tc.asm))
- if err != nil {
- t.Fatalf("FunctionAssembly: %v", err)
- }
-
- if len(insts) != len(tc.want) {
- t.Errorf("Unexpected number of assembly instructions %d (want %d)\n", len(insts), len(tc.want))
- }
- for i := range insts {
- if insts[i] != tc.want[i] {
- t.Errorf("Expected symbol %v, got %v\n", tc.want[i], insts[i])
- }
- }
- }
-}
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/build_mac.sh b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/build_mac.sh
deleted file mode 100755
index 5ec98f39b5..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/build_mac.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash -x
-
-# This is a script that generates the test MacOS executables in this directory.
-# It should be needed very rarely to run this script. It is mostly provided
-# as a future reference on how the original binary set was created.
-
-set -o errexit
-
-cat <<EOF >/tmp/hello.cc
-#include <stdio.h>
-
-int main() {
- printf("Hello, world!\n");
- return 0;
-}
-EOF
-
-cat <<EOF >/tmp/lib.c
-int foo() {
- return 1;
-}
-
-int bar() {
- return 2;
-}
-EOF
-
-cd $(dirname $0)
-rm -rf exe_mac_64* lib_mac_64*
-clang -g -o exe_mac_64 /tmp/hello.c
-clang -g -o lib_mac_64 -dynamiclib /tmp/lib.c
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_linux_64 b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_linux_64
deleted file mode 100755
index d86dc7cdfc..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_linux_64
+++ /dev/null
Binary files differ
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64 b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64
deleted file mode 100755
index dba1ae1581..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64
+++ /dev/null
Binary files differ
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Info.plist b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Info.plist
deleted file mode 100644
index 41ce537f5d..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
- <dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleIdentifier</key>
- <string>com.apple.xcode.dsym.exe_mac_64</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundlePackageType</key>
- <string>dSYM</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0</string>
- <key>CFBundleVersion</key>
- <string>1</string>
- </dict>
-</plist>
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Resources/DWARF/exe_mac_64 b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Resources/DWARF/exe_mac_64
deleted file mode 100644
index 2cb0e3bf31..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/exe_mac_64.dSYM/Contents/Resources/DWARF/exe_mac_64
+++ /dev/null
Binary files differ
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/fake-llvm-symbolizer b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/fake-llvm-symbolizer
deleted file mode 100755
index 596713cb04..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/fake-llvm-symbolizer
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# Copyright 2014 Google Inc. All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# Fake llvm-symbolizer to use in tests
-
-set -f
-IFS=" "
-
-while read line; do
- # line has form:
- # filename 0xaddr
- # Emit dummy output that matches llvm-symbolizer output format.
- set -- $line
- fname=$1
- addr=$2
- echo "Inlined_$addr"
- echo "$fname.h"
- echo "Func_$addr"
- echo "$fname.c:2"
- echo
-done
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64 b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64
deleted file mode 100755
index 933a3f6931..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64
+++ /dev/null
Binary files differ
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Info.plist b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Info.plist
deleted file mode 100644
index 409e4cf0c9..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
- <dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleIdentifier</key>
- <string>com.apple.xcode.dsym.lib_mac_64</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundlePackageType</key>
- <string>dSYM</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0</string>
- <key>CFBundleVersion</key>
- <string>1</string>
- </dict>
-</plist>
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Resources/DWARF/lib_mac_64 b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Resources/DWARF/lib_mac_64
deleted file mode 100644
index e466c1342e..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/lib_mac_64.dSYM/Contents/Resources/DWARF/lib_mac_64
+++ /dev/null
Binary files differ
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_elf b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_elf
deleted file mode 100644
index f0b503b0b6..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_elf
+++ /dev/null
@@ -1 +0,0 @@
-ELFÿÿÿÿÿÿÿÿ \ No newline at end of file
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_macho b/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_macho
deleted file mode 100644
index b01ddf69a9..0000000000
--- a/src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/malformed_macho
+++ /dev/null
@@ -1 +0,0 @@
-Ïúíþÿÿÿÿÿÿÿÿ \ No newline at end of file