1 !<arch> 2 __.PKGDEF 0 0 0 644 5337 ` 3 go object darwin amd64 go1.5.1 X:none 4 build id "9a176d2009c975ed1528d774aeea5cafdb96f2c4" 5 6 $$ 7 package commands 8 import runtime "runtime" 9 import bytes "bytes" 10 import io "io" 11 import fmt "fmt" 12 import os "os" 13 import ioutil "io/ioutil" 14 import time "time" 15 import exec "os/exec" 16 import strings "strings" 17 import plugin "cmd/pprof/internal/plugin" 18 import report "cmd/pprof/internal/report" 19 import svg "cmd/pprof/internal/svg" 20 import tempfile "cmd/pprof/internal/tempfile" 21 type @"".Completer func(@"".prefix string) (? string) 22 type @"bytes".readOp int 23 type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } 24 type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } 25 type @"bytes".Buffer struct { @"bytes".buf []byte; @"bytes".off int; @"bytes".runeBytes [4]byte; @"bytes".bootstrap [64]byte; @"bytes".lastRead @"bytes".readOp } 26 func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Bytes () (? []byte) { return @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:] } 27 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Cap () (? int) { return cap(@"bytes".b2.@"bytes".buf) } 28 func (@"bytes".b1 *@"bytes".Buffer) Grow (@"bytes".n2 int) 29 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Len () (? int) { return len(@"bytes".b2.@"bytes".buf) - @"bytes".b2.@"bytes".off } 30 func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Next (@"bytes".n3 int) (? []byte) { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); var @"bytes".m4 int; ; @"bytes".m4 = @"bytes".b2.Len(); if @"bytes".n3 > @"bytes".m4 { @"bytes".n3 = @"bytes".m4 }; var @"bytes".data5 []byte; ; @"bytes".data5 = @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:@"bytes".b2.@"bytes".off + @"bytes".n3]; @"bytes".b2.@"bytes".off += @"bytes".n3; if @"bytes".n3 > 0x0 { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x2) }; return @"bytes".data5 } 31 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") Read (@"bytes".p4 []byte "esc:0x1") (@"bytes".n1 int, @"bytes".err2 error) 32 func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadByte () (@"bytes".c1 byte, @"bytes".err2 error) 33 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadBytes (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error) 34 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadFrom (@"bytes".r4 @"io".Reader) (@"bytes".n1 int64, @"bytes".err2 error) 35 func (@"bytes".b4 *@"bytes".Buffer "esc:0x1") ReadRune () (@"bytes".r1 rune, @"bytes".size2 int, @"bytes".err3 error) 36 func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadString (@"bytes".delim4 byte) (@"bytes".line1 string, @"bytes".err2 error) 37 func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Reset () 38 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") String () (? string) { if @"bytes".b2 == nil { return "<nil>" }; return string(@"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:]) } 39 func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Truncate (@"bytes".n2 int) 40 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadByte () (? error) { if @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x1) && @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x2) { return @"errors".New("bytes.Buffer: UnreadByte: previous operation was not a read") }; @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); if @"bytes".b2.@"bytes".off > 0x0 { @"bytes".b2.@"bytes".off-- }; return nil } 41 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadRune () (? error) 42 func (@"bytes".b3 *@"bytes".Buffer) Write (@"bytes".p4 []byte "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error) 43 func (@"bytes".b2 *@"bytes".Buffer) WriteByte (@"bytes".c3 byte) (? error) 44 func (@"bytes".b3 *@"bytes".Buffer) WriteRune (@"bytes".r4 rune) (@"bytes".n1 int, @"bytes".err2 error) 45 func (@"bytes".b3 *@"bytes".Buffer) WriteString (@"bytes".s4 string "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error) 46 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") WriteTo (@"bytes".w4 @"io".Writer) (@"bytes".n1 int64, @"bytes".err2 error) 47 func (@"bytes".b2 *@"bytes".Buffer) @"bytes".grow (@"bytes".n3 int) (? int) 48 func (@"bytes".b3 *@"bytes".Buffer "esc:0x22") @"bytes".readSlice (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error) 49 type @"cmd/pprof/internal/plugin".UI interface { IsTerminal() (? bool); Print(? ...interface {}); PrintErr(? ...interface {}); ReadLine() (? string, ? error); SetAutoComplete(@"cmd/pprof/internal/plugin".complete func(? string) (? string)) } 50 type @"".PostProcessor func(@"".input *@"bytes".Buffer, @"".output @"io".Writer, @"".ui @"cmd/pprof/internal/plugin".UI) (? error) 51 type @"".Command struct { Complete @"".Completer; Format int; PostProcess @"".PostProcessor; HasParam bool; Usage string } 52 type @"".Commands map[string]*@"".Command 53 func @"".PProf (@"".c2 @"".Completer, @"".interactive3 **bool) (? @"".Commands) 54 func @"".NewCompleter (@"".cs2 @"".Commands) (? @"".Completer) 55 func @"".init () 56 import errors "errors" // indirect 57 func @"errors".New (@"errors".text2 string) (? error) { return (&@"errors".errorString{ @"errors".s:@"errors".text2 }) } 58 type @"errors".errorString struct { @"errors".s string } 59 func (@"errors".e2 *@"errors".errorString "esc:0x22") Error () (? string) { return @"errors".e2.@"errors".s } 60 61 $$ 62 _go_.o 0 0 0 644 102216 ` 63 go object darwin amd64 go1.5.1 X:none 64 65 ! 66 go13ldbytes.a 67 fmt.aio.aio/ioutil.aos.aos/exec.aruntime.astrings.atime.a6cmd/pprof/internal/plugin.a6cmd/pprof/internal/report.a0cmd/pprof/internal/svg.a:cmd/pprof/internal/tempfile.a"".PProf`_eH%HD$H;AHHH$HD$ H\$H$HH$HD$H\$H$HH$HD$H\$H$HH$HD$H\$H$HH$HD$H\$H$HH$HD$H\$H$H$H$HH$HD$H\$H\$xHH$HD$H-H(H-HhH$HHH$H\$xH\$HH\$HD$H$HD$ H$HT$(H$HL$0H\$8H\$xHH$HD$H\$H\$pHH$HD$H-H(H-HhH$HHH$H\$pH\$HH\$HD$H$HD$ H$HT$(H$HL$0H\$8H\$pHH$HD$H\$H\$hHH$HD$H-H(H-HhH$HHH$H\$hH\$HH\$HD$H$HD$ H$HT$(H$HL$0H\$8H\$hH$H\$`H$HT$HL$H$H$H\$`H\$HH\$HD$H$HD$ H$HT$(H$HL$0H\$8H\$`HH$HD$H\$H\$XH$HT$HL$H$H$H\$XH\$HH\$HD$H$HD$ H$HT$(H$HL$0H\$8H\$XHH$HD$HD$HD$H\$ H\$PHH$H$HH$HD$1H(H@1Hh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=SH(H@1Hh1@hH-Hh H@(0HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@1Hh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@1Hh1@hH-Hh H@( HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@1Hh1@hH-Hh H@(&HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@H4H$=H(H@1Hh1@hH-Hh H@( HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HaH$=4H(H@1HhH@hH-Hh H@(BHD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@H H$=\ H(H@1HhH@hH-Hh H@(5HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@1HhH@hH-Hh H@(3HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$ HH$HD$HD$@HH$=H(H@ H$=pHh1@hH-Hh H@(#HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@H 78 H$= 79 H(H@H$=n 80 Hh1@hH-Hh H@(1HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@H H$= H(H@H$=l Hh1@hH-Hh H@(#HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@H$=jHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@H$=hHh1@hH-Hh H@(#HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@H$=fHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@H$=dHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@Hl$x=eHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@Hl$p=fHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@Hl$h=gHh1@hH-Hh H@(HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@Hl$`=hHh1@hH-Hh H@(#HD$HHH$H\$PH\$H$H\$H\$HH\$HH$H$HH$HD$HD$@HH$=H(H@Hl$X=umHhH@hH-Hh H@(HHD$HHH$H\$PH\$H$H\$H\$HH\$H\$PH$HL@L$Hl$HD$@{H$Hl$HD$@I*L@L$Hl$HD$@H$Hl$HD$@J+L@L$Hl$HD$@H$Hl$HD$@K,L@L$Hl$HD$@H$Hl$HD$@L-L@L$Hl$HD$@H$Hl$HD$@M.L@L$Hl$HD$@H$Hl$HD$@K,L@L$Hl$HD$@H$Hl$HD$@I*L@L$Hl$HD$@H$Hl$HD$@G(L@L$Hl$HD$@~H$Hl$HD$@E&L@L$Hl$HD$@|H$Hl$HD$@C$L@L$Hl$HD$@zH$Hl$HD$@A"L@L$Hl$HD$@xH$Hl$HD$@? H$Hl$HD$@gHH$Hl$HD$@pH$Hl$HD$@H$Hl$HD$@H$Hl$HD$@H$Hl$HD$@>H$Hl$HD$@kLH$Hl$HD$@y 81 D2go.string."callgraph.out"h 82 "".awayFromTTY"go.string."pb.gz" 83 "".awayFromTTYgo.string."gif" 84 "".invokeDotgo.string."pdf" 85 "".invokeDotgo.string."png" 86 "".invokeDotgo.string."ps" 87 "".invokeDot 88 "".saveSVGToFilego.string."svg" 89 "".invokeDottype.[1]string 90 "runtime.newobject""".statictmp_0021""".statictmp_0021go.string."svg" 91 &"".invokeVisualizergo.string."pdf" 92 "".invokeDottype.[1]string 93 "runtime.newobject""".statictmp_0024""".statictmp_0024 go.string."pdf" 94 &"".invokeVisualizer 95 go.string."ps" 96 97 "".invokeDot 98 type.[1]string 99 100 "runtime.newobject""".statictmp_0027""".statictmp_0027go.string."ps" 105 &"".invokeVisualizer 107 "".saveSVGToFile 109 "".browsersgo.string."svg" 110 &"".invokeVisualizer go.string."html" 111 "".awayFromTTY 112 "".browsers go.string."html" 113 &"".invokeVisualizer type."".Commands 114 runtime.makemap go.string."tags"type."".Command 115 "runtime.newobjectVgo.string."Outputs all tags in the profile" type."".Commands 116 $runtime.mapassign1go.string."raw"type."".Command 117 "runtime.newobject6runtime.writeBarrierEnabledxgo.string."Outputs a text representation of the raw profile" type."".Commands 118 $runtime.mapassign1go.string."dot"type."".Command 119 "runtime.newobject6runtime.writeBarrierEnabledRgo.string."Outputs a graph in DOT format" type."".Commands 120 $runtime.mapassign1go.string."top"type."".Command 121 "runtime.newobject6runtime.writeBarrierEnabledXgo.string."Outputs top entries in text form" type."".Commands 122 $runtime.mapassign1 go.string."tree"type."".Command 123 "runtime.newobject6runtime.writeBarrierEnableddgo.string."Outputs a text rendering of call graph" type."".Commands 124 $runtime.mapassign1 go.string."text" type."".Command 125 "runtime.newobject!6runtime.writeBarrierEnabled!Xgo.string."Outputs top entries in text form"! type."".Commands" 126 $runtime.mapassign1"$go.string."disasm"#type."".Command# 127 "runtime.newobject#6runtime.writeBarrierEnabled$go.string."Output annotated assembly for functions matching regexp or address"$ type."".Commands% 128 $runtime.mapassign1% go.string."list"&type."".Command& 129 "runtime.newobject&6runtime.writeBarrierEnabled'go.string."Output annotated source for functions matching regexp"' type."".Commands( 130 $runtime.mapassign1( go.string."peek"(type."".Command) 131 "runtime.newobject)6runtime.writeBarrierEnabled*~go.string."Output callers/callees of functions matching regexp"* type."".Commands+ 132 $runtime.mapassign1+*go.string."callgrind"+type."".Command+ 133 "runtime.newobject,6runtime.writeBarrierEnabled-6runtime.writeBarrierEnabled-^go.string."Outputs a graph in callgrind format"- type."".Commands. 134 $runtime.mapassign1."go.string."proto".type."".Command/ 135 "runtime.newobject/6runtime.writeBarrierEnabled06runtime.writeBarrierEnabled0zgo.string."Outputs the profile in compressed protobuf format"0 type."".Commands1 136 $runtime.mapassign11go.string."gif"2type."".Command2 137 "runtime.newobject26runtime.writeBarrierEnabled36runtime.writeBarrierEnabled3^go.string."Outputs a graph image in GIF format"3 type."".Commands4 138 $runtime.mapassign14go.string."pdf"5type."".Command5 139 "runtime.newobject56runtime.writeBarrierEnabled66runtime.writeBarrierEnabled6Rgo.string."Outputs a graph in PDF format"7 type."".Commands7 140 $runtime.mapassign17go.string."png"8type."".Command8 141 "runtime.newobject86runtime.writeBarrierEnabled96runtime.writeBarrierEnabled9^go.string."Outputs a graph image in PNG format": type."".Commands: 142 $runtime.mapassign1:go.string."ps";type."".Command; 143 "runtime.newobject<6runtime.writeBarrierEnabled<6runtime.writeBarrierEnabled<Pgo.string."Outputs a graph in PS format"= type."".Commands= 144 $runtime.mapassign1>go.string."svg">type."".Command> 145 "runtime.newobject?6runtime.writeBarrierEnabled?6runtime.writeBarrierEnabled@Rgo.string."Outputs a graph in SVG format"@ type."".CommandsA 146 $runtime.mapassign1Ago.string."eog"Atype."".CommandA 147 "runtime.newobjectB6runtime.writeBarrierEnabledB6runtime.writeBarrierEnabledCNgo.string."Visualize graph through eog"C type."".CommandsD 148 $runtime.mapassign1D$go.string."evince"Dtype."".CommandD 149 "runtime.newobjectE6runtime.writeBarrierEnabledE6runtime.writeBarrierEnabledFTgo.string."Visualize graph through evince"F type."".CommandsG 150 $runtime.mapassign1Ggo.string."gv"Gtype."".CommandG 151 "runtime.newobjectH6runtime.writeBarrierEnabledH6runtime.writeBarrierEnabledILgo.string."Visualize graph through gv"I type."".CommandsJ 152 $runtime.mapassign1Jgo.string."web"Jtype."".CommandJ 153 "runtime.newobjectK6runtime.writeBarrierEnabledK6runtime.writeBarrierEnabledL^go.string."Visualize graph through web browser"L type."".CommandsM 154 $runtime.mapassign1M&go.string."weblist"Mtype."".CommandM 155 "runtime.newobjectN6runtime.writeBarrierEnabledN6runtime.writeBarrierEnabledOgo.string."Output annotated source in HTML for functions matching regexp or address"O type."".CommandsP 156 $runtime.mapassign1Q 157 .runtime.writebarrierptrQ 158 .runtime.writebarrierptrQ 159 .runtime.writebarrierptrR 160 .runtime.writebarrierptrR 161 .runtime.writebarrierptrS 162 .runtime.writebarrierptrS 163 .runtime.writebarrierptrT 164 .runtime.writebarrierptrT 165 .runtime.writebarrierptrU 166 .runtime.writebarrierptrU 167 .runtime.writebarrierptrU 168 .runtime.writebarrierptrV 169 .runtime.writebarrierptrV 170 .runtime.writebarrierptrW 171 .runtime.writebarrierptrW 172 .runtime.writebarrierptrX 173 .runtime.writebarrierptrX 174 .runtime.writebarrierptrY 175 .runtime.writebarrierptrY 176 .runtime.writebarrierptrZ 177 .runtime.writebarrierptrZ 178 .runtime.writebarrierptr[ 179 .runtime.writebarrierptr[ 180 .runtime.writebarrierptr\ 181 .runtime.writebarrierptr\ 182 .runtime.writebarrierptr\ 183 .runtime.writebarrierptr] 184 .runtime.writebarrierptr] 185 .runtime.writebarrierptr^ 186 .runtime.writebarrierptr^ 187 .runtime.writebarrierptr_ 188 .runtime.writebarrierptr_ 189 0runtime.morestack_noctxt0f"".autotmp_0052 type.*"".Command"".autotmp_0051 type.*"".Command"".autotmp_0050 type.*"".Command"".autotmp_0049 type.*"".Command"".autotmp_0048 type.*"".Command"".autotmp_0047 type.*"".Command"".autotmp_0046 type.*"".Command"".autotmp_0045 type.*"".Command"".autotmp_0044 type.*"".Command"".autotmp_0043 type.*"".Command"".autotmp_0042 type.*"".Command"".autotmp_0041 type.*"".Command"".autotmp_0040 type.*"".Command"".autotmp_0039 type.*"".Command"".autotmp_0038 type.*"".Command"".autotmp_0037 type.*"".Command"".autotmp_0036 type.*"".Command"".autotmp_0035 type.*"".Command"".autotmp_0034 type.*"".Command"".autotmp_0033 type.*"".Command"".autotmp_0032 type.*"".Command"".autotmp_0031 type.*"".Command"".autotmp_0030Otype.string"".autotmp_0029 type."".Commands"".autotmp_0028type.*[1]string"".autotmp_0026type.[]string"".autotmp_0025type.*[1]string"".autotmp_0023type.[]string"".autotmp_0020/type.[]string"".autotmp_0019*type."".PostProcessor"".autotmp_0018type.[]string"".autotmp_0017*type."".PostProcessor"".autotmp_0016*type."".PostProcessor"".autotmp_0015type.[]string"".autotmp_0014*type."".PostProcessor"".autotmp_0013*type."".PostProcessor"".autotmp_0012*type."".PostProcessor"".autotmp_0011*type."".PostProcessor"".autotmp_0010*type."".PostProcessor"".autotmp_0009*type."".PostProcessor"".autotmp_0008*type."".PostProcessor"".autotmp_0007*type."".PostProcessor"".autotmp_0006*type."".PostProcessor"".autotmp_0005*type."".PostProcessor"".autotmp_0004*type."".PostProcessor"".autotmp_0003*type."".PostProcessor"".autotmp_0002o*type."".PostProcessor"".autotmp_0001_*type."".PostProcessor"".~r2 type."".Commands"".interactivetype.**bool"".c"type."".Completer(0`&&&&&&?5;;;;;;;;;;;;3&&&&&%##e#e55g';;;;;;;;;;;Tgclocals25bf03c8d439eba1e0b3a36ead180227Tgclocalsf4c4804c9b1b491c91a65f798c0a333dprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go"".browsers 192 193 eH%H;auHh1H\$pH\$xH$1H\$PH\$XH\$`HH$HD$H|$PHt$`H\$H\$@LD$LD$HItBHD$XHHHH9H\$XHHHkHLCHl$@=^H+HD$XHHHH9IHHHkHH-H+HC H|$PHLD$XLHt$`LHH9w~HHHHkHH-H+HCHHHHkHH-H+HC HHHHkHH-H+HCH|$pHT$xH$HhH-H,$HL$HD$Ht$H\$ HL$(HD$0Ht$8HHHCH-H,$HL$HD$Ht$H\$ HL$(HD$0Ht$8IIHH$Hl$H|$PHt$`H-H,$HL$HD$Ht$H\$ LD$HHL$(HD$0Ht$8HHH\$XHt$`HHL$P n 198 ~&go.string."BROWSER" 199 os.Getenv6runtime.writeBarrierEnabled2go.string."/usr/bin/open"$go.string."chrome"2go.string."google-chrome"&go.string."firefox"type.[]string 200 "runtime.growslicetype.[]string 201 "runtime.growslice 202 .runtime.writebarrierptrtype.[]string 203 "runtime.growslice 204 205 0runtime.morestack_noctxt0"".exeOtype.string"".cmds/type.[]string"".~r0type.[]string:+=B9BAUPm3NTgclocals64e6abdf0268293babaa7bcc4e1e7821Tgclocals7c8ce69a3c258c57317bb1d6c155da32prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go"".NewCompletereH%H;av]HHH$HD$H-H(HD$Hl$ =uHhHD$(HL@L$Hl$HD$ 211 ,Rtype.struct { F uintptr; cs "".Commands }> 212 "runtime.newobjectV*"".NewCompleter.func1|6runtime.writeBarrierEnabled 213 .runtime.writebarrierptr 214 0runtime.morestack_noctxt 0"".autotmp_0068Ttype.*struct { F uintptr; cs "".Commands }"".~r1"type."".Completer 216 "".cs type."".Commands0?/0-6D 217 CDEB Tgclocals32bd5c6dc84e3e86dd35593b3922d3aaTgclocals0c8aa8e80191a30eac23f1a218103f16prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go"".awayFromTTYeH%H;avfHHH$HD$H-H(HD$Hl$(HhHl$ =uHhHD$0HL@L$Hl$HD$ 219 ,Ptype.struct { F uintptr; format string }> 220 "runtime.newobjectV("".awayFromTTY.func16runtime.writeBarrierEnabled 221 .runtime.writebarrierptr 222 0runtime.morestack_noctxt00"".autotmp_0069Rtype.*struct { F uintptr; format string }"".~r1 *type."".PostProcessor"".formattype.string0H/0$? 224 KTgclocals41a13ac73c712c01973b8fe23f62d694Tgclocals0c8aa8e80191a30eac23f1a218103f16prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go"".invokeDoteH%H;aH(H\$0H$H\$8H\$H\$H\$HH$HD$H-H(HD$ Hl$8HhHl$0=uCHhHt5Hl$=uHhHD$@H(L@L$Hl$HD$ L@L$Hl$HD$ & 227 V 228 "".awayFromTTYxtype.struct { F uintptr; format string; divert "".PostProcessor } 229 "runtime.newobject$"".invokeDot.func16runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 230 .runtime.writebarrierptr 231 .runtime.writebarrierptr 232 0runtime.morestack_noctxt0P"".autotmp_0070type.*struct { F uintptr; format string; divert "".PostProcessor }"".divert*type."".PostProcessor"".~r1 *type."".PostProcessor"".formattype.stringPOPF$"W 234 *cTgclocals197df35d123b8543b316c6de2f24053aTgclocals004a01713ed78f3a912721f1856220a7prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go "".saveSVGToFileeH%H;aH0HH$HD$H\$H\$HH$HD$H\$H\$ HH$HD$H-H(HD$(Hl$=uCHhHt5Hl$ =uHhHD$8H0L@L$Hl$HD$(L@L$Hl$HD$( 237 4go.string."svg"X 238 "".invokeDotzgo.string."svg" 239 "".awayFromTTYtype.struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor } 240 "runtime.newobject,"".saveSVGToFile.func16runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 241 .runtime.writebarrierptr 242 .runtime.writebarrierptr 243 0runtime.morestack_noctxt`"".autotmp_0071type.*struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }"".divert*type."".PostProcessor"".generateSVG/*type."".PostProcessor"".~r0*type."".PostProcessor`_`K(##N 246 +#Z!Tgclocals4d8f4351ae24f7a880f472246ed2ba20Tgclocals05ecff0327a4391c08027de9c08c00a9prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go "".makeVizTmpDireH%H;aH`1H\$hH\$pHHt1H\$hH\$pH`1H$H\$HH\$HD$Hl$ HT$(HD$0HL$8HL$XHD$PHtHD$hHL$pH`HT$HHHHl$@=uH1H\$hH\$pH`H-H,$H\$ 251 L"".vizTmpDir$go.string."pprof-" 252 "io/ioutil.TempDir"".vizTmpDir6runtime.writeBarrierEnabled"".vizTmpDir"".vizTmpDir 253 .runtime.writebarrierptr 254 0runtime.morestack_noctxt "".errtype.error"".name?type.string"".~r0type.error0)W4"0# >$aTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go&"".invokeVisualizereH%H;a"HHH$HD$H-H(HD$Hl$8HhHl$0=HhHHl$(=HhHl$HHh(Hl$PHh0Hl$@=uCHh Ht5Hl$ =uHh8HD$XHL@8L$Hl$HD$L@ L$Hl$HD$L@L$Hl$HD$hKL@L$Hl$HD$% 262 4type.struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }F 263 "runtime.newobject^2"".invokeVisualizer.func16runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 264 .runtime.writebarrierptr 265 .runtime.writebarrierptr 266 .runtime.writebarrierptr 267 .runtime.writebarrierptr 268 0runtime.morestack_noctxt0"".autotmp_0072type.*struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }"".~r4p*type."".PostProcessor"".visualizers@type.[]string"".suffix type.string"".format*type."".PostProcessor"".interactivetype.**bool0/0"J 271 IJI\"sTgclocalsdffecd5ddc719ff54db76b9bd92767e3Tgclocals0c8aa8e80191a30eac23f1a218103f16prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go*"".NewCompleter.func1eH%H$H;AHxHZH\$H1H$H$H$H$H$H\$Hl$HHT$H$HL$H\$ H$H$Hu(H$H$H$H$HxH1H$H$H$1HH$Hl$H$H\$H$1H9'H$HkLLCH$H$FH3HCL$LL$XL$Ht$xLD$`H$I9L9H9L$L$H$HD$Ht$HD$L$L$\$ H<tFH$Ht(H$H$H$H$HxL$L$H$H$H$1H9H$H?H$H$H$H$Hx1Q1CHH$Hl$HGH|$H 278 HHJHOH$HL$ \$(H9H|$PH1H9HHH$Hl$@H9HHH3HSH$Ht$hH$L L$HHT$pH$H9H9uH9eH$H4$H$HD$LL$HD$H|$PH$H$\$ H<HHHHHtHH$H,$H$H\$HHHL$HD$H$HH\$HD$H$HL$H$HD$ H\$(H$H\$0H$H\$@H$H9'H$H$H$H$HHHH9HHH$H$H$HHHkHH$HkH$=ueH+H$H$H$H\$H$H\$HH\$HD$ HL$(HD$0H$H$HxH$Hl$H-H,$HT$HD$HL$H\$ HT$(HD$0HL$8H4$HT$HHH\$H$H\$H$11: 286 287 strings.Fields 288 runtime.duffzero type."".Commands 289 &runtime.mapiterinit 290 runtime.eqstring 291 &runtime.mapiternext 292 $runtime.panicslice 293 294 $runtime.panicindex 295 type."".Commands 297 4runtime.mapaccess2_faststrgo.string."-" 299 runtime.eqstringgo.string."-" 300 *runtime.concatstring26runtime.writeBarrierEnabledgo.string." " 301 strings.Join 302 .runtime.writebarrierptrtype.[]string 303 "runtime.growslice 304 $runtime.panicslice 305 $runtime.panicslice 306 $runtime.panicslice 307 $runtime.panicindex 308 $runtime.panicindex 309 "runtime.morestack@8"".autotmp_0094type.bool"".autotmp_0091type.string"".autotmp_0089type.string"".autotmp_0088type.[]string"".autotmp_0087type.[]string"".autotmp_0086type.string"".autotmp_0085type.string"".autotmp_0084type.string"".autotmp_0083type.int"".autotmp_0082type.int"".autotmp_0081type.int"".autotmp_0080type.int"".autotmp_0079type.string"".autotmp_0076type.int"".autotmp_0075@type.map.iter[string]*"".Command 310 "".cs type."".Commands"strings.prefix3type.stringstrings.s2type.string"strings.prefix3type.stringstrings.s2type.string"".lastTokentype.string"".lastTokenIdxtype.int"".c type.*"".Command"".ctype.string"".foundtype.string"".tokenstype.[]string"".~r1 type.string"".linetype.stringD"m=J>(9 313 ]( $(P$+ 'FVsYIe 0& 315 ( +Tgclocals698e8a16b5c9bdb3e65772e48b46271dTgclocals44a80b5f37227d1a2558d86edf647239prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go("".awayFromTTY.func1eH%HD$H;AHHZH+Hl$xHkH$1H$0H$8H$1H9tH[H-H9%H$H<H-H9 H$(H$H$ H[ \$H$HH\$HD$H\$xH\$H$H\$ H\$(H|$ HHHKHO1H$H\$HH\$HD$HT$0HD$8HL$@H$H$HtH$0H$8HHH$H$HT$H1H*HHMHEHL$hH$HD$pH$HH$H\$HH$H$H$HH$H$H\$HD$HL$HD$ H$H$HH$= HCHH$H$H\$HD$HL$HD$ H$HH$HH$=HCH$H\$H$H\$H$H\$H$(H$H$ H[0H\$HH\$XH$H\$`HHT$P1H91H$H$H$HH$H$HD$`HH$H$HH$=uhHFHL$XH$H$H$HL$Ht$H$H\$H$H\$ HL$0HD$8H$0H$8HLFL$HD$H$HT$Px%HH$HH\$HH\$HT$HT$PLCL$HD$DLCL$HD$JEH$1H$H$H$HH$H$HH$H$HH$=ucHBH$H$H$H\$HT$H$H\$H$H\$ HL$0HD$8H$0H$8HLBL$HD$H$711\D 320 type.*os.Fileos.Stdoutgo.string."." 321 *runtime.concatstring2&go.string."profile" 322 >cmd/pprof/internal/tempfile.NewBgo.string."Generating report in "(type.[2]interface {} 323 "runtime.newobjecttype.string 324 runtime.convT2E 6runtime.writeBarrierEnabled type.string 325 runtime.convT2E 326 6runtime.writeBarrierEnabled4go.itab.*os.File.io.Writer $type.*bytes.Buffer6runtime.writeBarrierEnabled 330 fmt.Fprint 331 .runtime.writebarrierptrtype.*os.Filetype.io.Writer4go.itab.*os.File.io.Writer 332 runtime.typ2Itab 333 .runtime.writebarrierptr 334 .runtime.writebarrierptr$type.*bytes.Buffer6runtime.writeBarrierEnabled 335 fmt.Fprint 336 .runtime.writebarrierptr 337 "runtime.morestackp0"".autotmp_0118(type.[1]interface {}"".autotmp_0116*type.*[1]interface {}"".autotmp_0115&type.[]interface {}"".autotmp_0114(type.[1]interface {}"".autotmp_0111&type.[]interface {}"".autotmp_0110type.*uint8"".autotmp_0109"type.interface {}"".autotmp_0108"type.interface {}"".autotmp_0106/&type.[]interface {}"".autotmp_0104type.*os.File"".autotmp_0103$type.*bytes.Buffer"".autotmp_0102$type.*bytes.Buffer"".autotmp_0101type.*os.File"".autotmp_0100otype.string"".autotmp_0099Otype.string"".autotmp_0098type.bool"".formattype.string"".~r0type.string"".errtype.error"".tempFiletype.*os.File"".~r3Ptype.error 341 "".ui0Btype.cmd/pprof/internal/plugin.UI"".outputtype.io.Writer"".input$type.*bytes.Buffer6BHIrb=# <DU4A!45Tgclocalsd4f1d66c605c430f7d24126b3dd8b550Tgclocals9ef97d531491c69734fa4b616187f246prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go$"".invokeDot.func1eH%H$PH;AcH0HZH+Hl$`HkHl$hHZH\$81H$`H$hHH$HD$HD$ H\$(H$H$H6HH$H$-HH$H\$HH$ H$(H$HH$H$H\$HD$HL$HD$ H$H$HH$=umHCH$H\$H$ H\$H$(H\$H$XH$H$PH[0H$H$`H$H$hH0LCL$HD$1H$H$H$HH$H$H$H$HH\$HD$H\$`H\$H\$hH\$ HL$(HD$0H$H$HCH$=HHH$HD$H$H\$H$H\$H$H\$ H\$(H\$@HH$HD$H$8H\$PHD$XHD$HH1H95H\$PH$H$H1H9H\$HH$H$H1H9HH$H$H\$@H$HkPH$=/HkXH\$@H$Hk`H$=HkhH\$@H$HkpH$=HkxH\$@H$HD$HL$HL$xHD$pHtH$`H$hH0H\$XH$H$@H\$H$HH\$H$PH\$H$XH\$ HT$8HHL$(HD$0H$`H$hH0LCxL$Hl$@LChL$Hl$LCXL$Hl$HH$HH\$HH\$HD$KHH$HH\$HH\$HD$HH$HH\$HH\$HD$H$HL$kxX 346 go.string."dot" 347 os/exec.LookPathrgo.string."Cannot find dot, have you installed Graphviz?"(type.[1]interface {} 348 "runtime.newobjecttype.string 349 runtime.convT2E6runtime.writeBarrierEnabled 350 .runtime.writebarrierptrgo.string."-T" 351 *runtime.concatstring2 6runtime.writeBarrierEnabled go.string."dot" 352 353 os/exec.Command"type.bytes.Buffer 356 "runtime.newobject>go.itab.*bytes.Buffer.io.Reader>go.itab.*bytes.Buffer.io.Writer4go.itab.*os.File.io.Writer os.Stderr 6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 362 $os/exec.(*Cmd).Run 363 .runtime.writebarrierptr 364 .runtime.writebarrierptr 365 .runtime.writebarrierptrtype.*os.Filetype.io.Writer4go.itab.*os.File.io.Writer 366 runtime.typ2Itab$type.*bytes.Buffertype.io.Writer>go.itab.*bytes.Buffer.io.Writer 367 runtime.typ2Itab$type.*bytes.Buffertype.io.Reader>go.itab.*bytes.Buffer.io.Reader 368 runtime.typ2Itab 369 .runtime.writebarrierptr 370 "runtime.morestackp."".autotmp_0142type.*uint8"".autotmp_0141type.io.Writer"".autotmp_0140type.*uint8"".autotmp_0139type.io.Writer"".autotmp_0137type.io.Reader"".autotmp_0136type.string"".autotmp_0135type.[1]string"".autotmp_0132_type.[]string"".autotmp_0131"type.interface {}"".autotmp_0129/&type.[]interface {}"".autotmp_0127$type.*bytes.Buffer"".autotmp_0126$type.*bytes.Buffer"".autotmp_0125type.string"".divert*type."".PostProcessor"".formattype.string"".&buf$type.*bytes.Buffer"".errtype.error"".cmd"type.*os/exec.Cmd"".errtype.error"".~r3Ptype.error 375 "".ui0Btype.cmd/pprof/internal/plugin.UI"".outputtype.io.Writer"".input$type.*bytes.Buffer6"hLR=((i NfOUv7v|1-22#Tgclocalsf77213eb336a0cd95312c528b7eda04dTgclocals9106d6da33fcff6acef4d03958440b62prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go,"".saveSVGToFile.func1eH%H$xH;AhHHZH$HZH$1H$8H$@HH$H|$HH1HH$H$H1H9H$H$H$H$HD$H$HL$H$(H\$H$0H\$ H$HHH$H|$HH11HH$H$H$HHH\$pH$H\$xH$HH$1H91H$H$H$HWH$H$H$HH$H$H\$HD$HL$HD$ H$H$HH$=HCH$H$H$H$H$HL$H$H\$H$H\$H$H\$ H$H$H$H\$H$ H\$H$(H\$H$0H\$ H$HHL$(HD$0H$8H$@HLCL$HD$%HH$HH\$HH\$H\$H$DHH$HH\$HH\$HD$s6 379 "type.bytes.Buffer 380 "runtime.newobject 381 runtime.duffzero>go.itab.*bytes.Buffer.io.Writer"type.bytes.Buffer 382 "runtime.newobject 383 runtime.duffzero 384 runtime.duffcopy 385 <cmd/pprof/internal/svg.Massage>go.itab.*bytes.Buffer.io.Writertype.string 386 runtime.convT2E6runtime.writeBarrierEnabled 387 fmt.Fprint 390 .runtime.writebarrierptr$type.*bytes.Buffertype.io.Writer>go.itab.*bytes.Buffer.io.Writer 395 runtime.typ2Itab $type.*bytes.Buffer type.io.Writer >go.itab.*bytes.Buffer.io.Writer 400 runtime.typ2Itab 401 "runtime.morestackp$"".autotmp_0158"type.interface {}"".autotmp_0157o(type.[1]interface {}"".autotmp_0154/&type.[]interface {}"".autotmp_0153type.*uint8"".autotmp_0152$type.*bytes.Buffer"".autotmp_0151type.*uint8"".autotmp_0150$type.*bytes.Buffer"".autotmp_0148Otype.string"".autotmp_0147$type.*bytes.Buffer"".autotmp_0146$type.*bytes.Buffer"".divert*type."".PostProcessor"".generateSVG*type."".PostProcessor"".massaged$type.*bytes.Buffer"".baseSVG$type.*bytes.Buffer"".~r3Ptype.error 403 "".ui0Btype.cmd/pprof/internal/plugin.UI"".outputtype.io.Writer"".input$type.*bytes.Buffer"2L-w-o_2 0WYP14H#Tgclocalse9218e9dd2a04495ed8ce78a45905c2cTgclocals2e03cbd95da0d53c8a755a82469e4fafprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go2"".invokeVisualizer.func1eH%H$H;AHpHZH+H$HkH$HZH\$pHZ H$HZ8H\$h1H$H$H$HL$H$H$HtH$H$HpH$HH\$HD$H$H\$H$H\$ H\$(H|$ HHHKHOHH$HH\$HH\$HD$HT$0HD$8HL$@H$H$HtH$H$HpHT$`1H*HHMHEH$H$H$HD$H\$`H$H1H9H$xH$H$H$HD$H$HL$H$H\$H$H\$ HT$pHHD$(HL$0H$H$HtH$H$HpH\$`H$H$HHCHkH$P1H$HHD$HH$@HHl$HH9HD$xHHHhHL$PH$H$H$H$H$Hl$HH\$HD$H\$ H$XLL$(HL$0H$hL$`IuGHD$xHL$PHHHl$HH9VH$H$H$H$HpLHIHHL$XHtIHD$`HH1H(HHMHEH$H$H$H$L$(LH$0HH$8HHHH9HHH$H$ H$HHHkHH$HkH$=H+H$XIHH$HNHL$H$H\$H$H\$H$ H\$ H\$(H\$XH1H9H H\$XHH$HCpH$=HKxH\$XH$H\$H$H\$H$H$HH$;H\$hHu0H\$XH$HL$HD$H$H$Hp1H$H$HpLCxL$HL$HHH$HH\$HH\$HD$H$Hl$L$`HH-H,$HT$HD$HL$H\$ L$`HT$(HD$0HL$8EYFHH$HH\$HH\$HD$*ETJ 412 413 "".makeVizTmpDirgo.string."." 414 *runtime.concatstring2"".vizTmpDir"".vizTmpDir"go.string."pprof" 415 >cmd/pprof/internal/tempfile.New 416 Ncmd/pprof/internal/tempfile.DeferDelete4go.itab.*os.File.io.Writer 417 os.(*File).Closego.string." " 420 strings.Split6runtime.writeBarrierEnabled 421 os/exec.Command4go.itab.*os.File.io.Writeros.Stderr6runtime.writeBarrierEnabled 422 (os/exec.(*Cmd).Start 423 time.Sleep 424 &os/exec.(*Cmd).Wait 425 .runtime.writebarrierptrtype.*os.Filetype.io.Writer4go.itab.*os.File.io.Writer 426 runtime.typ2Itab 427 $runtime.panicindex 428 .runtime.writebarrierptrtype.[]string 429 "runtime.growslice 430 $runtime.panicslicetype.*os.Filetype.io.Writer4go.itab.*os.File.io.Writer 431 runtime.typ2Itab 432 "runtime.morestackp4"".autotmp_0175type.*uint8"".autotmp_0174type.string"".autotmp_0173type.string"".autotmp_0172type.*string"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0167type.[]string"".autotmp_0166type.[]string"".autotmp_0164_type.[]string"".autotmp_0163type.*os.File"".interactivetype.**bool"".&visualizerstype.*[]string"".format*type."".PostProcessor"".suffixtype.string"".~r0type.string"".~r0type.string"".viewer"type.*os/exec.Cmd"".args/type.[]string"".vtype.string"".errtype.error"".tempFiletype.*os.File"".errtype.error"".~r3Ptype.error 438 "".ui0Btype.cmd/pprof/internal/plugin.UI"".outputtype.io.Writer"".input$type.*bytes.Buffer`" m$:nR,(M: 09q 2LmstCe9NC1)1%Tgclocals69c6880dbf0c82e05f757154c55c0769Tgclocals8899a175011fb27a2d8f06aefaa7bf13prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go"".initeH%H;avptuw( 444 $"".initdone<"".initdoneR 445 "runtime.throwinitb"".initdonen 446 bytes.initx 447 fmt.init 448 io.init 449 io/ioutil.init 450 os.init 451 os/exec.init 452 runtime.init 453 strings.init 454 time.init 455 <cmd/pprof/internal/plugin.init 456 <cmd/pprof/internal/report.init 457 6cmd/pprof/internal/svg.init 458 @cmd/pprof/internal/tempfile.init"".initdone 459 0runtime.morestack_noctxt 460 461 (hTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go(type..hash.[1]stringeH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 463 464 runtime.strhash 465 0runtime.morestack_noctxt0P 466 "".autotmp_0184type.int"".autotmp_0183type.int"".~r2 type.uintptr"".htype.uintptr"".ptype.*[1]stringPOP 468 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go$type..eq.[1]stringeH%H;aHX1HD$(Hl$(H9HD$0H\$`HHHHH3HKH\$hHtvHHHHHCH9uVHt$HH4$HL$PHL$HT$8HT$HD$@HD$\$ t HD$0HHl$(H9nD$pHXD$pHXc 470 471 runtime.eqstring 472 0runtime.morestack_noctxt0"".autotmp_0188?type.string"".autotmp_0187type.string"".autotmp_0186_type.int"".autotmp_0185Otype.int"".~r2 type.bool"".qtype.*[1]string"".ptype.*[1]string& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go(type..hash.[8]stringeH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 476 477 runtime.strhash 478 0runtime.morestack_noctxt0P 479 "".autotmp_0190type.int"".autotmp_0189type.int"".~r2 type.uintptr"".htype.uintptr"".ptype.*[8]stringPOP 481 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go$type..eq.[8]stringeH%H;aHX1HD$(Hl$(H9HD$0H\$`HHHHH3HKH\$hHtvHHHHHCH9uVHt$HH4$HL$PHL$HT$8HT$HD$@HD$\$ t HD$0HHl$(H9nD$pHXD$pHXc 483 484 runtime.eqstring 485 0runtime.morestack_noctxt0"".autotmp_0194?type.string"".autotmp_0193type.string"".autotmp_0192_type.int"".autotmp_0191Otype.int"".~r2 type.bool"".qtype.*[8]string"".ptype.*[8]string& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go\type..hash.struct { F uintptr; format string }eH%H;avvH H\$(H$H<$tYH\$0H\$HD$HD$H\$(H$H<$t#H$HD$0HD$H\$H\$8H %%q 489 n 490 runtime.memhash 491 runtime.strhash 492 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".pRtype.*struct { F uintptr; format string }@_?@ 494 6ZTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.goXtype..eq.struct { F uintptr; format string }eH%H;aHHHL$PHD$XHH(H9t 496 D$`HHHqHIHPH@H9u@Ht$8H4$HL$@HL$HT$(HT$HD$0HD$\$ t 497 D$`HHD$`HHa 498 499 runtime.eqstring 500 0runtime.morestack_noctxt0 501 "".autotmp_0196?type.string"".autotmp_0195type.string"".~r2 type.bool"".qRtype.*struct { F uintptr; format string }"".pRtype.*struct { F uintptr; format string }0T 504 r.Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go4type..hash.[2]interface {}eH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 506 507 (runtime.nilinterhash 508 0runtime.morestack_noctxt0P 509 "".autotmp_0198type.int"".autotmp_0197type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[2]interface {}POP 511 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go0type..eq.[2]interface {}eH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc 514 515 runtime.efaceeq 516 0runtime.morestack_noctxt0"".autotmp_0202?"type.interface {}"".autotmp_0201"type.interface {}"".autotmp_0200_type.int"".autotmp_0199Otype.int"".~r2 type.bool"".q*type.*[2]interface {}"".p*type.*[2]interface {}& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go4type..hash.[1]interface {}eH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 520 521 (runtime.nilinterhash 522 0runtime.morestack_noctxt0P 523 "".autotmp_0204type.int"".autotmp_0203type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP 525 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbprebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go0type..eq.[1]interface {}eH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc 528 529 runtime.efaceeq 530 0runtime.morestack_noctxt0"".autotmp_0208?"type.interface {}"".autotmp_0207"type.interface {}"".autotmp_0206_type.int"".autotmp_0205Otype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/commands.go:go.string.hdr."callgraph.out" 2go.string."callgraph.out"2go.string."callgraph.out" callgraph.out*go.string.hdr."pb.gz" "go.string."pb.gz""go.string."pb.gz"pb.gz&go.string.hdr."gif" go.string."gif"go.string."gif"gif&go.string.hdr."pdf" go.string."pdf"go.string."pdf"pdf&go.string.hdr."png" go.string."png"go.string."png"png$go.string.hdr."ps" go.string."ps"go.string."ps"ps&go.string.hdr."svg" go.string."svg"go.string."svg"svg&go.string.hdr."eog" go.string."eog"go.string."eog"eog,go.string.hdr."evince" $go.string."evince"$go.string."evince"evince@go.string.hdr."gv --noantialias" 8go.string."gv --noantialias"8go.string."gv --noantialias"0"gv --noantialias(go.string.hdr."html" go.string."html" go.string."html" 535 html(go.string.hdr."tags" go.string."tags" go.string."tags" 536 tags^go.string.hdr."Outputs all tags in the profile" Vgo.string."Outputs all tags in the profile"Vgo.string."Outputs all tags in the profile"@@Outputs all tags in the profile&go.string.hdr."raw" go.string."raw"go.string."raw"rawgo.string.hdr."Outputs a text representation of the raw profile" 0xgo.string."Outputs a text representation of the raw profile"xgo.string."Outputs a text representation of the raw profile"pbOutputs a text representation of the raw profile&go.string.hdr."dot" go.string."dot"go.string."dot"dotZgo.string.hdr."Outputs a graph in DOT format" Rgo.string."Outputs a graph in DOT format"Rgo.string."Outputs a graph in DOT format"@<Outputs a graph in DOT format&go.string.hdr."top" go.string."top"go.string."top"top`go.string.hdr."Outputs top entries in text form" Xgo.string."Outputs top entries in text form"Xgo.string."Outputs top entries in text form"PBOutputs top entries in text form(go.string.hdr."tree" go.string."tree" go.string."tree" 537 treelgo.string.hdr."Outputs a text rendering of call graph" &dgo.string."Outputs a text rendering of call graph"dgo.string."Outputs a text rendering of call graph"PNOutputs a text rendering of call graph(go.string.hdr."text" go.string."text" go.string."text" 538 text,go.string.hdr."disasm" $go.string."disasm"$go.string."disasm"disasmgo.string.hdr."Output annotated assembly for functions matching regexp or address" Bgo.string."Output annotated assembly for functions matching regexp or address"go.string."Output annotated assembly for functions matching regexp or address"Output annotated assembly for functions matching regexp or address(go.string.hdr."list" go.string."list" go.string."list" 539 listgo.string.hdr."Output annotated source for functions matching regexp" 5go.string."Output annotated source for functions matching regexp"go.string."Output annotated source for functions matching regexp"plOutput annotated source for functions matching regexp(go.string.hdr."peek" go.string."peek" go.string."peek" 540 peekgo.string.hdr."Output callers/callees of functions matching regexp" 3~go.string."Output callers/callees of functions matching regexp"~go.string."Output callers/callees of functions matching regexp"phOutput callers/callees of functions matching regexp2go.string.hdr."callgrind" *go.string."callgrind"*go.string."callgrind" callgrindfgo.string.hdr."Outputs a graph in callgrind format" #^go.string."Outputs a graph in callgrind format"^go.string."Outputs a graph in callgrind format"PHOutputs a graph in callgrind format*go.string.hdr."proto" "go.string."proto""go.string."proto"protogo.string.hdr."Outputs the profile in compressed protobuf format" 1zgo.string."Outputs the profile in compressed protobuf format"zgo.string."Outputs the profile in compressed protobuf format"pdOutputs the profile in compressed protobuf formatfgo.string.hdr."Outputs a graph image in GIF format" #^go.string."Outputs a graph image in GIF format"^go.string."Outputs a graph image in GIF format"PHOutputs a graph image in GIF formatZgo.string.hdr."Outputs a graph in PDF format" Rgo.string."Outputs a graph in PDF format"Rgo.string."Outputs a graph in PDF format"@<Outputs a graph in PDF formatfgo.string.hdr."Outputs a graph image in PNG format" #^go.string."Outputs a graph image in PNG format"^go.string."Outputs a graph image in PNG format"PHOutputs a graph image in PNG formatXgo.string.hdr."Outputs a graph in PS format" Pgo.string."Outputs a graph in PS format"Pgo.string."Outputs a graph in PS format"@:Outputs a graph in PS formatZgo.string.hdr."Outputs a graph in SVG format" Rgo.string."Outputs a graph in SVG format"Rgo.string."Outputs a graph in SVG format"@<Outputs a graph in SVG formatVgo.string.hdr."Visualize graph through eog" Ngo.string."Visualize graph through eog"Ngo.string."Visualize graph through eog"@8Visualize graph through eog\go.string.hdr."Visualize graph through evince" Tgo.string."Visualize graph through evince"Tgo.string."Visualize graph through evince"@>Visualize graph through evince$go.string.hdr."gv" go.string."gv"go.string."gv"gvTgo.string.hdr."Visualize graph through gv" Lgo.string."Visualize graph through gv"Lgo.string."Visualize graph through gv"@6Visualize graph through gv&go.string.hdr."web" go.string."web"go.string."web"webfgo.string.hdr."Visualize graph through web browser" #^go.string."Visualize graph through web browser"^go.string."Visualize graph through web browser"PHVisualize graph through web browser.go.string.hdr."weblist" &go.string."weblist"&go.string."weblist"weblistgo.string.hdr."Output annotated source in HTML for functions matching regexp or address" Hgo.string."Output annotated source in HTML for functions matching regexp or address"go.string."Output annotated source in HTML for functions matching regexp or address"Output annotated source in HTML for functions matching regexp or addressTgclocalsf4c4804c9b1b491c91a65f798c0a333d(@`px|~~?>Tgclocals25bf03c8d439eba1e0b3a36ead180227(.go.string.hdr."BROWSER" &go.string."BROWSER"&go.string."BROWSER"BROWSER:go.string.hdr."/usr/bin/open" 2go.string."/usr/bin/open"2go.string."/usr/bin/open" /usr/bin/open8go.string.hdr."cmd /c start" 0go.string."cmd /c start"0go.string."cmd /c start" cmd /c start0go.string.hdr."xdg-open" (go.string."xdg-open"(go.string."xdg-open" xdg-open,go.string.hdr."chrome" $go.string."chrome"$go.string."chrome"chrome:go.string.hdr."google-chrome" 2go.string."google-chrome"2go.string."google-chrome" google-chrome.go.string.hdr."firefox" &go.string."firefox"&go.string."firefox"firefoxTgclocals7c8ce69a3c258c57317bb1d6c155da32((Tgclocals64e6abdf0268293babaa7bcc4e1e7821((Tgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocals32bd5c6dc84e3e86dd35593b3922d3aa Tgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocals41a13ac73c712c01973b8fe23f62d694 Tgclocals004a01713ed78f3a912721f1856220a700Tgclocals197df35d123b8543b316c6de2f24053a00Tgclocals05ecff0327a4391c08027de9c08c00a988Tgclocals4d8f4351ae24f7a880f472246ed2ba2088,go.string.hdr."pprof-" $go.string."pprof-"$go.string."pprof-"pprof-Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocalsdffecd5ddc719ff54db76b9bd92767e3 "go.string.hdr."-" go.string."-"go.string."-"-"go.string.hdr." " go.string." "go.string." " Tgclocals44a80b5f37227d1a2558d86edf647239 &PTgclocals698e8a16b5c9bdb3e65772e48b46271dXX 04go.itab.*os.File.io.Writer"go.string.hdr."." go.string."."go.string."."..go.string.hdr."profile" &go.string."profile"&go.string."profile"profileJgo.string.hdr."Generating report in " Bgo.string."Generating report in "Bgo.string."Generating report in "0,Generating report in Tgclocals9ef97d531491c69734fa4b616187f246PP@000Tgclocalsd4f1d66c605c430f7d24126b3dd8b550PP0>go.itab.*bytes.Buffer.io.Reader0>go.itab.*bytes.Buffer.io.Writerzgo.string.hdr."Cannot find dot, have you installed Graphviz?" -rgo.string."Cannot find dot, have you installed Graphviz?"rgo.string."Cannot find dot, have you installed Graphviz?"`\Cannot find dot, have you installed Graphviz?$go.string.hdr."-T" go.string."-T"go.string."-T"-TTgclocals9106d6da33fcff6acef4d03958440b62! xTgclocalsf77213eb336a0cd95312c528b7eda04dTgclocals2e03cbd95da0d53c8a755a82469e4fafXX .%%5\Tgclocalse9218e9dd2a04495ed8ce78a45905c2cXX *go.string.hdr."pprof" "go.string."pprof""go.string."pprof"pprofTgclocals8899a175011fb27a2d8f06aefaa7bf13 #L LNnFF Tgclocals69c6880dbf0c82e05f757154c55c0769xx Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".vizTmpDir type.string""".statictmp_0021 type.[1]string go.string."eog"""".statictmp_0024 type.[1]string $go.string."evince"""".statictmp_0027 type.[1]string 8go.string."gv --noantialias"0"".initdonetype.uint8"".PProff"".PProf"".browsersf"".browsers$"".NewCompleterf"".NewCompleter""".awayFromTTYf"".awayFromTTY"".invokeDotf"".invokeDot&"".saveSVGToFilef "".saveSVGToFile&"".makeVizTmpDirf "".makeVizTmpDir,"".invokeVisualizerf&"".invokeVisualizer0"".NewCompleter.func1f*"".NewCompleter.func1."".awayFromTTY.func1f("".awayFromTTY.func1*"".invokeDot.func1f$"".invokeDot.func12"".saveSVGToFile.func1f,"".saveSVGToFile.func18"".invokeVisualizer.func1f2"".invokeVisualizer.func1"".initf"".init"runtime.gcbits.010go.string.hdr."[]string" (go.string."[]string"(go.string."[]string" []stringtype.[]string 551 0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."[]string"p,go.weak.type.*[]string"runtime.zerovaluetype.string:go.typelink.[]string []stringtype.[]stringTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a0type..hashfunc.[1]string(type..hash.[1]string,type..eqfunc.[1]string$type..eq.[1]string&type..alg.[1]string 0type..hashfunc.[1]string,type..eqfunc.[1]string2go.string.hdr."[1]string" *go.string."[1]string"*go.string."[1]string" [1]stringtype.[1]stringb 0&type..alg.[1]string@"runtime.gcbits.01P2go.string.hdr."[1]string"p.go.weak.type.*[1]string"runtime.zerovaluetype.stringtype.[]string>go.typelink.[1]string [1]stringtype.[1]stringFgo.string.hdr."*commands.Completer" >go.string."*commands.Completer">go.string."*commands.Completer"0(*commands.Completer$type.*"".CompleterCC60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*commands.Completer"p6go.weak.type.**"".Completer"runtime.zerovalue"type."".CompleterDgo.string.hdr."commands.Completer" <go.string."commands.Completer"<go.string."commands.Completer"0&commands.Completer2go.string.hdr."Completer" *go.string."Completer"*go.string."Completer" CompleterVgo.string.hdr."cmd/pprof/internal/commands" Ngo.string."cmd/pprof/internal/commands"Ngo.string."cmd/pprof/internal/commands"@8cmd/pprof/internal/commands"go.importpath."". Ngo.string."cmd/pprof/internal/commands""type."".Completer630 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."commands.Completer"p$type.*"".Completer"runtime.zerovalue"type."".Completer"type."".Completertype.stringtype.string`"type."".Completer2go.string.hdr."Completer""go.importpath.""."type."".CompleterNgo.string.hdr."*commands.PostProcessor" Fgo.string."*commands.PostProcessor"Fgo.string."*commands.PostProcessor"00*commands.PostProcessor,type.*"".PostProcessorZ60 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."*commands.PostProcessor"p>go.weak.type.**"".PostProcessor"runtime.zerovalue*type."".PostProcessorLgo.string.hdr."commands.PostProcessor" Dgo.string."commands.PostProcessor"Dgo.string."commands.PostProcessor"0.commands.PostProcessor:go.string.hdr."PostProcessor" 2go.string."PostProcessor"2go.string."PostProcessor" PostProcessor*type."".PostProcessorQ30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."commands.PostProcessor"p,type.*"".PostProcessor"runtime.zerovalue*type."".PostProcessor*type."".PostProcessor$type.*bytes.Buffertype.io.WriterBtype.cmd/pprof/internal/plugin.UItype.error`*type."".PostProcessor:go.string.hdr."PostProcessor""go.importpath."".*type."".PostProcessor"runtime.gcbits.15@go.string.hdr."commands.Command" 8go.string."commands.Command"8go.string."commands.Command"0"commands.Command0go.string.hdr."Complete" (go.string."Complete"(go.string."Complete" Complete,go.string.hdr."Format" $go.string."Format"$go.string."Format"Format6go.string.hdr."PostProcess" .go.string."PostProcess".go.string."PostProcess" PostProcess0go.string.hdr."HasParam" (go.string."HasParam"(go.string."HasParam" HasParam*go.string.hdr."Usage" "go.string."Usage""go.string."Usage"Usage.go.string.hdr."Command" &go.string."Command"&go.string."Command"Commandtype."".Command0(C (0 runtime.algarray@"runtime.gcbits.15P@go.string.hdr."commands.Command"p type.*"".Command"runtime.zerovaluetype."".Command0go.string.hdr."Complete""type."".Completer,go.string.hdr."Format"type.int6go.string.hdr."PostProcess"*type."".PostProcessor0go.string.hdr."HasParam"type.bool*go.string.hdr."Usage"type.string`type."".Command.go.string.hdr."Command""go.importpath."".type."".CommandBgo.string.hdr."*commands.Command" :go.string."*commands.Command":go.string."*commands.Command"0$*commands.Command type.*"".Command_60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*commands.Command"p2go.weak.type.**"".Command"runtime.zerovaluetype."".Command.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8runtime.gcbits.0go.string.hdr."[8]uint8" (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8 [8]uint8type.[8]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a0type..hashfunc.[8]string(type..hash.[8]string,type..eqfunc.[8]string$type..eq.[8]string&type..alg.[8]string 0type..hashfunc.[8]string,type..eqfunc.[8]string&runtime.gcbits.5555UU2go.string.hdr."[8]string" *go.string."[8]string"*go.string."[8]string" [8]stringtype.[8]stringxUS>0&type..alg.[8]string@&runtime.gcbits.5555P2go.string.hdr."[8]string"p.go.weak.type.*[8]string"runtime.zerovaluetype.stringtype.[]string>go.typelink.[8]string [8]stringtype.[8]stringFgo.string.hdr."[]*commands.Command" >go.string."[]*commands.Command">go.string."[]*commands.Command"0([]*commands.Command$type.[]*"".Command 0 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."[]*commands.Command"p6go.weak.type.*[]*"".Command"runtime.zerovalue type.*"".CommandZgo.typelink.[]*commands.Command []*"".Command$type.[]*"".Command type..hashfunc64 @,runtime.memhash_varlentype..eqfunc64 @.runtime.memequal_varlentype..alg64 type..hashfunc64type..eqfunc64"runtime.gcbits.ffHgo.string.hdr."[8]*commands.Command" @go.string."[8]*commands.Command"@go.string."[8]*commands.Command"0*[8]*commands.Command&type.[8]*"".Command@@ 0type..alg64@"runtime.gcbits.ffPHgo.string.hdr."[8]*commands.Command"p8go.weak.type.*[8]*"".Command"runtime.zerovalue type.*"".Command$type.[]*"".Command^go.typelink.[8]*commands.Command [8]*"".Command&type.[8]*"".Commandhgo.string.hdr."*map.bucket[string]*commands.Command" $`go.string."*map.bucket[string]*commands.Command"`go.string."*map.bucket[string]*commands.Command"PJ*map.bucket[string]*commands.CommandFtype.*map.bucket[string]*"".Command;=60 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."*map.bucket[string]*commands.Command"pXgo.weak.type.**map.bucket[string]*"".Command"runtime.zerovalueDtype.map.bucket[string]*"".Command.runtime.gcbits.aaaafe03fgo.string.hdr."map.bucket[string]*commands.Command" #^go.string."map.bucket[string]*commands.Command"^go.string."map.bucket[string]*commands.Command"PHmap.bucket[string]*commands.Command.go.string.hdr."topbits" &go.string."topbits"&go.string."topbits"topbits(go.string.hdr."keys" go.string."keys" go.string."keys" 562 keys,go.string.hdr."values" $go.string."values"$go.string."values"values0go.string.hdr."overflow" (go.string."overflow"(go.string."overflow" overflowDtype.map.bucket[string]*"".Command0 runtime.algarray@.runtime.gcbits.aaaafe03Pfgo.string.hdr."map.bucket[string]*commands.Command"pVgo.weak.type.*map.bucket[string]*"".Command"runtime.zerovalueDtype.map.bucket[string]*"".Command.go.string.hdr."topbits"type.[8]uint8(go.string.hdr."keys"type.[8]string,go.string.hdr."values"&type.[8]*"".Command0go.string.hdr."overflow"Ftype.*map.bucket[string]*"".Command"runtime.gcbits.2c,`go.string.hdr."map.hdr[string]*commands.Command" Xgo.string."map.hdr[string]*commands.Command"Xgo.string."map.hdr[string]*commands.Command"PBmap.hdr[string]*commands.Command*go.string.hdr."count" "go.string."count""go.string."count"count*go.string.hdr."flags" "go.string."flags""go.string."flags"flags"go.string.hdr."B" go.string."B"go.string."B"B*go.string.hdr."hash0" "go.string."hash0""go.string."hash0"hash0.go.string.hdr."buckets" &go.string."buckets"&go.string."buckets"buckets4go.string.hdr."oldbuckets" 566 ,go.string."oldbuckets",go.string."oldbuckets" oldbuckets2go.string.hdr."nevacuate" *go.string."nevacuate"*go.string."nevacuate" nevacuate>type.map.hdr[string]*"".Command00xM (,0 runtime.algarray@"runtime.gcbits.2cP`go.string.hdr."map.hdr[string]*commands.Command"pPgo.weak.type.*map.hdr[string]*"".Command"runtime.zerovalue>type.map.hdr[string]*"".Command*go.string.hdr."count"type.int*go.string.hdr."flags"type.uint8"go.string.hdr."B"type.uint8*go.string.hdr."hash0"type.uint32.go.string.hdr."buckets"Ftype.*map.bucket[string]*"".Command4go.string.hdr."oldbuckets"Ftype.*map.bucket[string]*"".Command2go.string.hdr."nevacuate"type.uintptr0go.string.hdr."overflow"&type.unsafe.PointerDgo.string.hdr."*commands.Commands" <go.string."*commands.Commands"<go.string."*commands.Commands"0&*commands.Commands"type.*"".Commands960 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*commands.Commands"p4go.weak.type.**"".Commands"runtime.zerovalue type."".CommandsBgo.string.hdr."commands.Commands" :go.string."commands.Commands":go.string."commands.Commands"0$commands.Commands0go.string.hdr."Commands" (go.string."Commands"(go.string."Commands" Commands type."".Commands550 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."commands.Commands"p"type.*"".Commands"runtime.zerovaluetype.string type.*"".CommandDtype.map.bucket[string]*"".Command>type.map.hdr[string]*"".Command` type."".Commands0go.string.hdr."Commands""go.importpath."". type."".Commands,go.string.hdr."**bool" $go.string."**bool"$go.string."**bool"**booltype.**boolA#60 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."**bool"p(go.weak.type.***bool"runtime.zerovaluetype.*bool4go.string.hdr."*[1]string" 570 ,go.string."*[1]string",go.string."*[1]string" *[1]stringtype.*[1]stringl.!60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[1]string"p0go.weak.type.**[1]string"runtime.zerovaluetype.[1]string"runtime.gcbits.02tgo.string.hdr."struct { F uintptr; cs commands.Commands }" *lgo.string."struct { F uintptr; cs commands.Commands }"lgo.string."struct { F uintptr; cs commands.Commands }"`Vstruct { F uintptr; cs commands.Commands }$go.string.hdr.".F" go.string.".F"go.string.".F".F$go.string.hdr."cs" go.string."cs"go.string."cs"csRtype.struct { F uintptr; cs "".Commands },0 runtime.algarray@"runtime.gcbits.02Ptgo.string.hdr."struct { F uintptr; cs commands.Commands }"pdgo.weak.type.*struct { F uintptr; cs "".Commands }"runtime.zerovalueRtype.struct { F uintptr; cs "".Commands }$go.string.hdr.".F""go.importpath."".type.uintptr$go.string.hdr."cs""go.importpath."". type."".Commandsvgo.string.hdr."*struct { F uintptr; cs commands.Commands }" +ngo.string."*struct { F uintptr; cs commands.Commands }"ngo.string."*struct { F uintptr; cs commands.Commands }"`X*struct { F uintptr; cs commands.Commands }Ttype.*struct { F uintptr; cs "".Commands }y60 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."*struct { F uintptr; cs commands.Commands }"pfgo.weak.type.**struct { F uintptr; cs "".Commands }"runtime.zerovalueRtype.struct { F uintptr; cs "".Commands }Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418adtype..hashfunc.struct { F uintptr; format string }\type..hash.struct { F uintptr; format string }`type..eqfunc.struct { F uintptr; format string }Xtype..eq.struct { F uintptr; format string }Ztype..alg.struct { F uintptr; format string } dtype..hashfunc.struct { F uintptr; format string }`type..eqfunc.struct { F uintptr; format string }fgo.string.hdr."struct { F uintptr; format string }" #^go.string."struct { F uintptr; format string }"^go.string."struct { F uintptr; format string }"PHstruct { F uintptr; format string },go.string.hdr."format" $go.string."format"$go.string."format"formatPtype.struct { F uintptr; format string } .s0Ztype..alg.struct { F uintptr; format string }@"runtime.gcbits.02Pfgo.string.hdr."struct { F uintptr; format string }"pbgo.weak.type.*struct { F uintptr; format string }"runtime.zerovaluePtype.struct { F uintptr; format string }$go.string.hdr.".F""go.importpath."".type.uintptr,go.string.hdr."format""go.importpath."".type.stringhgo.string.hdr."*struct { F uintptr; format string }" $`go.string."*struct { F uintptr; format string }"`go.string."*struct { F uintptr; format string }"PJ*struct { F uintptr; format string }Rtype.*struct { F uintptr; format string }"|60 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."*struct { F uintptr; format string }"pdgo.weak.type.**struct { F uintptr; format string }"runtime.zerovaluePtype.struct { F uintptr; format string }"runtime.gcbits.0a 574 go.string.hdr."struct { F uintptr; format string; divert commands.PostProcessor }" Bgo.string."struct { F uintptr; format string; divert commands.PostProcessor }"go.string."struct { F uintptr; format string; divert commands.PostProcessor }"struct { F uintptr; format string; divert commands.PostProcessor },go.string.hdr."divert" $go.string."divert"$go.string."divert"diverttype.struct { F uintptr; format string; divert "".PostProcessor } q60 runtime.algarray@"runtime.gcbits.0aPgo.string.hdr."struct { F uintptr; format string; divert commands.PostProcessor }"pgo.weak.type.*struct { F uintptr; format string; divert "".PostProcessor }"runtime.zerovaluetype.struct { F uintptr; format string; divert "".PostProcessor }$go.string.hdr.".F""go.importpath."".type.uintptr,go.string.hdr."format""go.importpath."".type.string,go.string.hdr."divert""go.importpath."".*type."".PostProcessorgo.string.hdr."*struct { F uintptr; format string; divert commands.PostProcessor }" Cgo.string."*struct { F uintptr; format string; divert commands.PostProcessor }"go.string."*struct { F uintptr; format string; divert commands.PostProcessor }"*struct { F uintptr; format string; divert commands.PostProcessor }type.*struct { F uintptr; format string; divert "".PostProcessor }ok60 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."*struct { F uintptr; format string; divert commands.PostProcessor }"pgo.weak.type.**struct { F uintptr; format string; divert "".PostProcessor }"runtime.zerovaluetype.struct { F uintptr; format string; divert "".PostProcessor }"runtime.gcbits.06go.string.hdr."struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }" Wgo.string."struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"go.string."struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }6go.string.hdr."generateSVG" .go.string."generateSVG".go.string."generateSVG" generateSVGtype.struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }0 runtime.algarray@"runtime.gcbits.06Pgo.string.hdr."struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"pgo.weak.type.*struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }"runtime.zerovaluetype.struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }$go.string.hdr.".F""go.importpath."".type.uintptr6go.string.hdr."generateSVG""go.importpath."".*type."".PostProcessor,go.string.hdr."divert""go.importpath."".*type."".PostProcessorgo.string.hdr."*struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }" Xgo.string."*struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"go.string."*struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"*struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }type.*struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }860 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."*struct { F uintptr; generateSVG commands.PostProcessor; divert commands.PostProcessor }"pgo.weak.type.**struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }"runtime.zerovaluetype.struct { F uintptr; generateSVG "".PostProcessor; divert "".PostProcessor }"runtime.gcbits.9a$"".hdr..gostring.1 l""..gostring.1""..gostring.1struct { F uintptr; suffix string; format commands.PostProcessor; visualizers []string; interactive **bool },go.string.hdr."suffix" $go.string."suffix"$go.string."suffix"suffix6go.string.hdr."visualizers" .go.string."visualizers".go.string."visualizers" visualizers6go.string.hdr."interactive" .go.string."interactive".go.string."interactive" interactivetype.struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }@@ 8*0 runtime.algarray@"runtime.gcbits.9aP$"".hdr..gostring.1pgo.weak.type.*struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }"runtime.zerovaluetype.struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }$go.string.hdr.".F""go.importpath."".type.uintptr,go.string.hdr."suffix""go.importpath."".type.string,go.string.hdr."format""go.importpath."".*type."".PostProcessor6go.string.hdr."visualizers""go.importpath."".type.[]string6go.string.hdr."interactive""go.importpath."".type.**bool$"".hdr..gostring.2 m""..gostring.2""..gostring.2*struct { F uintptr; suffix string; format commands.PostProcessor; visualizers []string; interactive **bool }type.*struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }c60 runtime.algarray@"runtime.gcbits.01P$"".hdr..gostring.2pgo.weak.type.**struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }"runtime.zerovaluetype.struct { F uintptr; suffix string; format "".PostProcessor; visualizers []string; interactive **bool }Dgo.string.hdr."**commands.Command" <go.string."**commands.Command"<go.string."**commands.Command"0&**commands.Command"type.**"".CommandQS60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."**commands.Command"p4go.weak.type.***"".Command"runtime.zerovalue type.*"".Commandbgo.string.hdr."*map.hdr[string]*commands.Command" !Zgo.string."*map.hdr[string]*commands.Command"Zgo.string."*map.hdr[string]*commands.Command"PD*map.hdr[string]*commands.Command@type.*map.hdr[string]*"".Command-;.60 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."*map.hdr[string]*commands.Command"pRgo.weak.type.**map.hdr[string]*"".Command"runtime.zerovalue>type.map.hdr[string]*"".Commandbgo.string.hdr."map.iter[string]*commands.Command" !Zgo.string."map.iter[string]*commands.Command"Zgo.string."map.iter[string]*commands.Command"PDmap.iter[string]*commands.Command&go.string.hdr."key" go.string."key"go.string."key"key&go.string.hdr."val" go.string."val"go.string."val"val"go.string.hdr."t" go.string."t"go.string."t"t"go.string.hdr."h" go.string."h"go.string."h"h(go.string.hdr."bptr" go.string."bptr" go.string."bptr" 583 bptr2go.string.hdr."overflow0" *go.string."overflow0"*go.string."overflow0" overflow02go.string.hdr."overflow1" *go.string."overflow1"*go.string."overflow1" overflow16go.string.hdr."startBucket" .go.string."startBucket".go.string."startBucket" startBucket*go.string.hdr."stuff" "go.string."stuff""go.string."stuff"stuff,go.string.hdr."bucket" $go.string."bucket"$go.string."bucket"bucket6go.string.hdr."checkBucket" .go.string."checkBucket".go.string."checkBucket" checkBucket@type.map.iter[string]*"".Command `@4x[ (08@HPX<0 runtime.algarray@"runtime.gcbits.ffPbgo.string.hdr."map.iter[string]*commands.Command"pRgo.weak.type.*map.iter[string]*"".Command"runtime.zerovalue@type.map.iter[string]*"".Command&go.string.hdr."key"type.*string&go.string.hdr."val""type.**"".Command"go.string.hdr."t"type.*uint8"go.string.hdr."h"@type.*map.hdr[string]*"".Command.go.string.hdr."buckets"Ftype.*map.bucket[string]*"".Command(go.string.hdr."bptr"Ftype.*map.bucket[string]*"".Command2go.string.hdr."overflow0"&type.unsafe.Pointer2go.string.hdr."overflow1"&type.unsafe.Pointer6go.string.hdr."startBucket"type.uintptr*go.string.hdr."stuff"type.uintptr,go.string.hdr."bucket"type.uintptr6go.string.hdr."checkBucket"type.uintptr"runtime.gcbits.038go.string.hdr."interface {}" 0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}" 4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {} []interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[2]interface {}4type..hash.[2]interface {}8type..eqfunc.[2]interface {}0type..eq.[2]interface {}2type..alg.[2]interface {} <type..hashfunc.[2]interface {}8type..eqfunc.[2]interface {}"runtime.gcbits.0f>go.string.hdr."[2]interface {}" 6go.string."[2]interface {}"6go.string."[2]interface {}" [2]interface {}(type.[2]interface {} ,Y02type..alg.[2]interface {}@"runtime.gcbits.0fP>go.string.hdr."[2]interface {}"p:go.weak.type.*[2]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[2]interface {} [2]interface {}(type.[2]interface {}@go.string.hdr."*[2]interface {}" 8go.string."*[2]interface {}"8go.string."*[2]interface {}"0"*[2]interface {}*type.*[2]interface {}s-q60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[2]interface {}"p<go.weak.type.**[2]interface {}"runtime.zerovalue(type.[2]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {} <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}" 6go.string."[1]interface {}"6go.string."[1]interface {}" [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {} [1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}" 8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {}2go.string.hdr."*[]string" *go.string."*[]string"*go.string."*[]string" *[]stringtype.*[]string"v60 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."*[]string"p.go.weak.type.**[]string"runtime.zerovaluetype.[]string4go.string.hdr."*[8]string" 595 ,go.string."*[8]string",go.string."*[8]string" *[8]stringtype.*[8]stringo60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[8]string"p0go.weak.type.**[8]string"runtime.zerovaluetype.[8]string.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bytes" "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes. "go.string."bytes"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt"$go.string.hdr."os" go.string."os"go.string."os"os"go.importpath.os. go.string."os"2go.string.hdr."io/ioutil" *go.string."io/ioutil"*go.string."io/ioutil" io/ioutil0go.importpath.io/ioutil. *go.string."io/ioutil"(go.string.hdr."time" go.string."time" go.string."time" 598 time&go.importpath.time. go.string."time".go.string.hdr."os/exec" &go.string."os/exec"&go.string."os/exec"os/exec,go.importpath.os/exec. &go.string."os/exec".go.string.hdr."strings" &go.string."strings"&go.string."strings"strings,go.importpath.strings. &go.string."strings"Rgo.string.hdr."cmd/pprof/internal/plugin" Jgo.string."cmd/pprof/internal/plugin"Jgo.string."cmd/pprof/internal/plugin"@4cmd/pprof/internal/pluginPgo.importpath.cmd/pprof/internal/plugin. Jgo.string."cmd/pprof/internal/plugin"Rgo.string.hdr."cmd/pprof/internal/report" Jgo.string."cmd/pprof/internal/report"Jgo.string."cmd/pprof/internal/report"@4cmd/pprof/internal/reportPgo.importpath.cmd/pprof/internal/report. Jgo.string."cmd/pprof/internal/report"Lgo.string.hdr."cmd/pprof/internal/svg" Dgo.string."cmd/pprof/internal/svg"Dgo.string."cmd/pprof/internal/svg"0.cmd/pprof/internal/svgJgo.importpath.cmd/pprof/internal/svg. Dgo.string."cmd/pprof/internal/svg"Vgo.string.hdr."cmd/pprof/internal/tempfile" Ngo.string."cmd/pprof/internal/tempfile"Ngo.string."cmd/pprof/internal/tempfile"@8cmd/pprof/internal/tempfileTgo.importpath.cmd/pprof/internal/tempfile. Ngo.string."cmd/pprof/internal/tempfile".type..hash.[1]stringf(type..hash.[1]string*type..eq.[1]stringf$type..eq.[1]string.type..hash.[8]stringf(type..hash.[8]string*type..eq.[8]stringf$type..eq.[8]stringbtype..hash.struct { F uintptr; format string }f\type..hash.struct { F uintptr; format string }^type..eq.struct { F uintptr; format string }fXtype..eq.struct { F uintptr; format string }:type..hash.[2]interface {}f4type..hash.[2]interface {}6type..eq.[2]interface {}f0type..eq.[2]interface {}:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}"runtime.zerovaluego13ld