├── doc ├── new.png └── old.png ├── cmd └── goanalyzer │ ├── goanalyzer.iml │ ├── internal │ └── trace │ │ ├── mkcanned.bash │ │ ├── writer.go │ │ ├── mud_test.go │ │ ├── parser_test.go │ │ ├── gc_test.go │ │ ├── mud.go │ │ ├── order.go │ │ ├── goroutines.go │ │ ├── gc.go │ │ └── parser.go │ ├── doc.go │ ├── trace_unix_test.go │ ├── main.go │ ├── trace_test.go │ ├── annotations_test.go │ ├── pprof.go │ ├── mmu.go │ ├── goroutines.go │ └── annotations.go └── readme.md /doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/goanalyzer/HEAD/doc/new.png -------------------------------------------------------------------------------- /doc/old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/goanalyzer/HEAD/doc/old.png -------------------------------------------------------------------------------- /cmd/goanalyzer/goanalyzer.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cmd/goanalyzer/internal/trace/mkcanned.bash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Copyright 2016 The Go Authors. All rights reserved. 3 | # Use of this source code is governed by a BSD-style 4 | # license that can be found in the LICENSE file. 5 | 6 | # mkcanned.bash creates canned traces for the trace test suite using 7 | # the current Go version. 8 | 9 | set -e 10 | 11 | if [ $# != 1 ]; then 12 | echo "usage: $0