HomeSort by relevance Sort by last modified time
    Searched full:stmtlist (Results 1 - 25 of 41) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
builder.go 112 b.stmtList(s.List)
158 func (b *builder) stmtList(list []ast.Stmt) {
218 b.stmtList(cc.Body)
231 b.stmtList(*defaultBody)
285 b.stmtList(cc.Body)
325 b.stmtList(clause.Body)
335 b.stmtList(*defaultBody)
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
builder.go 112 b.stmtList(s.List)
158 func (b *builder) stmtList(list []ast.Stmt) {
218 b.stmtList(cc.Body)
231 b.stmtList(*defaultBody)
285 b.stmtList(cc.Body)
325 b.stmtList(clause.Body)
335 b.stmtList(*defaultBody)
  /external/one-true-awk/
awkgram.y 68 %type <p> simple_stmt opt_simple_stmt stmt stmtlist
176 | pa_pat lbrace stmtlist '}' { $$ = stat2(PASTAT, $1, $3); }
178 | pa_pat ',' opt_nl pa_pat lbrace stmtlist '}' { $$ = pa2stat($1, $4, $6); }
179 | lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); }
180 | XBEGIN lbrace stmtlist '}'
182 | XEND lbrace stmtlist '}'
184 | FUNC funcname '(' varlist rparen {infunc++;} lbrace stmtlist '}'
328 | lbrace stmtlist rbrace { $$ = $2; }
342 stmtlist: label
344 | stmtlist stmt { $$ = linkum($1, $2);
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 102 // This function constructs a new CompoundStmt from the input StmtList.
104 std::vector<clang::Stmt*> &StmtList, clang::SourceLocation Loc) {
105 unsigned NewStmtCount = StmtList.size();
111 std::vector<clang::Stmt*>::const_iterator I = StmtList.begin();
112 std::vector<clang::Stmt*>::const_iterator E = StmtList.end();
129 std::list<clang::Stmt*> &StmtList) {
134 new clang::Stmt*[CS->size() + StmtList.size()];
152 std::list<clang::Stmt*>::const_iterator I = StmtList.begin();
153 std::list<clang::Stmt*>::const_iterator E = StmtList.end();
164 std::list<clang::Stmt*>::const_iterator I = StmtList.begin()
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bimport.go 194 body := p.stmtList()
216 p.stmtList()
879 func (p *importer) stmtList() []*Node {
1159 n.Ninit.Set(p.stmtList())
1161 n.Nbody.Set(p.stmtList())
1162 n.Rlist.Set(p.stmtList())
1167 n.Ninit.Set(p.stmtList())
1169 n.Nbody.Set(p.stmtList())
1174 n.List.Set(p.stmtList())
1176 n.Nbody.Set(p.stmtList())
    [all...]
bexport.go 400 p.stmtList(f.Inl)
    [all...]
ssa.go 201 s.stmtList(fn.Func.Enter)
202 s.stmtList(fn.Nbody)
583 // stmtList converts the statement list n to SSA and adds it to s.
584 func (s *state) stmtList(l Nodes) {
604 s.stmtList(n.Ninit)
608 s.stmtList(n.List)
840 s.stmtList(n.Nbody)
847 s.stmtList(n.Rlist)
855 s.stmtList(n.List)
860 s.stmtList(n.List
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bimport.go 194 body := p.stmtList()
216 p.stmtList()
879 func (p *importer) stmtList() []*Node {
1159 n.Ninit.Set(p.stmtList())
1161 n.Nbody.Set(p.stmtList())
1162 n.Rlist.Set(p.stmtList())
1167 n.Ninit.Set(p.stmtList())
1169 n.Nbody.Set(p.stmtList())
1174 n.List.Set(p.stmtList())
1176 n.Nbody.Set(p.stmtList())
    [all...]
bexport.go 400 p.stmtList(f.Inl)
    [all...]
ssa.go 201 s.stmtList(fn.Func.Enter)
202 s.stmtList(fn.Nbody)
583 // stmtList converts the statement list n to SSA and adds it to s.
584 func (s *state) stmtList(l Nodes) {
604 s.stmtList(n.Ninit)
608 s.stmtList(n.List)
840 s.stmtList(n.Nbody)
847 s.stmtList(n.Rlist)
855 s.stmtList(n.List)
860 s.stmtList(n.List
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
stmt.go 43 check.stmtList(0, body.List)
114 func (check *Checker) stmtList(ctxt stmtContext, list []ast.Stmt) {
488 check.stmtList(inner, s.List)
550 check.stmtList(inner, clause.Body)
653 check.stmtList(inner, clause.Body)
712 check.stmtList(inner, clause.Body)
  /prebuilts/go/linux-x86/src/go/types/
stmt.go 43 check.stmtList(0, body.List)
114 func (check *Checker) stmtList(ctxt stmtContext, list []ast.Stmt) {
488 check.stmtList(inner, s.List)
550 check.stmtList(inner, clause.Body)
653 check.stmtList(inner, clause.Body)
712 check.stmtList(inner, clause.Body)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
parser.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
parser.go     [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
const.go 97 AttrStmtList: "StmtList",
  /prebuilts/go/darwin-x86/src/go/printer/
nodes.go 959 func (p *printer) stmtList(list []ast.Stmt, nindent int, nextIsRBrace bool) {
999 p.stmtList(b.List, nindent, true)
    [all...]
printer.go     [all...]
  /prebuilts/go/linux-x86/src/debug/dwarf/
const.go 97 AttrStmtList: "StmtList",
  /prebuilts/go/linux-x86/src/go/printer/
nodes.go 959 func (p *printer) stmtList(list []ast.Stmt, nindent int, nextIsRBrace bool) {
999 p.stmtList(b.List, nindent, true)
    [all...]
printer.go     [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/cmd/vet/internal/
cfg.a 101 .this? type.go/ast.Stmt?~r1?"type.go/token.Pos?Tgclocals·522734ad228da40e2256ba19cf2bc72c?Tgclocals·69c1753bd5f81501d95132d08af04464?.gofile..<autogenerated>?go/ast.Stmt.Pos?(go/ast.Stmt.stmtNode?Tgclocals·dc9b0298814590ca3ffc3a889546fc8b?go/ast.Node.End? type.go/ast.Node?go/ast.Node.Pos?go/ast.Expr.End? type.go/ast.Expr?go/ast.Expr.Pos?(go/ast.Expr.exprNode?go/ast.Decl.End? type.go/ast.Decl?go/ast.Decl.Pos?(go/ast.Decl.declNode?go/ast.Spec.End? type.go/ast.Spec?go/ast.Spec.Pos?(go/ast.Spec.specNode?io.Writer.Write?type.io.Writer?p?type.[]uint8?n?type.int?err?type.error?Tgclocals·ed2b4e9472fcfb4edac5bdc674d399da?$"".(*builder).stmt?Ngo.itab.*go/ast.LabeledStmt,go/ast.Stmt?4"".(*builder).labeledBlock?(runtime.writeBarrier?,runtime.gcWriteBarrier?type.*"".Block?"runtime.growslice?Fgo.itab.*go/ast.BadStmt,go/ast.Stmt?runtime.convI2I?Tgo.itab.*go/ast.TypeSwitchStmt,go/ast.Stmt?8"".(*builder).typeSwitchStmt?Lgo.itab.*go/ast.BranchStmt,go/ast.Stmt?type."".Block?"runtime.newobject?<go.string."unreachable.branch"?8go.string."undefined.branch"?Lgo.itab.*go/ast.SelectStmt,go/ast.Stmt?0"".(*builder).selectStmt?Jgo.itab.*go/ast.EmptyStmt,go/ast.Stmt?Hgo.itab.*go/ast.SendStmt,go/ast.Stmt?Fgo.itab.*go/ast.ForStmt,go/ast.Stmt?Dgo.itab.*go/ast.GoStmt,go/ast.Stmt?*"".(*builder).forStmt?Hgo.itab.*go/ast.DeclStmt,go/ast.Stmt?Fgo.itab.*go/ast.GenDecl,go/ast.Decl?Jgo.itab.*go/ast.ValueSpec,go/ast.Spec?Jgo.itab.*go/ast.ValueSpec,go/ast.Node?Lgo.itab.*go/ast.ReturnStmt,go/ast.Stmt?Lgo.itab.*go/ast.ReturnStmt,go/ast.Node?<go.string."unreachable.return"?Lgo.itab.*go/ast.AssignStmt,go/ast.Stmt?Lgo.itab.*go/ast.SwitchStmt,go/ast.Stmt?Jgo.itab.*go/ast.RangeStmt,go/ast.Stmt?."".(*builder).rangeStmt?0"".(*builder).switchStmt?Lgo.itab.*go/ast.IncDecStmt,go/ast.Stmt?Jgo.itab.*go/ast.BlockStmt,go/ast.Stmt?,"".(*builder).stmtList?Hgo.itab.*go/ast.ExprStmt,go/ast.Stmt?Hgo.itab.*go/ast.ExprStmt,go/ast.Node?Hgo.itab.*go/ast.CallExpr,go/ast.Expr?8go.string."unreachable.call"?Dgo.itab.*go/ast.IfStmt,go/ast.Stmt?&go.string."if.then"?&go.string."if.done"?&go.string."if.else"?Jgo.itab.*go/ast.DeferStmt,go/ast.Stmt?Rgo.string."unexpected statement kind: %T"?fmt.Sprintf?type.string?*runtime.convT2Estring?runtime.gopanic?(type.*go/ast.GenDecl?*runtime.panicdottypeI?b? type.*"".builder?_s?.autotmp_124?(type.[1]interface {}?.autotmp_125?.autotmp_186?type.**"".Block?.autotmp_187?.autotmp_188?"type.*[]*"".Block?.autotmp_189?.autotmp_191?.autotmp_193?,type.*go/ast.ValueSpec?.autotmp_194?"type.*go/ast.Spec?.autotmp_195?.autotmp_196?.type.*go/ast.ReturnStmt?.autotmp_197?.autotmp_198?*type.*go/ast.ExprStmt?.autotmp_199?.autotmp_200?.autotmp_201?.autotmp_202?
108 label?type.*"".lblock? n.data?type.*uint8? n.itab?s?0type.*go/ast.LabeledStmt?&type.*go/ast.IfStmt?t? target?.autotmp_190?.autotmp_192?Tgclocals·f5bd35885eaac9080db65e380c1111d4?Tgclocals·08b1b0ba57a884b1608d0a885e433338?fgofile..$GOROOT/src/cmd/vet/internal/cfg/builder.go?$"".(*builder).jump?""".(*builder).add?B"".(*builder).newUnreachableBlock?,"".(*builder).newBlock?("".(*builder).ifelse?list?$type.[]go/ast.Stmt?.autotmp_11?"type.*go/ast.Stmt?.autotmp_10?Tgclocals·0b2a2ca5bf6608e759d18e5829a525fa?Tgclocals·9fb7f0986f647f17cb53dda1484e0f7a?.go.string."switch.done"?Lgo.itab.*go/ast.CaseClause,go/ast.Stmt?.go.string."switch.next"?type."".targets?.go.string."switch.body"?.type.*go/ast.CaseClause?.type.*go/ast.SwitchStmt?.autotmp_100?"type.**"".targets?.autotmp_101?.autotmp_102?.autotmp_103?.autotmp_104?.autotmp_105?.autotmp_106?.autotmp_91?.autotmp_94?"type.*go/ast.Expr?.autotmp_96?.autotmp_97?.autotmp_98?.autotmp_99?clause.data?clause.itab?cond.data?cond.itab?defaultBody?&type.*[]go/ast.Stmt?$defaultFallthrough?fallthru?nextCond?.autotmp_107?type.int64?.autotmp_90?.autotmp_92?.autotmp_93?.autotmp_95?i? ncases?Tgclocals·c2c33285b18e5fbc0702ab5ed0a70deb?Tgclocals·0dcb2968030c13ce5d7f0423455d9ab2?6go.string."typeswitch.done"?6go.string."typeswitch.body"?6go.string."typeswitch.next"?4"".(*builder).typeCaseBody?6type.*go/ast.TypeSwitchStmt?.autotmp_64?.autotmp_67?.autotmp_69?.autotmp_70?.autotmp_71?.autotmp_72?.autotmp_73?.autotmp_74?default_?next?.autotmp_62?.autotmp_63?.autotmp_65?.autotmp_66?.autotmp_68?Tgclocals·bd5fdb81d1138830f3acb4c839f4957b?Tgclocals·a5645d79d0acbd250ac2b28c63097247?cc?done?.autotmp_6?.autotmp_7?.autotmp_8?.autotmp_9?Tgclocals·ec21dc6ea48719d46f82859a7d82aeed?Tgclocals·bda0b156f8ec13534e44978e2826fb6c?Lgo.itab.*go/ast.CommClause,go/ast.Stmt?.go.string."select.done"?.go.string."select.body"?.go.string."select.next"?$runtime.panicindex?.type.*go/ast.CommClause?.type.*go/ast.SelectStmt?.autotmp_78?.autotmp_79?.autotmp_81?.autotmp_82?.autotmp_83?.autotmp_84?.autotmp_85?.autotmp_86?.autotmp_87?.autotmp_88?cc.data?.autotmp_76?.autotmp_77?.autotmp_80?Tgclocals·a59815493f9842d04c2671a652fbe244?Tgclocals·d213ac291a32ef8ec4e7fa95086f498f?(go.string."for.body"?(go.string."for.done"?(go.string."for.post"?(go.string."for.loop"?(type.*go/ast.ForStmt?Tgclocals·82880f18e611b8aedd233bd97a1ebe42?Tgclocals·f9ca7ec7543e50f54cb0fef09791b8c5?,go.string."range.loop"?,go.string."range.body"?,go.string."range.done"?,type.*go/ast.RangeStmt?.autotmp_59?.autotmp_61?.autotmp_60?Tgclocals·f189bfe308ee6f5c0b6c4d95607cb21d?Tgclocals·85a7015a9de7ca9446d382f574b68775?Dtype.map[*go/ast.Object]*"".lblock?2runtime.mapaccess1_fast64?type."".lblock?6runtime.mapassign_fast64ptr?*runtime.makemap_small?$type.*go/ast.Ident?.autotmp_19?Ftype.*map[*go/ast.Object]*"".lblock?comment.ptr?lb?.autotmp_20?comment.len?Tgclocals·313c6be0c9134a2ebc5f2f5fda2db525?Tgclocals·cadca4e4b8bda8bfae0a27939a10f8d8?comment?Tgclocals·d6fd52846a0f2aa34eb8e63a511c949f?Tgclocals·bfec7e55b3f043d1941c093912808913?.autotmp_14?.autotmp_2?Tgclocals·1d05e4a62d1779a5aa065f789cb9ac62?.autotmp_3?.autotmp_4?Tgclocals·f8f97633289e1e5e749eaf42e320ec6f?Tgclocals·beef1c0edbd4d21e0079520d217ae030?.autotmp_5?Tgclocals·81684c82778c8f7f060f1aca272e507d? "".New?type."".CFG?"go.string."entry"?,type.go/ast.ReturnStmt?body?,type.*go/ast.BlockStmt?mayReturn?@type.func(*go/ast.CallExpr) bool?~r2?type."".builder?.autotmp_26?.autotmp_29?.autotmp_30?.autotmp_27?.autotmp_28?Tgclocals·47f379cdce69a71d3608459473b37b17?Tgclocals·5d1eac608a5844bf433f82d1bd62cc6d?^gofile..$GOROOT/src/cmd/vet/internal/cfg/cfg.go?Bgofile..$GOROOT/src/go/ast/ast.go?.go/ast.(*BlockStmt).End?$"".(*Block).String?type.int32?"runtime.convT2E32?2go.string."block %d (%s)"?~r0?(type.[2]interface {}?Tgclocals·ff86e65df292e79ee8c8989cfcf3f802?Tgclocals·9f085495f8026f6147b99eb53550d0dd?$"".(*Block).Return?ret?Tgclocals·524d71b8d4b4126db12e7a6de3370d94? "".(*CFG).Format?"type.bytes.Buffer?"".formatNode?>go.itab.*bytes.Buffer,io.Writer?$go.string."\t%s\n"?fmt.Fprintf?2bytes.(*Buffer).WriteByte?.go.string.".%d: # %s\n"?(go.string."\tsuccs:"?go.string." %d"?2runtime.slicebytetostring?"go.string."<nil>"?$runtime.panicslice?fset?,type.*go/token.FileSet?.autotmp_16?.autotmp_50?.autotmp_54?"type.*go/ast.Node?.autotmp_55?b·2?$type.*bytes.Buffer?.autotmp_49?.autotmp_51?.autotmp_52?.autotmp_53?Tgclocals·10bade27294fcb0ad0deaf8e461ab97b?Tgclocals·95be8ce52b33ba1fa9ea538b9140e550?Fgofile..$GOROOT/src/bytes/buffer.go?,bytes.(*Buffer).String?go/format.Node?go.string."\n"?2runtime.stringtoslicebyte? go.string."\n\t"?bytes.Replace?.autotmp_23?.autotmp_25?.autotmp_15?type.[32]uint8?.autotmp_21?.autotmp_22?.autotmp_24?Tgclocals·a5eff964a1d24ee3ff261208c08b3846?Tgclocals·c4e6e860df79db9753fdb3e3f9a627de?*bytes.(*Buffer).Bytes?"".init?"".initdone·?"runtime.throwinit?fmt.init?go/ast.init?go/token.init?bytes.init?go/format.init?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?4type..hash.[2]interface {}?(runtime.nilinterhash?*type.*[2]interface {}?h?type.uintptr?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?0type..eq.[2]interface {}?runtime.efaceeq?q?type.bool?Tgclocals·8f9cec06d1ae35cc9900c511c5e4bdab?Ngo.info."".(*builder).newBlock$abstract?&go.info.*"".builder?"go.info.*"".Block?go.info.string?go.info.*"".CFG?Dgo.info."".(*builder).add$abstract?&go.info.go/ast.Node?dgo.info."".(*builder).newUnreachableBlock$abstract?Fgo.info."".(*builder).jump$abstract?Jgo.info."".(*builder).ifelse$abstract?Pgo.info.go/ast.(*BlockStmt).End$abstract?2go.info.*go/ast.BlockStmt?Lgo.info.bytes.(*Buffer).Bytes$abstract?*go.info.*bytes.Buffer?Ngo.info.bytes.(*Buffer).String$abstract?.go.info.go/ast.Stmt.End?&go.info.go/ast.Stmt?(go.info.go/token.Pos?0go.range.go/ast.Stmt.End?.go.info.go/ast.Stmt.Pos?0go.range.go/ast.Stmt.Pos?8go.info.go/ast.Stmt.stmtNode?:go.range.go/ast.Stmt.stmtNode?.go.info.go/ast.Node.End?0go.range.go/ast.Node.End?.go.info.go/ast.Node.Pos?0go.range.go/ast.Node.Pos?.go.info.go/ast.Expr.End?&go.info.go/ast.Expr?0go.range.go/ast.Expr.End?.go.info.go/ast.Expr.Pos?0go.range.go/ast.Expr.Pos?8go.info.go/ast.Expr.exprNode?:go.range.go/ast.Expr.exprNode?.go.info.go/ast.Decl.End?&go.info.go/ast.Decl?0go.range.go/ast.Decl.End?.go.info.go/ast.Decl.Pos?0go.range.go/ast.Decl.Pos?8go.info.go/ast.Decl.declNode?:go.range.go/ast.Decl.declNode?.go.info.go/ast.Spec.End?&go.info.go/ast.Spec?0go.range.go/ast.Spec.End?.go.info.go/ast.Spec.Pos?0go.range.go/ast.Spec.Pos?8go.info.go/ast.Spec.specNode?:go.range.go/ast.Spec.specNode?.go.info.io.Writer.Write?"go.info.io.Writer?go.info.error?go.info.int?go.info.[]uint8?0go.range.io.Writer.Write?4go.info."".(*builder).stmt?$go.info.*"".lblock?go.info.*uint8?,go.info.*go/ast.IfStmt?6go.info.*go/ast.LabeledStmt?6go.range."".(*builder).stmt?<go.info."".(*builder).stmtList?*go.info.[]go/ast.Stmt?>go.range."".(*builder).stmtList?@go.info."".(*builder).switchStmt?,go.info.*[]go/ast.Stmt?4go.info.*go/ast.SwitchStmt?Bgo.range."".(*builder).switchStmt?Hgo.info."".(*builder).typeSwitchStmt?4go.info.*go/ast.CaseClause?<go.info.*go/ast.TypeSwitchStmt?Jgo.range."".(*builder).typeSwitchStmt?Dgo.info."".(*builder).typeCaseBody?Fgo.range."".(*builder).typeCaseBody?@go.info."".(*builder).selectStmt?4go.info.*go/ast.SelectStmt?Bgo.range."".(*builder).selectStmt?:go.info."".(*builder).forStmt?.go.info.*go/ast.ForStmt?<go.range."".(*builder).forStmt?>go.info."".(*builder).rangeStmt?2go.info.*go/ast.RangeStmt?@go.range."".(*builder).rangeStmt?Dgo.info."".(*builder).labeledBlock?*go.info.*go/ast.Ident?Fgo.range."".(*builder).labeledBlock?<go.info."".(*builder).newBlock?>go.range."".(*builder).newBlock?Rgo.info."".(*builder).newUnreachableBlock?Tgo.range."".(*builder).newUnreachableBlock?2go.info."".(*builder).add?4go.range."".(*builder).add?4go.info."".(*builder).jump?6go.range."".(*builder).jump?8go.info."".(*builder).ifelse?:go.range."".(*builder).ifelse?go.info."".New?$go.info."".builder?Fgo.info.func(*go/ast.CallExpr) bool?go.range."".New?4go.info."".(*Block).String?6go.range."".(*Block).String?4go.info."".(*Block).Return?4go.info.*go/ast.ReturnStmt?6go.range."".(*Block).Return?0go.info."".(*CFG).Format?2go.info.*go/token.FileSet?2go.range."".(*CFG).Format?*go.info."".formatNode?,go.range."".formatNode?go.info."".init? go.range."".init?type.uint8?"runtime.gcbits.01?6type..namedata.*[]ast.Node-?&type.*[]go/ast.Node? runtime.algarray?$type.[]go/ast.Node?4type..namedata.*cfg.Block.?btype..namedata.*func(*cfg.Block) *ast.ReturnStmt-?Ptype.*func(*"".Block) *go/ast.ReturnStmt?Ntype.func(*"".Block) *go/ast.ReturnStmt?Ptype..namedata.*func(*cfg.Block) string-?8type.*func(*"".Block) string?6type.func(*"".Block) string?(type..importpath."".?,type..namedata.Return.?Ntype..namedata.*func() *ast.ReturnStmt-?>type.*func() *go/ast.ReturnStmt?<type.func() *go/ast.ReturnStmt?,type..namedata.String.?<type..namedata.*func() string-?&type.*func() string?$type.func() string?:type..namedata.*[]*cfg.Block-? type.[]*"".Block?<type..namedata.*[2]*cfg.Block-?$type.*[2]*"".Block?"type.[2]*"".Block?"runtime.gcbits.03?&runtime.gcbits.4906?*type..namedata.Nodes.?*type..namedata.Succs.?.type..namedata.comment-?*type..namedata.index-?6type..namedata.unreachable-?,type..namedata.succs2-?0type..namedata.*cfg.CFG.?ltype..namedata.*func(*cfg.CFG, *token.FileSet) string-?Ztype.*func(*"".CFG, *go/token.FileSet) string?Xtype.func(*"".CFG, *go/token.FileSet) string?,type..namedata.Format.?Xtype..namedata.*func(*token.FileSet) string-?Htype.*func(*go/token.FileSet) string?Ftype.func(*go/token.FileSet) string?,type..namedata.Blocks.?Rtype..namedata.*func(*ast.CallExpr) bool-?Btype.*func(*go/ast.CallExpr) bool?*type.*go/ast.CallExpr? type..hashfunc24?,runtime.memhash_varlen?type..eqfunc24?.runtime.memequal_varlen?type..alg24?"runtime.gcbits.07?6type..namedata.*cfg.lblock-?*type..namedata._goto-?,type..namedata._break-?2type..namedata._continue-?0type..namedata.*[]uint8-?type.*[]uint8?2type..namedata.*[8]uint8-?type.*[8]uint8?type.[8]uint8?runtime.gcbits.?<type..namedata.*[]*ast.Object-?,type.*[]*go/ast.Object?*type.[]*go/ast.Object?&type.*go/ast.Object?>type..namedata.*[8]*ast.Object-?.type.*[8]*go/ast.Object?8type.noalg.[8]*go/ast.Object?"runtime.gcbits.ff?<type..namedata.*[]*cfg.lblock-?$type.*[]*"".lblock?"type.[]*"".lblock?>type..namedata.*[8]*cfg.lblock-?&type.*[8]*"".lblock?0type.noalg.[8]*"".lblock?ftype..namedata.*map.bucket[*ast.Object]*cfg.lblock-?Ttype.*map.bucket[*go/ast.Object]*"".lblock?^type.noalg.map.bucket[*go/ast.Object]*"".lblock?*runtime.gcbits.feff03?$type..importpath..?.type..namedata.topbits-?(type..namedata.keys-?,type..namedata.values-?0type..namedata.overflow-?`type..namedata.*map.hdr[*ast.Object]*cfg.lblock-?Ntype.*map.hdr[*go/ast.Object]*"".lblock?Xtype.noalg.map.hdr[*go/ast.Object]*"".lblock?"runtime.gcbits.2c?*type..namedata.count-?*type..namedata.flags-?"type..namedata.B.?2type..namedata.noverflow-?*type..namedata.hash0-?.type..namedata.buckets-?4type..namedata.oldbuckets-?2type..namedata.nevacuate-?*type..namedata.extra-?type.uint16?type.uint32?&type.unsafe.Pointer?Xtype..namedata.*map[*ast.Object]*cfg.lblock-? type..hashfunc32?type..eqfunc32?type..alg32?"runtime.gcbits.0f?8type..namedata.*cfg.targets-?(type..namedata.tail-?8type..namedata._fallthrough-? type.*"".targets?8type..namedata.*cfg.builder-?Ztype..namedata.*func(*cfg.builder, ast.Node)-?Htype.*func(*"".builder, go/ast.Node)?Ftype.func(*"".builder, go/ast.Node)?|type..namedata.*func(*cfg.builder, *ast.ForStmt, *cfg.lblock)-?htype.*func(*"".builder, *go/ast.ForStmt, *"".lblock)?ftype.func(*"".builder, *go/ast.ForStmt, *"".lblock)?vtype..namedata.*func(*cfg.builder, *cfg.Block, *cfg.Block)-?Ztype.*func(*"".builder, *"".Block, *"".Block)?Xtype.func(*"".builder, *"".Block, *"".Block)?^type..namedata.*func(*cfg.builder, *cfg.Block)-?Dtype.*func(*"".builder, *"".Block)?Btype.func(*"".builder, *"".Block)?vtype..namedata.*func(*cfg.builder, *ast.Ident) *cfg.lblock-?btype.*func(*"".builder, *go/ast.Ident) *"".lblock?`type.func(*"".builder, *go/ast.Ident) *"".lblock?ltype..namedata.*func(*cfg.builder, string) *cfg.Block-?Rtype.*func(*"".builder, string) *"".Block?Ptype.func(*"".builder, string) *"".Block??type..namedata.*func(*cfg.builder, *ast.RangeStmt, *cfg.lblock)-?ltype.*func(*"".builder, *go/ast.RangeStmt, *"".lblock)?jtype.func(*"".builder, *go/ast.RangeStmt, *"".lblock)??type..namedata.*func(*cfg.builder, *ast.SelectStmt, *cfg.lblock)-?ntype.*func(*"".builder, *go/ast.SelectStmt, *"".lblock)?ltype.func(*"".builder, *go/ast.SelectStmt, *"".lblock)?Ztype..namedata.*func(*cfg.builder, ast.Stmt)-?Htype.*func(*"".builder, go/ast.Stmt)?Ftype.func(*"".builder, go/ast.Stmt)?6type..namedata.*[]ast.Stmt-?^type..namedata.*func(*cfg.builder, []ast.Stmt)-?Ltype.*func(*"".builder, []go/ast.Stmt)?Jtype.func(*"".builder, []go/ast.Stmt)??type..namedata.*func(*cfg.builder, *ast.SwitchStmt, *cfg.lblock)-?ntype.*func(*"".builder, *go/ast.SwitchStmt, *"".lblock)?ltype.func(*"".builder, *go/ast.SwitchStmt, *"".lblock)??type..namedata.*func(*cfg.builder, *ast.CaseClause, *cfg.Block)-?ltype.*func(*"".builder, *go/ast.CaseClause, *"".Block)?jtype.func(*"".builder, *go/ast.CaseClause, *"".Block)??type..namedata.*func(*cfg.builder, *ast.TypeSwitchStmt, *cfg.lblock)-?vtype.*func(*"".builder, *go/ast.TypeSwitchStmt, *"".lblock)?ttype.func(*"".builder, *go/ast.TypeSwitchStmt, *"".lblock)?&type..namedata.add-?>type..namedata.*func(ast.Node)-?.type.*func(go/ast.Node)?,type.func(go/ast.Node)?.type..namedata.forStmt-?`type..namedata.*func(*ast.ForStmt, *cfg.lblock)-?Ntype.*func(*go/ast.ForStmt, *"".lblock)?Ltype.func(*go/ast.ForStmt, *"".lblock)?,type..namedata.ifelse-?Ztype..namedata.*func(*cfg.Block, *cfg.Block)-?@type.*func(*"".Block, *"".Block)?>type.func(*"".Block, *"".Block)?(type..namedata.jump-?Btype..namedata.*func(*cfg.Block)-?*type.*func(*"".Block)?(type.func(*"".Block)?8type..namedata.labeledBlock-?Ztype..namedata.*func(*ast.Ident) *cfg.lblock-?Htype.*func(*go/ast.Ident) *"".lblock?Ftype.func(*go/ast.Ident) *"".lblock?0type..namedata.newBlock-?Ptype..namedata.*func(string) *cfg.Block-?8type.*func(string) *"".Block?6type.func(string) *"".Block?Ftype..namedata.newUnreachableBlock-?2type..namedata.rangeStmt-?dtype..namedata.*func(*ast.RangeStmt, *cfg.lblock)-?Rtype.*func(*go/ast.RangeStmt, *"".lblock)?Ptype.func(*go/ast.RangeStmt, *"".lblock)?4type..namedata.selectStmt-?ftype..namedata.*func(*ast.SelectStmt, *cfg.lblock)-?Ttype.*func(*go/ast.SelectStmt, *"".lblock)?Rtype.func(*go/ast.SelectStmt, *"".lblock)?(type..namedata.stmt-?>type..namedata.*func(ast.Stmt)-?.type.*func(go/ast.Stmt)?,type.func(go/ast.Stmt)?0type..namedata.stmtList-?Btype..namedata.*func([]ast.Stmt)-?2type.*func([]go/ast.Stmt)?0type.func([]go/ast.Stmt)?4type..namedata.switchStmt-?ftype..namedata.*func(*ast.SwitchStmt, *cfg.lblock)-?Ttype.*func(*go/ast.SwitchStmt, *"".lblock)?Rtype.func(*go/ast.SwitchStmt, *"".lblock)?8type..namedata.typeCaseBody-?dtype..namedata.*func(*ast.CaseClause, *cfg.Block)-?Rtype.*func(*go/ast.CaseClause, *"".Block)?Ptype.func(*go/ast.CaseClause, *"".Block)?<type..namedata.typeSwitchStmt-?ntype..namedata.*func(*ast.TypeSwitchStmt, *cfg.lblock)-?\type.*func(*go/ast.TypeSwitchStmt, *"".lblock)?Ztype.func(*go/ast.TypeSwitchStmt, *"".lblock)?"runtime.gcbits.1f?&type..namedata.cfg-?2type..namedata.mayReturn-?.type..namedata.current-?.type..namedata.lblocks-?.type..namedata.targets-?6type..namedata.**cfg.Block-?:type..namedata.**cfg.targets-?:type..namedata.*interface {}-?$type.*interface {}?"type.interface {}?>type..namedata.*[]interface {}-?(type.*[]interface {}?&type.[]interface {}?@type..namedata.*[1]interface {}-?*type.*[1]interface {}?Dgo.info.type..hash.[2]interface {}?0go.info.*[2]interface {}?go.info.uintptr?Fgo.range.type..hash.[2]interface {}?@go.info.type..eq.[2]interface {}?go.info.bool?Bgo.range.type..eq.[2]interface {}?<type..hashfunc.[2]interface {}?8type..eqfunc.[2]interface {}?2type..alg.[2]interface {}?@type..namedata.*[2]interface {}-?4type..namedata.*[32]uint8-?type.*[32]uint8?(type.*go/ast.BadStmt?*go/ast.(*BadStmt).End?*go/ast.(*BadStmt).Pos?4go/ast.(*BadStmt).stmtNode?Ngo.itablink.*go/ast.BadStmt,go/ast.Stmt?*type.*go/ast.SendStmt?,go/ast.(*SendStmt).End?,go/ast.(*SendStmt).Pos?6go/ast.(*SendStmt).stmtNode?Pgo.itablink.*go/ast.SendStmt,go/ast.Stmt?.type.*go/ast.IncDecStmt?0go/ast.(*IncDecStmt).End?0go/ast.(*IncDecStmt).Pos?:go/ast.(*IncDecStmt).stmtNode?Tgo.itablink.*go/ast.IncDecStmt,go/ast.Stmt?&type.*go/ast.GoStmt?(go/ast.(*GoStmt).End?(go/ast.(*GoStmt).Pos?2go/ast.(*GoStmt).stmtNode?Lgo.itablink.*go/ast.GoStmt,go/ast.Stmt?,type.*go/ast.DeferStmt?.go/ast.(*DeferStmt).End?.go/ast.(*DeferStmt).Pos?8go/ast.(*DeferStmt).stmtNode?Rgo.itablink.*go/ast.DeferStmt,go/ast.Stmt?,type.*go/ast.EmptyStmt?.go/ast.(*EmptyStmt).End?.go/ast.(*EmptyStmt).Pos?8go/ast.(*EmptyStmt).stmtNode?Rgo.itablink.*go/ast.EmptyStmt,go/ast.Stmt?.type.*go/ast.AssignStmt?0go/ast.(*AssignStmt).End?0go/ast.(*AssignStmt).Pos?:go/ast.(*AssignStmt).stmtNode?Tgo.itablink.*go/ast.AssignStmt,go/ast.Stmt?,go/ast.(*ExprStmt).End?,go/ast.(*ExprStmt).Pos?6go/ast.(*ExprStmt).stmtNode?Pgo.itablink.*go/ast.ExprStmt,go/ast.Stmt?Pgo.itablink.*go/ast.ExprStmt,go/ast.Node?,go/ast.(*CallExpr).End?,go/ast.(*CallExpr).Pos?6go/ast.(*CallExpr).exprNode?Pgo.itablink.*go/ast.CallExpr,go/ast.Expr?*type.*go/ast.DeclStmt?,go/ast.(*DeclStmt).End?,go/ast.(*DeclStmt).Pos?6go/ast.(*DeclStmt).stmtNode?Pgo.itablink.*go/ast.DeclStmt,go/ast.Stmt?*go/ast.(*GenDecl).End?*go/ast.(*GenDecl).Pos?4go/ast.(*GenDecl).declNode?Ngo.itablink.*go/ast.GenDecl,go/ast.Decl?.go/ast.(*ValueSpec).End?.go/ast.(*ValueSpec).Pos?8go/ast.(*ValueSpec).specNode?Rgo.itablink.*go/ast.ValueSpec,go/ast.Spec?Rgo.itablink.*go/ast.ValueSpec,go/ast.Node?2go/ast.(*LabeledStmt).End?2go/ast.(*LabeledStmt).Pos?<go/ast.(*LabeledStmt).stmtNode?Vgo.itablink.*go/ast.LabeledStmt,go/ast.Stmt?0go/ast.(*ReturnStmt).End?0go/ast.(*ReturnStmt).Pos?:go/ast.(*ReturnStmt).stmtNode?Tgo.itablink.*go/ast.ReturnStmt,go/ast.Stmt?Tgo.itablink.*go/ast.ReturnStmt,go/ast.Node?.type.*go/ast.BranchStmt?0go/ast.(*BranchStmt).End?0go/ast.(*BranchStmt).Pos?:go/ast.(*BranchStmt).stmtNode?Tgo.itablink.*go/ast.BranchStmt,go/ast.Stmt?.go/ast.(*BlockStmt).Pos?8go/ast.(*BlockStmt).stmtNode?Rgo.itablink.*go/ast.BlockStmt,go/ast.Stmt?(go/ast.(*IfStmt).End?(go/ast.(*IfStmt).Pos?2go/ast.(*IfStmt).stmtNode?Lgo.itablink.*go/ast.IfStmt,go/ast.Stmt?0go/ast.(*SwitchStmt).End?0go/ast.(*SwitchStmt).Pos?:go/ast.(*SwitchStmt).stmtNode?Tgo.itablink.*go/ast.SwitchStmt,go/ast.Stmt?8go/ast.(*TypeSwitchStmt).End?8go/ast.(*TypeSwitchStmt).Pos?Bgo/ast.(*TypeSwitchStmt).stmtNode?\go.itablink.*go/ast.TypeSwitchStmt,go/ast.Stmt?0go/ast.(*SelectStmt).End?0go/ast.(*SelectStmt).Pos?:go/ast.(*SelectStmt).stmtNode?Tgo.itablink.*go/ast.SelectStmt,go/ast.Stmt?*go/ast.(*ForStmt).End?*go/ast.(*ForStmt).Pos?4go/ast.(*ForStmt).stmtNode?Ngo.itablink.*go/ast.ForStmt,go/ast.Stmt?.go/ast.(*RangeStmt).End?.go/ast.(*RangeStmt).Pos?8go/ast.(*RangeStmt).stmtNode?Rgo.itablink.*go/ast.RangeStmt,go/ast.Stmt?0go/ast.(*CaseClause).End?0go/ast.(*CaseClause).Pos?:go/ast.(*CaseClause).stmtNode?Tgo.itablink.*go/ast.CaseClause,go/ast.Stmt?0go/ast.(*CommClause).End?0go/ast.(*CommClause).Pos?:go/ast.(*CommClause).stmtNode?Tgo.itablink.*go/ast.CommClause,go/ast.Stmt?*bytes.(*Buffer).Write?Fgo.itablink.*bytes.Buffer,io.Writer?.type..importpath.bytes.?*type..importpath.fmt.?0type..importpath.go/ast.?6type..importpath.go/format.?4type..importpath.go/token.????*J??ReH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8eH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 eH? %H;avtH??@H?l$8H?l$8H?Y H??ugH?D$HH?@H?L$PH?T$XH?T$H?T$`H?T$H?T$hH?T$H? $??H?D$ H?L$(H?T$0H?D$pH?L$xH??$?H?l$8H??@???s???H?|$HH9;u?H?#??o ????V-eH? %H??$????H;A?AH??H??$?H??$?H??$?H??$?1??H?\$xH?sH?[H??H??H??H????Y?????]?
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/cmd/vet/internal/
cfg.a 101 .this? type.go/ast.Stmt?~r1?"type.go/token.Pos?Tgclocals·522734ad228da40e2256ba19cf2bc72c?Tgclocals·69c1753bd5f81501d95132d08af04464?.gofile..<autogenerated>?go/ast.Stmt.Pos?(go/ast.Stmt.stmtNode?Tgclocals·dc9b0298814590ca3ffc3a889546fc8b?go/ast.Node.End? type.go/ast.Node?go/ast.Node.Pos?go/ast.Expr.End? type.go/ast.Expr?go/ast.Expr.Pos?(go/ast.Expr.exprNode?go/ast.Decl.End? type.go/ast.Decl?go/ast.Decl.Pos?(go/ast.Decl.declNode?go/ast.Spec.End? type.go/ast.Spec?go/ast.Spec.Pos?(go/ast.Spec.specNode?io.Writer.Write?type.io.Writer?p?type.[]uint8?n?type.int?err?type.error?Tgclocals·ed2b4e9472fcfb4edac5bdc674d399da?$"".(*builder).stmt?Ngo.itab.*go/ast.LabeledStmt,go/ast.Stmt?4"".(*builder).labeledBlock?(runtime.writeBarrier?,runtime.gcWriteBarrier?type.*"".Block?"runtime.growslice?Fgo.itab.*go/ast.BadStmt,go/ast.Stmt?runtime.convI2I?Tgo.itab.*go/ast.TypeSwitchStmt,go/ast.Stmt?8"".(*builder).typeSwitchStmt?Lgo.itab.*go/ast.BranchStmt,go/ast.Stmt?type."".Block?"runtime.newobject?<go.string."unreachable.branch"?8go.string."undefined.branch"?Lgo.itab.*go/ast.SelectStmt,go/ast.Stmt?0"".(*builder).selectStmt?Jgo.itab.*go/ast.EmptyStmt,go/ast.Stmt?Hgo.itab.*go/ast.SendStmt,go/ast.Stmt?Fgo.itab.*go/ast.ForStmt,go/ast.Stmt?Dgo.itab.*go/ast.GoStmt,go/ast.Stmt?*"".(*builder).forStmt?Hgo.itab.*go/ast.DeclStmt,go/ast.Stmt?Fgo.itab.*go/ast.GenDecl,go/ast.Decl?Jgo.itab.*go/ast.ValueSpec,go/ast.Spec?Jgo.itab.*go/ast.ValueSpec,go/ast.Node?Lgo.itab.*go/ast.ReturnStmt,go/ast.Stmt?Lgo.itab.*go/ast.ReturnStmt,go/ast.Node?<go.string."unreachable.return"?Lgo.itab.*go/ast.AssignStmt,go/ast.Stmt?Lgo.itab.*go/ast.SwitchStmt,go/ast.Stmt?Jgo.itab.*go/ast.RangeStmt,go/ast.Stmt?."".(*builder).rangeStmt?0"".(*builder).switchStmt?Lgo.itab.*go/ast.IncDecStmt,go/ast.Stmt?Jgo.itab.*go/ast.BlockStmt,go/ast.Stmt?,"".(*builder).stmtList?Hgo.itab.*go/ast.ExprStmt,go/ast.Stmt?Hgo.itab.*go/ast.ExprStmt,go/ast.Node?Hgo.itab.*go/ast.CallExpr,go/ast.Expr?8go.string."unreachable.call"?Dgo.itab.*go/ast.IfStmt,go/ast.Stmt?&go.string."if.then"?&go.string."if.done"?&go.string."if.else"?Jgo.itab.*go/ast.DeferStmt,go/ast.Stmt?Rgo.string."unexpected statement kind: %T"?fmt.Sprintf?type.string?*runtime.convT2Estring?runtime.gopanic?(type.*go/ast.GenDecl?*runtime.panicdottypeI?b? type.*"".builder?_s?.autotmp_124?(type.[1]interface {}?.autotmp_125?.autotmp_186?type.**"".Block?.autotmp_187?.autotmp_188?"type.*[]*"".Block?.autotmp_189?.autotmp_191?.autotmp_193?,type.*go/ast.ValueSpec?.autotmp_194?"type.*go/ast.Spec?.autotmp_195?.autotmp_196?.type.*go/ast.ReturnStmt?.autotmp_197?.autotmp_198?*type.*go/ast.ExprStmt?.autotmp_199?.autotmp_200?.autotmp_201?.autotmp_202?
108 label?type.*"".lblock? n.data?type.*uint8? n.itab?s?0type.*go/ast.LabeledStmt?&type.*go/ast.IfStmt?t? target?.autotmp_190?.autotmp_192?Tgclocals·f5bd35885eaac9080db65e380c1111d4?Tgclocals·08b1b0ba57a884b1608d0a885e433338?fgofile..$GOROOT/src/cmd/vet/internal/cfg/builder.go?$"".(*builder).jump?""".(*builder).add?B"".(*builder).newUnreachableBlock?,"".(*builder).newBlock?("".(*builder).ifelse?list?$type.[]go/ast.Stmt?.autotmp_11?"type.*go/ast.Stmt?.autotmp_10?Tgclocals·0b2a2ca5bf6608e759d18e5829a525fa?Tgclocals·9fb7f0986f647f17cb53dda1484e0f7a?.go.string."switch.done"?Lgo.itab.*go/ast.CaseClause,go/ast.Stmt?.go.string."switch.next"?type."".targets?.go.string."switch.body"?.type.*go/ast.CaseClause?.type.*go/ast.SwitchStmt?.autotmp_100?"type.**"".targets?.autotmp_101?.autotmp_102?.autotmp_103?.autotmp_104?.autotmp_105?.autotmp_106?.autotmp_91?.autotmp_94?"type.*go/ast.Expr?.autotmp_96?.autotmp_97?.autotmp_98?.autotmp_99?clause.data?clause.itab?cond.data?cond.itab?defaultBody?&type.*[]go/ast.Stmt?$defaultFallthrough?fallthru?nextCond?.autotmp_107?type.int64?.autotmp_90?.autotmp_92?.autotmp_93?.autotmp_95?i? ncases?Tgclocals·c2c33285b18e5fbc0702ab5ed0a70deb?Tgclocals·0dcb2968030c13ce5d7f0423455d9ab2?6go.string."typeswitch.done"?6go.string."typeswitch.body"?6go.string."typeswitch.next"?4"".(*builder).typeCaseBody?6type.*go/ast.TypeSwitchStmt?.autotmp_64?.autotmp_67?.autotmp_69?.autotmp_70?.autotmp_71?.autotmp_72?.autotmp_73?.autotmp_74?default_?next?.autotmp_62?.autotmp_63?.autotmp_65?.autotmp_66?.autotmp_68?Tgclocals·bd5fdb81d1138830f3acb4c839f4957b?Tgclocals·a5645d79d0acbd250ac2b28c63097247?cc?done?.autotmp_6?.autotmp_7?.autotmp_8?.autotmp_9?Tgclocals·ec21dc6ea48719d46f82859a7d82aeed?Tgclocals·bda0b156f8ec13534e44978e2826fb6c?Lgo.itab.*go/ast.CommClause,go/ast.Stmt?.go.string."select.done"?.go.string."select.body"?.go.string."select.next"?$runtime.panicindex?.type.*go/ast.CommClause?.type.*go/ast.SelectStmt?.autotmp_78?.autotmp_79?.autotmp_81?.autotmp_82?.autotmp_83?.autotmp_84?.autotmp_85?.autotmp_86?.autotmp_87?.autotmp_88?cc.data?.autotmp_76?.autotmp_77?.autotmp_80?Tgclocals·a59815493f9842d04c2671a652fbe244?Tgclocals·d213ac291a32ef8ec4e7fa95086f498f?(go.string."for.body"?(go.string."for.done"?(go.string."for.post"?(go.string."for.loop"?(type.*go/ast.ForStmt?Tgclocals·82880f18e611b8aedd233bd97a1ebe42?Tgclocals·f9ca7ec7543e50f54cb0fef09791b8c5?,go.string."range.loop"?,go.string."range.body"?,go.string."range.done"?,type.*go/ast.RangeStmt?.autotmp_59?.autotmp_61?.autotmp_60?Tgclocals·f189bfe308ee6f5c0b6c4d95607cb21d?Tgclocals·85a7015a9de7ca9446d382f574b68775?Dtype.map[*go/ast.Object]*"".lblock?2runtime.mapaccess1_fast64?type."".lblock?6runtime.mapassign_fast64ptr?*runtime.makemap_small?$type.*go/ast.Ident?.autotmp_19?Ftype.*map[*go/ast.Object]*"".lblock?comment.ptr?lb?.autotmp_20?comment.len?Tgclocals·313c6be0c9134a2ebc5f2f5fda2db525?Tgclocals·cadca4e4b8bda8bfae0a27939a10f8d8?comment?Tgclocals·d6fd52846a0f2aa34eb8e63a511c949f?Tgclocals·bfec7e55b3f043d1941c093912808913?.autotmp_14?.autotmp_2?Tgclocals·1d05e4a62d1779a5aa065f789cb9ac62?.autotmp_3?.autotmp_4?Tgclocals·f8f97633289e1e5e749eaf42e320ec6f?Tgclocals·beef1c0edbd4d21e0079520d217ae030?.autotmp_5?Tgclocals·81684c82778c8f7f060f1aca272e507d? "".New?type."".CFG?"go.string."entry"?,type.go/ast.ReturnStmt?body?,type.*go/ast.BlockStmt?mayReturn?@type.func(*go/ast.CallExpr) bool?~r2?type."".builder?.autotmp_26?.autotmp_29?.autotmp_30?.autotmp_27?.autotmp_28?Tgclocals·47f379cdce69a71d3608459473b37b17?Tgclocals·5d1eac608a5844bf433f82d1bd62cc6d?^gofile..$GOROOT/src/cmd/vet/internal/cfg/cfg.go?Bgofile..$GOROOT/src/go/ast/ast.go?.go/ast.(*BlockStmt).End?$"".(*Block).String?type.int32?"runtime.convT2E32?2go.string."block %d (%s)"?~r0?(type.[2]interface {}?Tgclocals·ff86e65df292e79ee8c8989cfcf3f802?Tgclocals·9f085495f8026f6147b99eb53550d0dd?$"".(*Block).Return?ret?Tgclocals·524d71b8d4b4126db12e7a6de3370d94? "".(*CFG).Format?"type.bytes.Buffer?"".formatNode?>go.itab.*bytes.Buffer,io.Writer?$go.string."\t%s\n"?fmt.Fprintf?2bytes.(*Buffer).WriteByte?.go.string.".%d: # %s\n"?(go.string."\tsuccs:"?go.string." %d"?2runtime.slicebytetostring?"go.string."<nil>"?$runtime.panicslice?fset?,type.*go/token.FileSet?.autotmp_16?.autotmp_50?.autotmp_54?"type.*go/ast.Node?.autotmp_55?b·2?$type.*bytes.Buffer?.autotmp_49?.autotmp_51?.autotmp_52?.autotmp_53?Tgclocals·10bade27294fcb0ad0deaf8e461ab97b?Tgclocals·95be8ce52b33ba1fa9ea538b9140e550?Fgofile..$GOROOT/src/bytes/buffer.go?,bytes.(*Buffer).String?go/format.Node?go.string."\n"?2runtime.stringtoslicebyte? go.string."\n\t"?bytes.Replace?.autotmp_23?.autotmp_25?.autotmp_15?type.[32]uint8?.autotmp_21?.autotmp_22?.autotmp_24?Tgclocals·a5eff964a1d24ee3ff261208c08b3846?Tgclocals·c4e6e860df79db9753fdb3e3f9a627de?*bytes.(*Buffer).Bytes?"".init?"".initdone·?"runtime.throwinit?fmt.init?go/ast.init?go/token.init?bytes.init?go/format.init?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?4type..hash.[2]interface {}?(runtime.nilinterhash?*type.*[2]interface {}?h?type.uintptr?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?0type..eq.[2]interface {}?runtime.efaceeq?q?type.bool?Tgclocals·8f9cec06d1ae35cc9900c511c5e4bdab?Ngo.info."".(*builder).newBlock$abstract?&go.info.*"".builder?"go.info.*"".Block?go.info.string?go.info.*"".CFG?Dgo.info."".(*builder).add$abstract?&go.info.go/ast.Node?dgo.info."".(*builder).newUnreachableBlock$abstract?Fgo.info."".(*builder).jump$abstract?Jgo.info."".(*builder).ifelse$abstract?Pgo.info.go/ast.(*BlockStmt).End$abstract?2go.info.*go/ast.BlockStmt?Lgo.info.bytes.(*Buffer).Bytes$abstract?*go.info.*bytes.Buffer?Ngo.info.bytes.(*Buffer).String$abstract?.go.info.go/ast.Stmt.End?&go.info.go/ast.Stmt?(go.info.go/token.Pos?0go.range.go/ast.Stmt.End?.go.info.go/ast.Stmt.Pos?0go.range.go/ast.Stmt.Pos?8go.info.go/ast.Stmt.stmtNode?:go.range.go/ast.Stmt.stmtNode?.go.info.go/ast.Node.End?0go.range.go/ast.Node.End?.go.info.go/ast.Node.Pos?0go.range.go/ast.Node.Pos?.go.info.go/ast.Expr.End?&go.info.go/ast.Expr?0go.range.go/ast.Expr.End?.go.info.go/ast.Expr.Pos?0go.range.go/ast.Expr.Pos?8go.info.go/ast.Expr.exprNode?:go.range.go/ast.Expr.exprNode?.go.info.go/ast.Decl.End?&go.info.go/ast.Decl?0go.range.go/ast.Decl.End?.go.info.go/ast.Decl.Pos?0go.range.go/ast.Decl.Pos?8go.info.go/ast.Decl.declNode?:go.range.go/ast.Decl.declNode?.go.info.go/ast.Spec.End?&go.info.go/ast.Spec?0go.range.go/ast.Spec.End?.go.info.go/ast.Spec.Pos?0go.range.go/ast.Spec.Pos?8go.info.go/ast.Spec.specNode?:go.range.go/ast.Spec.specNode?.go.info.io.Writer.Write?"go.info.io.Writer?go.info.error?go.info.int?go.info.[]uint8?0go.range.io.Writer.Write?4go.info."".(*builder).stmt?$go.info.*"".lblock?go.info.*uint8?,go.info.*go/ast.IfStmt?6go.info.*go/ast.LabeledStmt?6go.range."".(*builder).stmt?<go.info."".(*builder).stmtList?*go.info.[]go/ast.Stmt?>go.range."".(*builder).stmtList?@go.info."".(*builder).switchStmt?,go.info.*[]go/ast.Stmt?4go.info.*go/ast.SwitchStmt?Bgo.range."".(*builder).switchStmt?Hgo.info."".(*builder).typeSwitchStmt?4go.info.*go/ast.CaseClause?<go.info.*go/ast.TypeSwitchStmt?Jgo.range."".(*builder).typeSwitchStmt?Dgo.info."".(*builder).typeCaseBody?Fgo.range."".(*builder).typeCaseBody?@go.info."".(*builder).selectStmt?4go.info.*go/ast.SelectStmt?Bgo.range."".(*builder).selectStmt?:go.info."".(*builder).forStmt?.go.info.*go/ast.ForStmt?<go.range."".(*builder).forStmt?>go.info."".(*builder).rangeStmt?2go.info.*go/ast.RangeStmt?@go.range."".(*builder).rangeStmt?Dgo.info."".(*builder).labeledBlock?*go.info.*go/ast.Ident?Fgo.range."".(*builder).labeledBlock?<go.info."".(*builder).newBlock?>go.range."".(*builder).newBlock?Rgo.info."".(*builder).newUnreachableBlock?Tgo.range."".(*builder).newUnreachableBlock?2go.info."".(*builder).add?4go.range."".(*builder).add?4go.info."".(*builder).jump?6go.range."".(*builder).jump?8go.info."".(*builder).ifelse?:go.range."".(*builder).ifelse?go.info."".New?$go.info."".builder?Fgo.info.func(*go/ast.CallExpr) bool?go.range."".New?4go.info."".(*Block).String?6go.range."".(*Block).String?4go.info."".(*Block).Return?4go.info.*go/ast.ReturnStmt?6go.range."".(*Block).Return?0go.info."".(*CFG).Format?2go.info.*go/token.FileSet?2go.range."".(*CFG).Format?*go.info."".formatNode?,go.range."".formatNode?go.info."".init? go.range."".init?type.uint8?"runtime.gcbits.01?6type..namedata.*[]ast.Node-?&type.*[]go/ast.Node? runtime.algarray?$type.[]go/ast.Node?4type..namedata.*cfg.Block.?btype..namedata.*func(*cfg.Block) *ast.ReturnStmt-?Ptype.*func(*"".Block) *go/ast.ReturnStmt?Ntype.func(*"".Block) *go/ast.ReturnStmt?Ptype..namedata.*func(*cfg.Block) string-?8type.*func(*"".Block) string?6type.func(*"".Block) string?(type..importpath."".?,type..namedata.Return.?Ntype..namedata.*func() *ast.ReturnStmt-?>type.*func() *go/ast.ReturnStmt?<type.func() *go/ast.ReturnStmt?,type..namedata.String.?<type..namedata.*func() string-?&type.*func() string?$type.func() string?:type..namedata.*[]*cfg.Block-? type.[]*"".Block?<type..namedata.*[2]*cfg.Block-?$type.*[2]*"".Block?"type.[2]*"".Block?"runtime.gcbits.03?&runtime.gcbits.4906?*type..namedata.Nodes.?*type..namedata.Succs.?.type..namedata.comment-?*type..namedata.index-?6type..namedata.unreachable-?,type..namedata.succs2-?0type..namedata.*cfg.CFG.?ltype..namedata.*func(*cfg.CFG, *token.FileSet) string-?Ztype.*func(*"".CFG, *go/token.FileSet) string?Xtype.func(*"".CFG, *go/token.FileSet) string?,type..namedata.Format.?Xtype..namedata.*func(*token.FileSet) string-?Htype.*func(*go/token.FileSet) string?Ftype.func(*go/token.FileSet) string?,type..namedata.Blocks.?Rtype..namedata.*func(*ast.CallExpr) bool-?Btype.*func(*go/ast.CallExpr) bool?*type.*go/ast.CallExpr? type..hashfunc24?,runtime.memhash_varlen?type..eqfunc24?.runtime.memequal_varlen?type..alg24?"runtime.gcbits.07?6type..namedata.*cfg.lblock-?*type..namedata._goto-?,type..namedata._break-?2type..namedata._continue-?0type..namedata.*[]uint8-?type.*[]uint8?2type..namedata.*[8]uint8-?type.*[8]uint8?type.[8]uint8?runtime.gcbits.?<type..namedata.*[]*ast.Object-?,type.*[]*go/ast.Object?*type.[]*go/ast.Object?&type.*go/ast.Object?>type..namedata.*[8]*ast.Object-?.type.*[8]*go/ast.Object?8type.noalg.[8]*go/ast.Object?"runtime.gcbits.ff?<type..namedata.*[]*cfg.lblock-?$type.*[]*"".lblock?"type.[]*"".lblock?>type..namedata.*[8]*cfg.lblock-?&type.*[8]*"".lblock?0type.noalg.[8]*"".lblock?ftype..namedata.*map.bucket[*ast.Object]*cfg.lblock-?Ttype.*map.bucket[*go/ast.Object]*"".lblock?^type.noalg.map.bucket[*go/ast.Object]*"".lblock?*runtime.gcbits.feff03?$type..importpath..?.type..namedata.topbits-?(type..namedata.keys-?,type..namedata.values-?0type..namedata.overflow-?`type..namedata.*map.hdr[*ast.Object]*cfg.lblock-?Ntype.*map.hdr[*go/ast.Object]*"".lblock?Xtype.noalg.map.hdr[*go/ast.Object]*"".lblock?"runtime.gcbits.2c?*type..namedata.count-?*type..namedata.flags-?"type..namedata.B.?2type..namedata.noverflow-?*type..namedata.hash0-?.type..namedata.buckets-?4type..namedata.oldbuckets-?2type..namedata.nevacuate-?*type..namedata.extra-?type.uint16?type.uint32?&type.unsafe.Pointer?Xtype..namedata.*map[*ast.Object]*cfg.lblock-? type..hashfunc32?type..eqfunc32?type..alg32?"runtime.gcbits.0f?8type..namedata.*cfg.targets-?(type..namedata.tail-?8type..namedata._fallthrough-? type.*"".targets?8type..namedata.*cfg.builder-?Ztype..namedata.*func(*cfg.builder, ast.Node)-?Htype.*func(*"".builder, go/ast.Node)?Ftype.func(*"".builder, go/ast.Node)?|type..namedata.*func(*cfg.builder, *ast.ForStmt, *cfg.lblock)-?htype.*func(*"".builder, *go/ast.ForStmt, *"".lblock)?ftype.func(*"".builder, *go/ast.ForStmt, *"".lblock)?vtype..namedata.*func(*cfg.builder, *cfg.Block, *cfg.Block)-?Ztype.*func(*"".builder, *"".Block, *"".Block)?Xtype.func(*"".builder, *"".Block, *"".Block)?^type..namedata.*func(*cfg.builder, *cfg.Block)-?Dtype.*func(*"".builder, *"".Block)?Btype.func(*"".builder, *"".Block)?vtype..namedata.*func(*cfg.builder, *ast.Ident) *cfg.lblock-?btype.*func(*"".builder, *go/ast.Ident) *"".lblock?`type.func(*"".builder, *go/ast.Ident) *"".lblock?ltype..namedata.*func(*cfg.builder, string) *cfg.Block-?Rtype.*func(*"".builder, string) *"".Block?Ptype.func(*"".builder, string) *"".Block??type..namedata.*func(*cfg.builder, *ast.RangeStmt, *cfg.lblock)-?ltype.*func(*"".builder, *go/ast.RangeStmt, *"".lblock)?jtype.func(*"".builder, *go/ast.RangeStmt, *"".lblock)??type..namedata.*func(*cfg.builder, *ast.SelectStmt, *cfg.lblock)-?ntype.*func(*"".builder, *go/ast.SelectStmt, *"".lblock)?ltype.func(*"".builder, *go/ast.SelectStmt, *"".lblock)?Ztype..namedata.*func(*cfg.builder, ast.Stmt)-?Htype.*func(*"".builder, go/ast.Stmt)?Ftype.func(*"".builder, go/ast.Stmt)?6type..namedata.*[]ast.Stmt-?^type..namedata.*func(*cfg.builder, []ast.Stmt)-?Ltype.*func(*"".builder, []go/ast.Stmt)?Jtype.func(*"".builder, []go/ast.Stmt)??type..namedata.*func(*cfg.builder, *ast.SwitchStmt, *cfg.lblock)-?ntype.*func(*"".builder, *go/ast.SwitchStmt, *"".lblock)?ltype.func(*"".builder, *go/ast.SwitchStmt, *"".lblock)??type..namedata.*func(*cfg.builder, *ast.CaseClause, *cfg.Block)-?ltype.*func(*"".builder, *go/ast.CaseClause, *"".Block)?jtype.func(*"".builder, *go/ast.CaseClause, *"".Block)??type..namedata.*func(*cfg.builder, *ast.TypeSwitchStmt, *cfg.lblock)-?vtype.*func(*"".builder, *go/ast.TypeSwitchStmt, *"".lblock)?ttype.func(*"".builder, *go/ast.TypeSwitchStmt, *"".lblock)?&type..namedata.add-?>type..namedata.*func(ast.Node)-?.type.*func(go/ast.Node)?,type.func(go/ast.Node)?.type..namedata.forStmt-?`type..namedata.*func(*ast.ForStmt, *cfg.lblock)-?Ntype.*func(*go/ast.ForStmt, *"".lblock)?Ltype.func(*go/ast.ForStmt, *"".lblock)?,type..namedata.ifelse-?Ztype..namedata.*func(*cfg.Block, *cfg.Block)-?@type.*func(*"".Block, *"".Block)?>type.func(*"".Block, *"".Block)?(type..namedata.jump-?Btype..namedata.*func(*cfg.Block)-?*type.*func(*"".Block)?(type.func(*"".Block)?8type..namedata.labeledBlock-?Ztype..namedata.*func(*ast.Ident) *cfg.lblock-?Htype.*func(*go/ast.Ident) *"".lblock?Ftype.func(*go/ast.Ident) *"".lblock?0type..namedata.newBlock-?Ptype..namedata.*func(string) *cfg.Block-?8type.*func(string) *"".Block?6type.func(string) *"".Block?Ftype..namedata.newUnreachableBlock-?2type..namedata.rangeStmt-?dtype..namedata.*func(*ast.RangeStmt, *cfg.lblock)-?Rtype.*func(*go/ast.RangeStmt, *"".lblock)?Ptype.func(*go/ast.RangeStmt, *"".lblock)?4type..namedata.selectStmt-?ftype..namedata.*func(*ast.SelectStmt, *cfg.lblock)-?Ttype.*func(*go/ast.SelectStmt, *"".lblock)?Rtype.func(*go/ast.SelectStmt, *"".lblock)?(type..namedata.stmt-?>type..namedata.*func(ast.Stmt)-?.type.*func(go/ast.Stmt)?,type.func(go/ast.Stmt)?0type..namedata.stmtList-?Btype..namedata.*func([]ast.Stmt)-?2type.*func([]go/ast.Stmt)?0type.func([]go/ast.Stmt)?4type..namedata.switchStmt-?ftype..namedata.*func(*ast.SwitchStmt, *cfg.lblock)-?Ttype.*func(*go/ast.SwitchStmt, *"".lblock)?Rtype.func(*go/ast.SwitchStmt, *"".lblock)?8type..namedata.typeCaseBody-?dtype..namedata.*func(*ast.CaseClause, *cfg.Block)-?Rtype.*func(*go/ast.CaseClause, *"".Block)?Ptype.func(*go/ast.CaseClause, *"".Block)?<type..namedata.typeSwitchStmt-?ntype..namedata.*func(*ast.TypeSwitchStmt, *cfg.lblock)-?\type.*func(*go/ast.TypeSwitchStmt, *"".lblock)?Ztype.func(*go/ast.TypeSwitchStmt, *"".lblock)?"runtime.gcbits.1f?&type..namedata.cfg-?2type..namedata.mayReturn-?.type..namedata.current-?.type..namedata.lblocks-?.type..namedata.targets-?6type..namedata.**cfg.Block-?:type..namedata.**cfg.targets-?:type..namedata.*interface {}-?$type.*interface {}?"type.interface {}?>type..namedata.*[]interface {}-?(type.*[]interface {}?&type.[]interface {}?@type..namedata.*[1]interface {}-?*type.*[1]interface {}?Dgo.info.type..hash.[2]interface {}?0go.info.*[2]interface {}?go.info.uintptr?Fgo.range.type..hash.[2]interface {}?@go.info.type..eq.[2]interface {}?go.info.bool?Bgo.range.type..eq.[2]interface {}?<type..hashfunc.[2]interface {}?8type..eqfunc.[2]interface {}?2type..alg.[2]interface {}?@type..namedata.*[2]interface {}-?4type..namedata.*[32]uint8-?type.*[32]uint8?(type.*go/ast.BadStmt?*go/ast.(*BadStmt).End?*go/ast.(*BadStmt).Pos?4go/ast.(*BadStmt).stmtNode?Ngo.itablink.*go/ast.BadStmt,go/ast.Stmt?*type.*go/ast.SendStmt?,go/ast.(*SendStmt).End?,go/ast.(*SendStmt).Pos?6go/ast.(*SendStmt).stmtNode?Pgo.itablink.*go/ast.SendStmt,go/ast.Stmt?.type.*go/ast.IncDecStmt?0go/ast.(*IncDecStmt).End?0go/ast.(*IncDecStmt).Pos?:go/ast.(*IncDecStmt).stmtNode?Tgo.itablink.*go/ast.IncDecStmt,go/ast.Stmt?&type.*go/ast.GoStmt?(go/ast.(*GoStmt).End?(go/ast.(*GoStmt).Pos?2go/ast.(*GoStmt).stmtNode?Lgo.itablink.*go/ast.GoStmt,go/ast.Stmt?,type.*go/ast.DeferStmt?.go/ast.(*DeferStmt).End?.go/ast.(*DeferStmt).Pos?8go/ast.(*DeferStmt).stmtNode?Rgo.itablink.*go/ast.DeferStmt,go/ast.Stmt?,type.*go/ast.EmptyStmt?.go/ast.(*EmptyStmt).End?.go/ast.(*EmptyStmt).Pos?8go/ast.(*EmptyStmt).stmtNode?Rgo.itablink.*go/ast.EmptyStmt,go/ast.Stmt?.type.*go/ast.AssignStmt?0go/ast.(*AssignStmt).End?0go/ast.(*AssignStmt).Pos?:go/ast.(*AssignStmt).stmtNode?Tgo.itablink.*go/ast.AssignStmt,go/ast.Stmt?,go/ast.(*ExprStmt).End?,go/ast.(*ExprStmt).Pos?6go/ast.(*ExprStmt).stmtNode?Pgo.itablink.*go/ast.ExprStmt,go/ast.Stmt?Pgo.itablink.*go/ast.ExprStmt,go/ast.Node?,go/ast.(*CallExpr).End?,go/ast.(*CallExpr).Pos?6go/ast.(*CallExpr).exprNode?Pgo.itablink.*go/ast.CallExpr,go/ast.Expr?*type.*go/ast.DeclStmt?,go/ast.(*DeclStmt).End?,go/ast.(*DeclStmt).Pos?6go/ast.(*DeclStmt).stmtNode?Pgo.itablink.*go/ast.DeclStmt,go/ast.Stmt?*go/ast.(*GenDecl).End?*go/ast.(*GenDecl).Pos?4go/ast.(*GenDecl).declNode?Ngo.itablink.*go/ast.GenDecl,go/ast.Decl?.go/ast.(*ValueSpec).End?.go/ast.(*ValueSpec).Pos?8go/ast.(*ValueSpec).specNode?Rgo.itablink.*go/ast.ValueSpec,go/ast.Spec?Rgo.itablink.*go/ast.ValueSpec,go/ast.Node?2go/ast.(*LabeledStmt).End?2go/ast.(*LabeledStmt).Pos?<go/ast.(*LabeledStmt).stmtNode?Vgo.itablink.*go/ast.LabeledStmt,go/ast.Stmt?0go/ast.(*ReturnStmt).End?0go/ast.(*ReturnStmt).Pos?:go/ast.(*ReturnStmt).stmtNode?Tgo.itablink.*go/ast.ReturnStmt,go/ast.Stmt?Tgo.itablink.*go/ast.ReturnStmt,go/ast.Node?.type.*go/ast.BranchStmt?0go/ast.(*BranchStmt).End?0go/ast.(*BranchStmt).Pos?:go/ast.(*BranchStmt).stmtNode?Tgo.itablink.*go/ast.BranchStmt,go/ast.Stmt?.go/ast.(*BlockStmt).Pos?8go/ast.(*BlockStmt).stmtNode?Rgo.itablink.*go/ast.BlockStmt,go/ast.Stmt?(go/ast.(*IfStmt).End?(go/ast.(*IfStmt).Pos?2go/ast.(*IfStmt).stmtNode?Lgo.itablink.*go/ast.IfStmt,go/ast.Stmt?0go/ast.(*SwitchStmt).End?0go/ast.(*SwitchStmt).Pos?:go/ast.(*SwitchStmt).stmtNode?Tgo.itablink.*go/ast.SwitchStmt,go/ast.Stmt?8go/ast.(*TypeSwitchStmt).End?8go/ast.(*TypeSwitchStmt).Pos?Bgo/ast.(*TypeSwitchStmt).stmtNode?\go.itablink.*go/ast.TypeSwitchStmt,go/ast.Stmt?0go/ast.(*SelectStmt).End?0go/ast.(*SelectStmt).Pos?:go/ast.(*SelectStmt).stmtNode?Tgo.itablink.*go/ast.SelectStmt,go/ast.Stmt?*go/ast.(*ForStmt).End?*go/ast.(*ForStmt).Pos?4go/ast.(*ForStmt).stmtNode?Ngo.itablink.*go/ast.ForStmt,go/ast.Stmt?.go/ast.(*RangeStmt).End?.go/ast.(*RangeStmt).Pos?8go/ast.(*RangeStmt).stmtNode?Rgo.itablink.*go/ast.RangeStmt,go/ast.Stmt?0go/ast.(*CaseClause).End?0go/ast.(*CaseClause).Pos?:go/ast.(*CaseClause).stmtNode?Tgo.itablink.*go/ast.CaseClause,go/ast.Stmt?0go/ast.(*CommClause).End?0go/ast.(*CommClause).Pos?:go/ast.(*CommClause).stmtNode?Tgo.itablink.*go/ast.CommClause,go/ast.Stmt?*bytes.(*Buffer).Write?Fgo.itablink.*bytes.Buffer,io.Writer?.type..importpath.bytes.?*type..importpath.fmt.?0type..importpath.go/ast.?6type..importpath.go/format.?4type..importpath.go/token.????*J??RdH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av?H??H?l$H?l$H?Y H??u/H?D$ H?L$(H?@ H? $??H?D$H?D$0H?l$H?????H?|$ H9;u?H?#??0:/0ddd8dH? %H;av5H??H?l$H?l$H?Y H??u%H?D$H?@(H?L$ H? $??H?l$H?????H?|$H9;u?H?#?? 0 ZZZ8 dH? %H;avtH??@H?l$8H?l$8H?Y H??ugH?D$HH?@H?L$PH?T$XH?T$H?T$`H?T$H?T$hH?T$H? $??H?D$ H?L$(H?T$0H?D$pH?L$xH??$?H?l$8H??@???s???H?|$HH9;u?H?#??o ????V-dH? %H??$????H;A?AH??H??$?H??$?H??$?H??$?1??H?\$xH?sH?[H??H??H??H????Y?????]?
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /toolchain/binutils/binutils-2.27/bfd/
dwarf2.c 235 int stmtlist; member in struct:comp_unit
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/go/
printer.a 102 yline?printBlank?Tgclocals·4c3af4eab2e3969e3317a0e7ef336a93?Tgclocals·8b024f611d656b7278244c22aa903ad6?"".isBinary?Tgclocals·8f9cec06d1ae35cc9900c511c5e4bdab?Jgo.itab.*go/ast.SliceExpr,go/ast.Expr?"".statictmp_65?"".statictmp_67?"".statictmp_68?"".statictmp_66?"".statictmp_69?"runtime.growslice?Jgo.itab.*go/ast.ArrayType,go/ast.Expr?Rgo.itab.*go/ast.InterfaceType,go/ast.Expr?"".statictmp_87?"".statictmp_83?"".statictmp_84?Fgo.itab.*go/ast.BadExpr,go/ast.Expr?"".statictmp_46?Hgo.itab.*go/ast.ChanType,go/ast.Expr?"".statictmp_96?"".statictmp_91?"".statictmp_92?"".statictmp_93?"".statictmp_94?"".statictmp_95?"".statictmp_86?"".statictmp_50?"".statictmp_51?"".statictmp_52?"".statictmp_53?*type.*go/ast.BasicLit?Jgo.itab.*go/ast.ParenExpr,go/ast.Expr?"".statictmp_57?"".statictmp_58?Lgo.itab.*go/ast.StructType,go/ast.Expr?Fgo.itab.*go/ast.FuncLit,go/ast.Expr?,go/ast.(*FuncType).Pos?4"".(*printer).distanceFrom?,"".(*printer).funcBody?"".statictmp_85?Pgo.itab.*go/ast.CompositeLit,go/ast.Expr?"".statictmp_78? runtime.duffzero?"".statictmp_79?"".statictmp_80?type."".pmode?"".statictmp_81?Hgo.itab.*go/ast.Ellipsis,go/ast.Expr?"".statictmp_54?"".statictmp_55?"".statictmp_56?"".statictmp_48?"".statictmp_49?"".statictmp_82?Fgo.itab.*go/ast.MapType,go/ast.Expr?"".statictmp_47?Hgo.itab.*go/ast.CallExpr,go/ast.Expr?"".statictmp_70?D"".(*printer).possibleSelectorExpr?"".statictmp_71?"".statictmp_72?"".statictmp_73?"".statictmp_76?"".statictmp_77?"".statictmp_74?"".statictmp_75?"".statictmp_88?"".statictmp_89?"".statictmp_90?Tgo.itab.*go/ast.TypeAssertExpr,go/ast.Expr?Jgo.itab.*go/ast.IndexExpr,go/ast.Expr?Pgo.itab.*go/ast.SelectorExpr,go/ast.Expr?4"".(*printer).selectorExpr?"".statictmp_63?"".statictmp_64?"".statictmp_59?"".statictmp_60?"".statictmp_62?"".statictmp_61?"".statictmp_97?runtime.gopanic?.autotmp_105?(type.[6]interface {}?.autotmp_119?.autotmp_75?.autotmp_115?.autotmp_118?.autotmp_180?&type.[2]go/ast.Expr?.autotmp_77?.autotmp_79?.autotmp_80?.autotmp_88?.autotmp_94?.autotmp_95?.autotmp_98?.autotmp_109?.autotmp_110?.autotmp_111?.autotmp_112?.autotmp_113?.autotmp_114?.autotmp_116?.autotmp_117?.autotmp_120?.autotmp_64?.autotmp_66?.autotmp_67?.autotmp_72?.autotmp_85?.autotmp_86?.autotmp_87?.autotmp_272?.autotmp_273?.autotmp_274?.autotmp_275?$type.*go/token.Pos?.autotmp_276?*type.*go/ast.StarExpr?.type.*go/ast.StructType?*type.*go/ast.CallExpr?,type.*go/ast.SliceExpr?*type.*go/ast.ChanType?(type.*go/ast.MapType?4type.*go/ast.InterfaceType?2type.*go/ast.CompositeLit?(type.*go/ast.FuncLit?,type.*go/ast.ArrayType?,type.*go/ast.ParenExpr?*type.*go/ast.Ellipsis?,type.*go/ast.IndexExpr?6type.*go/ast.TypeAssertExpr?.autotmp_106?.autotmp_107?.autotmp_131?.autotmp_277?indices.len?needsBlanks?wasIndented?Tgclocals·d1b6b3bc380da934e459797d1c4776c2?Tgclocals·53a865760986bdc510c665ef1b4eb033?~r3?Tgclocals·ae699ff87af3ee112ac2703a893c7802?"".statictmp_98?"".statictmp_99? "".statictmp_100? "".statictmp_101?2type.*go/ast.SelectorExpr?isMethod?.autotmp_15?.autotmp_14?.autotmp_17?.autotmp_16?Tgclocals·6f9f54cb498256085fb78e6d2c2afb80?Tgclocals·637d7c9c52aab1f81676030f4d3f1318?Tgclocals·d5b141600d14f1af2e5806a867c74d9b?Tgclocals·9aa48eca674789341e2d6be6614c399c?,"".(*printer).stmtList?Jgo.itab.*go/ast.EmptyStmt,go/ast.Stmt?$"".(*printer).stmt?Ngo.itab.*go/ast.LabeledStmt,go/ast.Stmt? "".statictmp_103? "".statictmp_102?$type.[]go/ast.Stmt?nindent?nextIsRBrace?.autotmp_42?"type.*go/ast.Stmt? t.data? t.itab?.autotmp_41?Tgclocals·7eea2917bef5e64b3d4d7277891c5c67?Tgclocals·39bc693f0f753bc7fa09c40251d1f962?&"".(*printer).block? "".statictmp_104? "".statictmp_105?b?,type.*go/ast.BlockStmt?.autotmp_3?Tgclocals·3f21c6867b5746989e33cc656b56c60b?Tgclocals·5ed122a8e13d1d9544c3d9e271086630?"".isTypeName?"".stripParens?^type.noalg.struct { F uintptr; "".strip *bool }?("".stripParens.func1?go/ast.Inspect? &strip?Ttype.*struct { F uintptr; "".strip *bool }?px?Tgclocals·4ce382beddd135776ae9a650412110a3?Tgclocals·6cca622eecd301e0c8594123eee63a87?Tgclocals·c55e845a0a62e9baae6c740db5a20866?6"".(*printer).controlClause? "".statictmp_106? "".statictmp_107? "".statictmp_108? "".statictmp_111? "".statictmp_109? "".statictmp_110?isForStmt?init?post?.autotmp_8?Tgclocals·a6ae09e24a866ddc59545e3c884f0add?Tgclocals·17843c567e06c7269f54f8b44a952b2a?0"".(*printer).indentList?.autotmp_25?xb?Tgclocals·b496a55240db8137b580630d6f653f22?Tgclocals·e95a24d3d0124837746e70cc9dc58198?Hgo.itab.*go/ast.SendStmt,go/ast.Stmt? "".statictmp_118? "".statictmp_119? "".statictmp_120?Fgo.itab.*go/ast.ForStmt,go/ast.Stmt?Dgo.itab.*go/ast.GoStmt,go/ast.Stmt?Lgo.itab.*go/ast.BranchStmt,go/ast.Stmt? "".statictmp_131? "".statictmp_123? "".statictmp_124? "".statictmp_160?Lgo.itab.*go/ast.SelectStmt,go/ast.Stmt? "".statictmp_113? "".statictmp_114? "".statictmp_115? "".statictmp_116? "".statictmp_117? "".statictmp_156? "".statictmp_157? "".statictmp_158? "".statictmp_159?Fgo.itab.*go/ast.BadStmt,go/ast.Stmt? "".statictmp_112?Tgo.itab.*go/ast.TypeSwitchStmt,go/ast.Stmt?Lgo.itab.*go/ast.SwitchStmt,go/ast.Stmt? "".statictmp_146? "".statictmp_147? "".statictmp_150? "".statictmp_151? "".statictmp_148? "".statictmp_149?Jgo.itab.*go/ast.RangeStmt,go/ast.Stmt?Hgo.itab.*go/ast.DeclStmt,go/ast.Stmt?$"".(*printer).decl? "".statictmp_161? "".statictmp_162? "".statictmp_167? "".statictmp_168? "".statictmp_169? "".statictmp_165? "".statictmp_166? "".statictmp_163? "".statictmp_164?Lgo.itab.*go/ast.ReturnStmt,go/ast.Stmt?Lgo.itab.*go/ast.AssignStmt,go/ast.Stmt?0go/ast.(*AssignStmt).Pos? "".statictmp_121? "".statictmp_122?Lgo.itab.*go/ast.CommClause,go/ast.Stmt? "".statictmp_152? "".statictmp_153? "".statictmp_155? "".statictmp_154? "".statictmp_127? "".statictmp_128? "".statictmp_129? "".statictmp_130?Lgo.itab.*go/ast.IncDecStmt,go/ast.Stmt?Jgo.itab.*go/ast.BlockStmt,go/ast.Stmt?Hgo.itab.*go/ast.ExprStmt,go/ast.Stmt?Dgo.itab.*go/ast.IfStmt,go/ast.Stmt?Jgo.itab.*go/ast.DeferStmt,go/ast.Stmt?Lgo.itab.*go/ast.CaseClause,go/ast.Stmt? "".statictmp_142? "".statictmp_143? "".statictmp_145? "".statictmp_144? "".statictmp_125? "".statictmp_126? "".statictmp_132? "".statictmp_133? "".statictmp_134? "".statictmp_135? "".statictmp_136? "".statictmp_137? "".statictmp_138? "".statictmp_139? "".statictmp_140? "".statictmp_141? "".statictmp_170?stmt?.autotmp_89?.autotmp_73?.autotmp_55?.autotmp_45?.autotmp_68?.autotmp_69?.autotmp_70?.autotmp_81?.autotmp_84?.autotmp_97?.autotmp_210?body?s?*type.*go/ast.SendStmt?.type.*go/ast.SelectStmt?&type.*go/ast.GoStmt?0type.*go/ast.LabeledStmt?.type.*go/ast.CommClause?&type.*go/ast.IfStmt?.type.*go/ast.BranchStmt?.type.*go/ast.IncDecStmt?.type.*go/ast.SwitchStmt?.type.*go/ast.AssignStmt?,type.*go/ast.RangeStmt?6type.*go/ast.TypeSwitchStmt?(type.*go/ast.ForStmt?,type.*go/ast.DeferStmt?s·2?.type.*go/ast.ReturnStmt?.type.*go/ast.CaseClause?Tgclocals·ba05dda7136ff8efd0968ddb53914a38?Tgclocals·c21017e1ab34c8c0ca6ba19a01c436a1?.go/ast.(*EmptyStmt).Pos?0go/ast.(*ReturnStmt).Pos?0go/ast.(*CaseClause).Pos?""".keepTypeColumn?."".keepTypeColumn.func1?Jgo.itab.*go/ast.ValueSpec,go/ast.Spec?,type.*go/ast.ValueSpec?*runtime.panicdottypeI?
123 level?J"".(*printer).commentSizeBefore.func1?info?&type."".commentInfo?Tgclocals·293050a7d18503221b6a6bf63b09eaee?@"".(*printer).writeComment.func1?ldir?Tgclocals·7578f313ff9d15b1ec5bd5c7e7ab3d8c?"".init?"".initdone·?"runtime.throwinit?bytes.init?go/ast.init?go/token.init?strconv.init?strings.init?unicode.init?fmt.init?io.init?os.init?&text/tabwriter.init?2type..hash."".commentInfo?runtime.memhash?(type.*"".commentInfo?h?type.uintptr?.type..eq."".commentInfo?q?("".(*printer).fprint?Tgclocals·2c8da48da75b89364e7ff6f9955590d8?("".(*printer).Fprint?Tgclocals·198d6b095d0bab74d8eb788bf0743d92?2type..hash.[2]go/ast.Expr?"runtime.interhash?(type.*[2]go/ast.Expr?.type..eq.[2]go/ast.Expr?runtime.ifaceeq?4type..hash.[2]interface {}?(runtime.nilinterhash?*type.*[2]interface {}?0type..eq.[2]interface {}?runtime.efaceeq?4type..hash.[3]interface {}?*type.*[3]interface {}?0type..eq.[3]interface {}?4type..hash.[4]interface {}?*type.*[4]interface {}?0type..eq.[4]interface {}?4type..hash.[6]interface {}?*type.*[6]interface {}?0type..eq.[6]interface {}?Zgo.info.go/token.(*Position).IsValid$abstract?4go.info.*go/token.Position?4go.info."".nlimit$abstract?go.info.int?Fgo.info.strings.TrimSuffix$abstract?go.info.string?Dgo.info.strings.HasSuffix$abstract?Lgo.info.go/ast.(*Comment).Pos$abstract?.go.info.*go/ast.Comment?Dgo.info.strings.HasPrefix$abstract?Xgo.info."".(*printer).commentBefore$abstract?2go.info.go/token.Position?&go.info.*"".printer?<go.info."".mayCombine$abstract?go.info.bool?go.info.uint8?,go.info.go/token.Token?Vgo.info.go/token.token.Pos.IsValid$abstract?(go.info.go/token.Pos?`go.info.go/token.token.Token.Precedence$abstract?>go.info."".reduceDepth$abstract?8go.info."".isBinary$abstract?&go.info.go/ast.Expr?8go.info."".diffPrec$abstract?4go.info.*go/ast.BinaryExpr?Pgo.info.go/ast.(*BlockStmt).Pos$abstract?2go.info.*go/ast.BlockStmt?Hgo.info.bytes.(*Buffer).Len$abstract?*go.info.*bytes.Buffer?Lgo.info.bytes.(*Buffer).Bytes$abstract?Fgo.info."".(*printer).init$abstract?$go.info.*"".Config?2go.info.*go/token.FileSet?6go.info.map[go/ast.Node]int?Vgo.info.go/ast.(*CommentGroup).Pos$abstract?8go.info.*go/ast.CommentGroup?Vgo.info.go/ast.(*CommentGroup).End$abstract?Lgo.info.go/ast.(*Comment).End$abstract?Pgo.info.go/ast.(*EmptyStmt).Pos$abstract?2go.info.*go/ast.EmptyStmt?Rgo.info.go/ast.(*ReturnStmt).Pos$abstract?4go.info.*go/ast.ReturnStmt?Rgo.info.go/ast.(*CaseClause).Pos$abstract?4go.info.*go/ast.CaseClause?Lgo.info.go/ast.(*BadDecl).Pos$abstract?.go.info.*go/ast.BadDecl?Lgo.info.go/ast.(*GenDecl).Pos$abstract?.go.info.*go/ast.GenDecl?Pgo.info."".(*printer).linesFrom$abstract?Rgo.info."".(*printer).recordLine$abstract?go.info.*int?Hgo.info.go/ast.(*Ident).Pos$abstract?*go.info.*go/ast.Ident?Fgo.info.go/ast.(*File).Pos$abstract?(go.info.*go/ast.File?Rgo.info."".(*trimmer).resetSpace$abstract?&go.info.*"".trimmer?.go.info.go/ast.Expr.End?0go.range.go/ast.Expr.End?.go.info.go/ast.Expr.Pos?0go.range.go/ast.Expr.Pos?8go.info.go/ast.Expr.exprNode?:go.range.go/ast.Expr.exprNode?.go.info.go/ast.Stmt.End?&go.info.go/ast.Stmt?0go.range.go/ast.Stmt.End?.go.info.go/ast.Stmt.Pos?0go.range.go/ast.Stmt.Pos?8go.info.go/ast.Stmt.stmtNode?:go.range.go/ast.Stmt.stmtNode?.go.info.go/ast.Node.End?&go.info.go/ast.Node?0go.range.go/ast.Node.End?.go.info.go/ast.Node.Pos?0go.range.go/ast.Node.Pos?.go.info.go/ast.Spec.End?&go.info.go/ast.Spec?0go.range.go/ast.Spec.End?.go.info.go/ast.Spec.Pos?0go.range.go/ast.Spec.Pos?8go.info.go/ast.Spec.specNode?:go.range.go/ast.Spec.specNode?.go.info.io.Writer.Write?"go.info.io.Writer?go.info.error?go.info.[]uint8?0go.range.io.Writer.Write?.go.info.go/ast.Decl.End?&go.info.go/ast.Decl?0go.range.go/ast.Decl.End?.go.info.go/ast.Decl.Pos?0go.range.go/ast.Decl.Pos?8go.info.go/ast.Decl.declNode?:go.range.go/ast.Decl.declNode?0go.info.os.(*File).close? go.info.*os.File?2go.range.os.(*File).close?>go.info."".(*printer).linebreak?*go.info."".whiteSpace?@go.range."".(*printer).linebreak?Zgo.string."setComment found pending comments"?@go.info."".(*printer).setComment?Bgo.range."".(*printer).setComment?>go.info."".(*printer).identList?.go.info.[]*go/ast.Ident?@go.range."".(*printer).identList?<go.info."".(*printer).exprList?*go.info.[]go/ast.Expr?.go.info."".exprListMode?8go.info.*go/ast.KeyValueExpr?go.info.*uint8?>go.range."".(*printer).exprList?@go.info."".(*printer).parameters?2go.info.*go/ast.FieldList?*go.info.*go/ast.Field?Bgo.range."".(*printer).parameters?>go.info."".(*printer).signature?@go.range."".(*printer).signature?0go.info."".identListSize?2go.range."".identListSize?Pgo.info."".(*printer).isOneLineFieldList?.go.info.[]*go/ast.Field?Rgo.range."".(*printer).isOneLineFieldList?Hgo.info."".(*printer).setLineComment?Jgo.range."".(*printer).setLineComment?>go.info."".(*printer).fieldList?0go.info.*go/ast.FuncType?,go.info.**go/ast.Field?@go.range."".(*printer).fieldList?*go.info."".walkBinary?2go.info.*go/ast.UnaryExpr?,go.range."".walkBinary?"go.info."".cutoff?$go.range."".cutoff?&go.info."".diffPrec?(go.range."".diffPrec?,go.info."".reduceDepth?.go.range."".reduceDepth?@go.info."".(*printer).binaryExpr?Bgo.range."".(*printer).binaryExpr?&go.info."".isBinary?(go.range."".isBinary?&go.string."BadExpr"?,go.string."depth < 1:"?.go.string."unreachable"?6go.info."".(*printer).expr1?0go.info.*go/ast.Ellipsis?2go.info.*go/ast.ParenExpr?2go.info.*go/ast.ArrayType?.go.info.*go/ast.FuncLit?8go.info.*go/ast.CompositeLit?:go.info.*go/ast.InterfaceType?2go.info.*go/ast.IndexExpr?0go.info.*go/ast.ChanType?2go.info.*go/ast.SliceExpr?0go.info.*go/ast.CallExpr?4go.info.*go/ast.StructType?0go.info.*go/ast.StarExpr?<go.info.*go/ast.TypeAssertExpr?.go.info.*go/ast.MapType?8go.range."".(*printer).expr1?Tgo.info."".(*printer).possibleSelectorExpr?Vgo.range."".(*printer).possibleSelectorExpr?Dgo.info."".(*printer).selectorExpr?8go.info.*go/ast.SelectorExpr?Fgo.range."".(*printer).selectorExpr?6go.info."".(*printer).expr0?8go.range."".(*printer).expr0?4go.info."".(*printer).expr?6go.range."".(*printer).expr?<go.info."".(*printer).stmtList?*go.info.[]go/ast.Stmt?>go.range."".(*printer).stmtList?6go.info."".(*printer).block?8go.range."".(*printer).block?*go.info."".isTypeName?,go.range."" (…)
    [all...]

Completed in 1305 milliseconds

1 2