]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/inline/inl.go
cmd/compile: mark generated eq/hash functions as //go:noinline
[gostls13.git] / src / cmd / compile / internal / inline / inl.go
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4 //
5 // The inlining facility makes 2 passes: first CanInline determines which
6 // functions are suitable for inlining, and for those that are it
7 // saves a copy of the body. Then InlineCalls walks each function body to
8 // expand calls to inlinable functions.
9 //
10 // The Debug.l flag controls the aggressiveness. Note that main() swaps level 0 and 1,
11 // making 1 the default and -l disable. Additional levels (beyond -l) may be buggy and
12 // are not supported.
13 //      0: disabled
14 //      1: 80-nodes leaf functions, oneliners, panic, lazy typechecking (default)
15 //      2: (unassigned)
16 //      3: (unassigned)
17 //      4: allow non-leaf functions
18 //
19 // At some point this may get another default and become switch-offable with -N.
20 //
21 // The -d typcheckinl flag enables early typechecking of all imported bodies,
22 // which is useful to flush out bugs.
23 //
24 // The Debug.m flag enables diagnostic output.  a single -m is useful for verifying
25 // which calls get inlined or not, more is for debugging, and may go away at any point.
26
27 package inline
28
29 import (
30         "fmt"
31         "go/constant"
32         "sort"
33         "strconv"
34
35         "cmd/compile/internal/base"
36         "cmd/compile/internal/inline/inlheur"
37         "cmd/compile/internal/ir"
38         "cmd/compile/internal/logopt"
39         "cmd/compile/internal/pgo"
40         "cmd/compile/internal/typecheck"
41         "cmd/compile/internal/types"
42         "cmd/internal/obj"
43 )
44
45 // Inlining budget parameters, gathered in one place
46 const (
47         inlineMaxBudget       = 80
48         inlineExtraAppendCost = 0
49         // default is to inline if there's at most one call. -l=4 overrides this by using 1 instead.
50         inlineExtraCallCost  = 57              // 57 was benchmarked to provided most benefit with no bad surprises; see https://github.com/golang/go/issues/19348#issuecomment-439370742
51         inlineExtraPanicCost = 1               // do not penalize inlining panics.
52         inlineExtraThrowCost = inlineMaxBudget // with current (2018-05/1.11) code, inlining runtime.throw does not help.
53
54         inlineBigFunctionNodes   = 5000 // Functions with this many nodes are considered "big".
55         inlineBigFunctionMaxCost = 20   // Max cost of inlinee when inlining into a "big" function.
56 )
57
58 var (
59         // List of all hot callee nodes.
60         // TODO(prattmic): Make this non-global.
61         candHotCalleeMap = make(map[*pgo.IRNode]struct{})
62
63         // List of all hot call sites. CallSiteInfo.Callee is always nil.
64         // TODO(prattmic): Make this non-global.
65         candHotEdgeMap = make(map[pgo.CallSiteInfo]struct{})
66
67         // Threshold in percentage for hot callsite inlining.
68         inlineHotCallSiteThresholdPercent float64
69
70         // Threshold in CDF percentage for hot callsite inlining,
71         // that is, for a threshold of X the hottest callsites that
72         // make up the top X% of total edge weight will be
73         // considered hot for inlining candidates.
74         inlineCDFHotCallSiteThresholdPercent = float64(99)
75
76         // Budget increased due to hotness.
77         inlineHotMaxBudget int32 = 2000
78 )
79
80 // pgoInlinePrologue records the hot callsites from ir-graph.
81 func pgoInlinePrologue(p *pgo.Profile, funcs []*ir.Func) {
82         if base.Debug.PGOInlineCDFThreshold != "" {
83                 if s, err := strconv.ParseFloat(base.Debug.PGOInlineCDFThreshold, 64); err == nil && s >= 0 && s <= 100 {
84                         inlineCDFHotCallSiteThresholdPercent = s
85                 } else {
86                         base.Fatalf("invalid PGOInlineCDFThreshold, must be between 0 and 100")
87                 }
88         }
89         var hotCallsites []pgo.NodeMapKey
90         inlineHotCallSiteThresholdPercent, hotCallsites = hotNodesFromCDF(p)
91         if base.Debug.PGODebug > 0 {
92                 fmt.Printf("hot-callsite-thres-from-CDF=%v\n", inlineHotCallSiteThresholdPercent)
93         }
94
95         if x := base.Debug.PGOInlineBudget; x != 0 {
96                 inlineHotMaxBudget = int32(x)
97         }
98
99         for _, n := range hotCallsites {
100                 // mark inlineable callees from hot edges
101                 if callee := p.WeightedCG.IRNodes[n.CalleeName]; callee != nil {
102                         candHotCalleeMap[callee] = struct{}{}
103                 }
104                 // mark hot call sites
105                 if caller := p.WeightedCG.IRNodes[n.CallerName]; caller != nil && caller.AST != nil {
106                         csi := pgo.CallSiteInfo{LineOffset: n.CallSiteOffset, Caller: caller.AST}
107                         candHotEdgeMap[csi] = struct{}{}
108                 }
109         }
110
111         if base.Debug.PGODebug >= 3 {
112                 fmt.Printf("hot-cg before inline in dot format:")
113                 p.PrintWeightedCallGraphDOT(inlineHotCallSiteThresholdPercent)
114         }
115 }
116
117 // hotNodesFromCDF computes an edge weight threshold and the list of hot
118 // nodes that make up the given percentage of the CDF. The threshold, as
119 // a percent, is the lower bound of weight for nodes to be considered hot
120 // (currently only used in debug prints) (in case of equal weights,
121 // comparing with the threshold may not accurately reflect which nodes are
122 // considiered hot).
123 func hotNodesFromCDF(p *pgo.Profile) (float64, []pgo.NodeMapKey) {
124         nodes := make([]pgo.NodeMapKey, len(p.NodeMap))
125         i := 0
126         for n := range p.NodeMap {
127                 nodes[i] = n
128                 i++
129         }
130         sort.Slice(nodes, func(i, j int) bool {
131                 ni, nj := nodes[i], nodes[j]
132                 if wi, wj := p.NodeMap[ni].EWeight, p.NodeMap[nj].EWeight; wi != wj {
133                         return wi > wj // want larger weight first
134                 }
135                 // same weight, order by name/line number
136                 if ni.CallerName != nj.CallerName {
137                         return ni.CallerName < nj.CallerName
138                 }
139                 if ni.CalleeName != nj.CalleeName {
140                         return ni.CalleeName < nj.CalleeName
141                 }
142                 return ni.CallSiteOffset < nj.CallSiteOffset
143         })
144         cum := int64(0)
145         for i, n := range nodes {
146                 w := p.NodeMap[n].EWeight
147                 cum += w
148                 if pgo.WeightInPercentage(cum, p.TotalEdgeWeight) > inlineCDFHotCallSiteThresholdPercent {
149                         // nodes[:i+1] to include the very last node that makes it to go over the threshold.
150                         // (Say, if the CDF threshold is 50% and one hot node takes 60% of weight, we want to
151                         // include that node instead of excluding it.)
152                         return pgo.WeightInPercentage(w, p.TotalEdgeWeight), nodes[:i+1]
153                 }
154         }
155         return 0, nodes
156 }
157
158 // InlinePackage finds functions that can be inlined and clones them before walk expands them.
159 func InlinePackage(p *pgo.Profile) {
160         if base.Debug.PGOInline == 0 {
161                 p = nil
162         }
163
164         InlineDecls(p, typecheck.Target.Funcs, true)
165
166         // Perform a garbage collection of hidden closures functions that
167         // are no longer reachable from top-level functions following
168         // inlining. See #59404 and #59638 for more context.
169         garbageCollectUnreferencedHiddenClosures()
170
171         if base.Debug.DumpInlFuncProps != "" {
172                 inlheur.DumpFuncProps(nil, base.Debug.DumpInlFuncProps)
173         }
174 }
175
176 // InlineDecls applies inlining to the given batch of declarations.
177 func InlineDecls(p *pgo.Profile, funcs []*ir.Func, doInline bool) {
178         if p != nil {
179                 pgoInlinePrologue(p, funcs)
180         }
181
182         doCanInline := func(n *ir.Func, recursive bool, numfns int) {
183                 if !recursive || numfns > 1 {
184                         // We allow inlining if there is no
185                         // recursion, or the recursion cycle is
186                         // across more than one function.
187                         CanInline(n, p)
188                 } else {
189                         if base.Flag.LowerM > 1 && n.OClosure == nil {
190                                 fmt.Printf("%v: cannot inline %v: recursive\n", ir.Line(n), n.Nname)
191                         }
192                 }
193         }
194
195         ir.VisitFuncsBottomUp(funcs, func(list []*ir.Func, recursive bool) {
196                 numfns := numNonClosures(list)
197                 // We visit functions within an SCC in fairly arbitrary order,
198                 // so by computing inlinability for all functions in the SCC
199                 // before performing any inlining, the results are less
200                 // sensitive to the order within the SCC (see #58905 for an
201                 // example).
202
203                 // First compute inlinability for all functions in the SCC ...
204                 for _, n := range list {
205                         doCanInline(n, recursive, numfns)
206                 }
207                 // ... then make a second pass to do inlining of calls.
208                 if doInline {
209                         for _, n := range list {
210                                 InlineCalls(n, p)
211                         }
212                 }
213         })
214 }
215
216 // garbageCollectUnreferencedHiddenClosures makes a pass over all the
217 // top-level (non-hidden-closure) functions looking for nested closure
218 // functions that are reachable, then sweeps through the Target.Decls
219 // list and marks any non-reachable hidden closure function as dead.
220 // See issues #59404 and #59638 for more context.
221 func garbageCollectUnreferencedHiddenClosures() {
222
223         liveFuncs := make(map[*ir.Func]bool)
224
225         var markLiveFuncs func(fn *ir.Func)
226         markLiveFuncs = func(fn *ir.Func) {
227                 if liveFuncs[fn] {
228                         return
229                 }
230                 liveFuncs[fn] = true
231                 ir.Visit(fn, func(n ir.Node) {
232                         if clo, ok := n.(*ir.ClosureExpr); ok {
233                                 markLiveFuncs(clo.Func)
234                         }
235                 })
236         }
237
238         for i := 0; i < len(typecheck.Target.Funcs); i++ {
239                 fn := typecheck.Target.Funcs[i]
240                 if fn.IsHiddenClosure() {
241                         continue
242                 }
243                 markLiveFuncs(fn)
244         }
245
246         for i := 0; i < len(typecheck.Target.Funcs); i++ {
247                 fn := typecheck.Target.Funcs[i]
248                 if !fn.IsHiddenClosure() {
249                         continue
250                 }
251                 if fn.IsDeadcodeClosure() {
252                         continue
253                 }
254                 if liveFuncs[fn] {
255                         continue
256                 }
257                 fn.SetIsDeadcodeClosure(true)
258                 if base.Flag.LowerM > 2 {
259                         fmt.Printf("%v: unreferenced closure %v marked as dead\n", ir.Line(fn), fn)
260                 }
261                 if fn.Inl != nil && fn.LSym == nil {
262                         ir.InitLSym(fn, true)
263                 }
264         }
265 }
266
267 // inlineBudget determines the max budget for function 'fn' prior to
268 // analyzing the hairyness of the body of 'fn'. We pass in the pgo
269 // profile if available, which can change the budget. If 'verbose' is
270 // set, then print a remark where we boost the budget due to PGO.
271 func inlineBudget(fn *ir.Func, profile *pgo.Profile, verbose bool) int32 {
272         // Update the budget for profile-guided inlining.
273         budget := int32(inlineMaxBudget)
274         if profile != nil {
275                 if n, ok := profile.WeightedCG.IRNodes[ir.LinkFuncName(fn)]; ok {
276                         if _, ok := candHotCalleeMap[n]; ok {
277                                 budget = int32(inlineHotMaxBudget)
278                                 if verbose {
279                                         fmt.Printf("hot-node enabled increased budget=%v for func=%v\n", budget, ir.PkgFuncName(fn))
280                                 }
281                         }
282                 }
283         }
284         return budget
285 }
286
287 // CanInline determines whether fn is inlineable.
288 // If so, CanInline saves copies of fn.Body and fn.Dcl in fn.Inl.
289 // fn and fn.Body will already have been typechecked.
290 func CanInline(fn *ir.Func, profile *pgo.Profile) {
291         if fn.Nname == nil {
292                 base.Fatalf("CanInline no nname %+v", fn)
293         }
294
295         if base.Debug.DumpInlFuncProps != "" {
296                 defer inlheur.DumpFuncProps(fn, base.Debug.DumpInlFuncProps)
297         }
298
299         var reason string // reason, if any, that the function was not inlined
300         if base.Flag.LowerM > 1 || logopt.Enabled() {
301                 defer func() {
302                         if reason != "" {
303                                 if base.Flag.LowerM > 1 {
304                                         fmt.Printf("%v: cannot inline %v: %s\n", ir.Line(fn), fn.Nname, reason)
305                                 }
306                                 if logopt.Enabled() {
307                                         logopt.LogOpt(fn.Pos(), "cannotInlineFunction", "inline", ir.FuncName(fn), reason)
308                                 }
309                         }
310                 }()
311         }
312
313         reason = InlineImpossible(fn)
314         if reason != "" {
315                 return
316         }
317         if fn.Typecheck() == 0 {
318                 base.Fatalf("CanInline on non-typechecked function %v", fn)
319         }
320
321         n := fn.Nname
322         if n.Func.InlinabilityChecked() {
323                 return
324         }
325         defer n.Func.SetInlinabilityChecked(true)
326
327         cc := int32(inlineExtraCallCost)
328         if base.Flag.LowerL == 4 {
329                 cc = 1 // this appears to yield better performance than 0.
330         }
331
332         // Compute the inline budget for this function.
333         budget := inlineBudget(fn, profile, base.Debug.PGODebug > 0)
334
335         // At this point in the game the function we're looking at may
336         // have "stale" autos, vars that still appear in the Dcl list, but
337         // which no longer have any uses in the function body (due to
338         // elimination by deadcode). We'd like to exclude these dead vars
339         // when creating the "Inline.Dcl" field below; to accomplish this,
340         // the hairyVisitor below builds up a map of used/referenced
341         // locals, and we use this map to produce a pruned Inline.Dcl
342         // list. See issue 25249 for more context.
343
344         visitor := hairyVisitor{
345                 curFunc:       fn,
346                 budget:        budget,
347                 maxBudget:     budget,
348                 extraCallCost: cc,
349                 profile:       profile,
350         }
351         if visitor.tooHairy(fn) {
352                 reason = visitor.reason
353                 return
354         }
355
356         n.Func.Inl = &ir.Inline{
357                 Cost: budget - visitor.budget,
358                 Dcl:  pruneUnusedAutos(n.Defn.(*ir.Func).Dcl, &visitor),
359                 Body: inlcopylist(fn.Body),
360
361                 CanDelayResults: canDelayResults(fn),
362         }
363
364         if base.Flag.LowerM > 1 {
365                 fmt.Printf("%v: can inline %v with cost %d as: %v { %v }\n", ir.Line(fn), n, budget-visitor.budget, fn.Type(), ir.Nodes(n.Func.Inl.Body))
366         } else if base.Flag.LowerM != 0 {
367                 fmt.Printf("%v: can inline %v\n", ir.Line(fn), n)
368         }
369         if logopt.Enabled() {
370                 logopt.LogOpt(fn.Pos(), "canInlineFunction", "inline", ir.FuncName(fn), fmt.Sprintf("cost: %d", budget-visitor.budget))
371         }
372 }
373
374 // InlineImpossible returns a non-empty reason string if fn is impossible to
375 // inline regardless of cost or contents.
376 func InlineImpossible(fn *ir.Func) string {
377         var reason string // reason, if any, that the function can not be inlined.
378         if fn.Nname == nil {
379                 reason = "no name"
380                 return reason
381         }
382
383         // If marked "go:noinline", don't inline.
384         if fn.Pragma&ir.Noinline != 0 {
385                 reason = "marked go:noinline"
386                 return reason
387         }
388
389         // If marked "go:norace" and -race compilation, don't inline.
390         if base.Flag.Race && fn.Pragma&ir.Norace != 0 {
391                 reason = "marked go:norace with -race compilation"
392                 return reason
393         }
394
395         // If marked "go:nocheckptr" and -d checkptr compilation, don't inline.
396         if base.Debug.Checkptr != 0 && fn.Pragma&ir.NoCheckPtr != 0 {
397                 reason = "marked go:nocheckptr"
398                 return reason
399         }
400
401         // If marked "go:cgo_unsafe_args", don't inline, since the function
402         // makes assumptions about its argument frame layout.
403         if fn.Pragma&ir.CgoUnsafeArgs != 0 {
404                 reason = "marked go:cgo_unsafe_args"
405                 return reason
406         }
407
408         // If marked as "go:uintptrkeepalive", don't inline, since the keep
409         // alive information is lost during inlining.
410         //
411         // TODO(prattmic): This is handled on calls during escape analysis,
412         // which is after inlining. Move prior to inlining so the keep-alive is
413         // maintained after inlining.
414         if fn.Pragma&ir.UintptrKeepAlive != 0 {
415                 reason = "marked as having a keep-alive uintptr argument"
416                 return reason
417         }
418
419         // If marked as "go:uintptrescapes", don't inline, since the escape
420         // information is lost during inlining.
421         if fn.Pragma&ir.UintptrEscapes != 0 {
422                 reason = "marked as having an escaping uintptr argument"
423                 return reason
424         }
425
426         // The nowritebarrierrec checker currently works at function
427         // granularity, so inlining yeswritebarrierrec functions can confuse it
428         // (#22342). As a workaround, disallow inlining them for now.
429         if fn.Pragma&ir.Yeswritebarrierrec != 0 {
430                 reason = "marked go:yeswritebarrierrec"
431                 return reason
432         }
433
434         // If a local function has no fn.Body (is defined outside of Go), cannot inline it.
435         // Imported functions don't have fn.Body but might have inline body in fn.Inl.
436         if len(fn.Body) == 0 && !typecheck.HaveInlineBody(fn) {
437                 reason = "no function body"
438                 return reason
439         }
440
441         return ""
442 }
443
444 // canDelayResults reports whether inlined calls to fn can delay
445 // declaring the result parameter until the "return" statement.
446 func canDelayResults(fn *ir.Func) bool {
447         // We can delay declaring+initializing result parameters if:
448         // (1) there's exactly one "return" statement in the inlined function;
449         // (2) it's not an empty return statement (#44355); and
450         // (3) the result parameters aren't named.
451
452         nreturns := 0
453         ir.VisitList(fn.Body, func(n ir.Node) {
454                 if n, ok := n.(*ir.ReturnStmt); ok {
455                         nreturns++
456                         if len(n.Results) == 0 {
457                                 nreturns++ // empty return statement (case 2)
458                         }
459                 }
460         })
461
462         if nreturns != 1 {
463                 return false // not exactly one return statement (case 1)
464         }
465
466         // temporaries for return values.
467         for _, param := range fn.Type().Results().FieldSlice() {
468                 if sym := types.OrigSym(param.Sym); sym != nil && !sym.IsBlank() {
469                         return false // found a named result parameter (case 3)
470                 }
471         }
472
473         return true
474 }
475
476 // hairyVisitor visits a function body to determine its inlining
477 // hairiness and whether or not it can be inlined.
478 type hairyVisitor struct {
479         // This is needed to access the current caller in the doNode function.
480         curFunc       *ir.Func
481         budget        int32
482         maxBudget     int32
483         reason        string
484         extraCallCost int32
485         usedLocals    ir.NameSet
486         do            func(ir.Node) bool
487         profile       *pgo.Profile
488 }
489
490 func (v *hairyVisitor) tooHairy(fn *ir.Func) bool {
491         v.do = v.doNode // cache closure
492         if ir.DoChildren(fn, v.do) {
493                 return true
494         }
495         if v.budget < 0 {
496                 v.reason = fmt.Sprintf("function too complex: cost %d exceeds budget %d", v.maxBudget-v.budget, v.maxBudget)
497                 return true
498         }
499         return false
500 }
501
502 // doNode visits n and its children, updates the state in v, and returns true if
503 // n makes the current function too hairy for inlining.
504 func (v *hairyVisitor) doNode(n ir.Node) bool {
505         if n == nil {
506                 return false
507         }
508         switch n.Op() {
509         // Call is okay if inlinable and we have the budget for the body.
510         case ir.OCALLFUNC:
511                 n := n.(*ir.CallExpr)
512                 // Functions that call runtime.getcaller{pc,sp} can not be inlined
513                 // because getcaller{pc,sp} expect a pointer to the caller's first argument.
514                 //
515                 // runtime.throw is a "cheap call" like panic in normal code.
516                 var cheap bool
517                 if n.X.Op() == ir.ONAME {
518                         name := n.X.(*ir.Name)
519                         if name.Class == ir.PFUNC && types.IsRuntimePkg(name.Sym().Pkg) {
520                                 fn := name.Sym().Name
521                                 if fn == "getcallerpc" || fn == "getcallersp" {
522                                         v.reason = "call to " + fn
523                                         return true
524                                 }
525                                 if fn == "throw" {
526                                         v.budget -= inlineExtraThrowCost
527                                         break
528                                 }
529                         }
530                         // Special case for reflect.noescpae. It does just type
531                         // conversions to appease the escape analysis, and doesn't
532                         // generate code.
533                         if name.Class == ir.PFUNC && types.IsReflectPkg(name.Sym().Pkg) {
534                                 if name.Sym().Name == "noescape" {
535                                         cheap = true
536                                 }
537                         }
538                         // Special case for coverage counter updates; although
539                         // these correspond to real operations, we treat them as
540                         // zero cost for the moment. This is due to the existence
541                         // of tests that are sensitive to inlining-- if the
542                         // insertion of coverage instrumentation happens to tip a
543                         // given function over the threshold and move it from
544                         // "inlinable" to "not-inlinable", this can cause changes
545                         // in allocation behavior, which can then result in test
546                         // failures (a good example is the TestAllocations in
547                         // crypto/ed25519).
548                         if isAtomicCoverageCounterUpdate(n) {
549                                 return false
550                         }
551                 }
552                 if n.X.Op() == ir.OMETHEXPR {
553                         if meth := ir.MethodExprName(n.X); meth != nil {
554                                 if fn := meth.Func; fn != nil {
555                                         s := fn.Sym()
556                                         if types.IsRuntimePkg(s.Pkg) && s.Name == "heapBits.nextArena" {
557                                                 // Special case: explicitly allow mid-stack inlining of
558                                                 // runtime.heapBits.next even though it calls slow-path
559                                                 // runtime.heapBits.nextArena.
560                                                 cheap = true
561                                         }
562                                         // Special case: on architectures that can do unaligned loads,
563                                         // explicitly mark encoding/binary methods as cheap,
564                                         // because in practice they are, even though our inlining
565                                         // budgeting system does not see that. See issue 42958.
566                                         if base.Ctxt.Arch.CanMergeLoads && s.Pkg.Path == "encoding/binary" {
567                                                 switch s.Name {
568                                                 case "littleEndian.Uint64", "littleEndian.Uint32", "littleEndian.Uint16",
569                                                         "bigEndian.Uint64", "bigEndian.Uint32", "bigEndian.Uint16",
570                                                         "littleEndian.PutUint64", "littleEndian.PutUint32", "littleEndian.PutUint16",
571                                                         "bigEndian.PutUint64", "bigEndian.PutUint32", "bigEndian.PutUint16",
572                                                         "littleEndian.AppendUint64", "littleEndian.AppendUint32", "littleEndian.AppendUint16",
573                                                         "bigEndian.AppendUint64", "bigEndian.AppendUint32", "bigEndian.AppendUint16":
574                                                         cheap = true
575                                                 }
576                                         }
577                                 }
578                         }
579                 }
580                 if cheap {
581                         break // treat like any other node, that is, cost of 1
582                 }
583
584                 // Determine if the callee edge is for an inlinable hot callee or not.
585                 if v.profile != nil && v.curFunc != nil {
586                         if fn := inlCallee(n.X, v.profile); fn != nil && typecheck.HaveInlineBody(fn) {
587                                 lineOffset := pgo.NodeLineOffset(n, fn)
588                                 csi := pgo.CallSiteInfo{LineOffset: lineOffset, Caller: v.curFunc}
589                                 if _, o := candHotEdgeMap[csi]; o {
590                                         if base.Debug.PGODebug > 0 {
591                                                 fmt.Printf("hot-callsite identified at line=%v for func=%v\n", ir.Line(n), ir.PkgFuncName(v.curFunc))
592                                         }
593                                 }
594                         }
595                 }
596
597                 if ir.IsIntrinsicCall(n) {
598                         // Treat like any other node.
599                         break
600                 }
601
602                 if fn := inlCallee(n.X, v.profile); fn != nil && typecheck.HaveInlineBody(fn) {
603                         v.budget -= fn.Inl.Cost
604                         break
605                 }
606
607                 // Call cost for non-leaf inlining.
608                 v.budget -= v.extraCallCost
609
610         case ir.OCALLMETH:
611                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
612
613         // Things that are too hairy, irrespective of the budget
614         case ir.OCALL, ir.OCALLINTER:
615                 // Call cost for non-leaf inlining.
616                 v.budget -= v.extraCallCost
617
618         case ir.OPANIC:
619                 n := n.(*ir.UnaryExpr)
620                 if n.X.Op() == ir.OCONVIFACE && n.X.(*ir.ConvExpr).Implicit() {
621                         // Hack to keep reflect.flag.mustBe inlinable for TestIntendedInlining.
622                         // Before CL 284412, these conversions were introduced later in the
623                         // compiler, so they didn't count against inlining budget.
624                         v.budget++
625                 }
626                 v.budget -= inlineExtraPanicCost
627
628         case ir.ORECOVER:
629                 // recover matches the argument frame pointer to find
630                 // the right panic value, so it needs an argument frame.
631                 v.reason = "call to recover"
632                 return true
633
634         case ir.OCLOSURE:
635                 if base.Debug.InlFuncsWithClosures == 0 {
636                         v.reason = "not inlining functions with closures"
637                         return true
638                 }
639
640                 // TODO(danscales): Maybe make budget proportional to number of closure
641                 // variables, e.g.:
642                 //v.budget -= int32(len(n.(*ir.ClosureExpr).Func.ClosureVars) * 3)
643                 // TODO(austin): However, if we're able to inline this closure into
644                 // v.curFunc, then we actually pay nothing for the closure captures. We
645                 // should try to account for that if we're going to account for captures.
646                 v.budget -= 15
647
648         case ir.OGO,
649                 ir.ODEFER,
650                 ir.ODCLTYPE, // can't print yet
651                 ir.OTAILCALL:
652                 v.reason = "unhandled op " + n.Op().String()
653                 return true
654
655         case ir.OAPPEND:
656                 v.budget -= inlineExtraAppendCost
657
658         case ir.OADDR:
659                 n := n.(*ir.AddrExpr)
660                 // Make "&s.f" cost 0 when f's offset is zero.
661                 if dot, ok := n.X.(*ir.SelectorExpr); ok && (dot.Op() == ir.ODOT || dot.Op() == ir.ODOTPTR) {
662                         if _, ok := dot.X.(*ir.Name); ok && dot.Selection.Offset == 0 {
663                                 v.budget += 2 // undo ir.OADDR+ir.ODOT/ir.ODOTPTR
664                         }
665                 }
666
667         case ir.ODEREF:
668                 // *(*X)(unsafe.Pointer(&x)) is low-cost
669                 n := n.(*ir.StarExpr)
670
671                 ptr := n.X
672                 for ptr.Op() == ir.OCONVNOP {
673                         ptr = ptr.(*ir.ConvExpr).X
674                 }
675                 if ptr.Op() == ir.OADDR {
676                         v.budget += 1 // undo half of default cost of ir.ODEREF+ir.OADDR
677                 }
678
679         case ir.OCONVNOP:
680                 // This doesn't produce code, but the children might.
681                 v.budget++ // undo default cost
682
683         case ir.ODCLCONST, ir.OFALL, ir.OTYPE:
684                 // These nodes don't produce code; omit from inlining budget.
685                 return false
686
687         case ir.OIF:
688                 n := n.(*ir.IfStmt)
689                 if ir.IsConst(n.Cond, constant.Bool) {
690                         // This if and the condition cost nothing.
691                         if doList(n.Init(), v.do) {
692                                 return true
693                         }
694                         if ir.BoolVal(n.Cond) {
695                                 return doList(n.Body, v.do)
696                         } else {
697                                 return doList(n.Else, v.do)
698                         }
699                 }
700
701         case ir.ONAME:
702                 n := n.(*ir.Name)
703                 if n.Class == ir.PAUTO {
704                         v.usedLocals.Add(n)
705                 }
706
707         case ir.OBLOCK:
708                 // The only OBLOCK we should see at this point is an empty one.
709                 // In any event, let the visitList(n.List()) below take care of the statements,
710                 // and don't charge for the OBLOCK itself. The ++ undoes the -- below.
711                 v.budget++
712
713         case ir.OMETHVALUE, ir.OSLICELIT:
714                 v.budget-- // Hack for toolstash -cmp.
715
716         case ir.OMETHEXPR:
717                 v.budget++ // Hack for toolstash -cmp.
718
719         case ir.OAS2:
720                 n := n.(*ir.AssignListStmt)
721
722                 // Unified IR unconditionally rewrites:
723                 //
724                 //      a, b = f()
725                 //
726                 // into:
727                 //
728                 //      DCL tmp1
729                 //      DCL tmp2
730                 //      tmp1, tmp2 = f()
731                 //      a, b = tmp1, tmp2
732                 //
733                 // so that it can insert implicit conversions as necessary. To
734                 // minimize impact to the existing inlining heuristics (in
735                 // particular, to avoid breaking the existing inlinability regress
736                 // tests), we need to compensate for this here.
737                 //
738                 // See also identical logic in isBigFunc.
739                 if init := n.Rhs[0].Init(); len(init) == 1 {
740                         if _, ok := init[0].(*ir.AssignListStmt); ok {
741                                 // 4 for each value, because each temporary variable now
742                                 // appears 3 times (DCL, LHS, RHS), plus an extra DCL node.
743                                 //
744                                 // 1 for the extra "tmp1, tmp2 = f()" assignment statement.
745                                 v.budget += 4*int32(len(n.Lhs)) + 1
746                         }
747                 }
748
749         case ir.OAS:
750                 // Special case for coverage counter updates and coverage
751                 // function registrations. Although these correspond to real
752                 // operations, we treat them as zero cost for the moment. This
753                 // is primarily due to the existence of tests that are
754                 // sensitive to inlining-- if the insertion of coverage
755                 // instrumentation happens to tip a given function over the
756                 // threshold and move it from "inlinable" to "not-inlinable",
757                 // this can cause changes in allocation behavior, which can
758                 // then result in test failures (a good example is the
759                 // TestAllocations in crypto/ed25519).
760                 n := n.(*ir.AssignStmt)
761                 if n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {
762                         return false
763                 }
764         }
765
766         v.budget--
767
768         // When debugging, don't stop early, to get full cost of inlining this function
769         if v.budget < 0 && base.Flag.LowerM < 2 && !logopt.Enabled() {
770                 v.reason = "too expensive"
771                 return true
772         }
773
774         return ir.DoChildren(n, v.do)
775 }
776
777 func isBigFunc(fn *ir.Func) bool {
778         budget := inlineBigFunctionNodes
779         return ir.Any(fn, func(n ir.Node) bool {
780                 // See logic in hairyVisitor.doNode, explaining unified IR's
781                 // handling of "a, b = f()" assignments.
782                 if n, ok := n.(*ir.AssignListStmt); ok && n.Op() == ir.OAS2 {
783                         if init := n.Rhs[0].Init(); len(init) == 1 {
784                                 if _, ok := init[0].(*ir.AssignListStmt); ok {
785                                         budget += 4*len(n.Lhs) + 1
786                                 }
787                         }
788                 }
789
790                 budget--
791                 return budget <= 0
792         })
793 }
794
795 // inlcopylist (together with inlcopy) recursively copies a list of nodes, except
796 // that it keeps the same ONAME, OTYPE, and OLITERAL nodes. It is used for copying
797 // the body and dcls of an inlineable function.
798 func inlcopylist(ll []ir.Node) []ir.Node {
799         s := make([]ir.Node, len(ll))
800         for i, n := range ll {
801                 s[i] = inlcopy(n)
802         }
803         return s
804 }
805
806 // inlcopy is like DeepCopy(), but does extra work to copy closures.
807 func inlcopy(n ir.Node) ir.Node {
808         var edit func(ir.Node) ir.Node
809         edit = func(x ir.Node) ir.Node {
810                 switch x.Op() {
811                 case ir.ONAME, ir.OTYPE, ir.OLITERAL, ir.ONIL:
812                         return x
813                 }
814                 m := ir.Copy(x)
815                 ir.EditChildren(m, edit)
816                 if x.Op() == ir.OCLOSURE {
817                         x := x.(*ir.ClosureExpr)
818                         // Need to save/duplicate x.Func.Nname,
819                         // x.Func.Nname.Ntype, x.Func.Dcl, x.Func.ClosureVars, and
820                         // x.Func.Body for iexport and local inlining.
821                         oldfn := x.Func
822                         newfn := ir.NewFunc(oldfn.Pos())
823                         m.(*ir.ClosureExpr).Func = newfn
824                         newfn.Nname = ir.NewNameAt(oldfn.Nname.Pos(), oldfn.Nname.Sym())
825                         // XXX OK to share fn.Type() ??
826                         newfn.Nname.SetType(oldfn.Nname.Type())
827                         newfn.Body = inlcopylist(oldfn.Body)
828                         // Make shallow copy of the Dcl and ClosureVar slices
829                         newfn.Dcl = append([]*ir.Name(nil), oldfn.Dcl...)
830                         newfn.ClosureVars = append([]*ir.Name(nil), oldfn.ClosureVars...)
831                 }
832                 return m
833         }
834         return edit(n)
835 }
836
837 // InlineCalls/inlnode walks fn's statements and expressions and substitutes any
838 // calls made to inlineable functions. This is the external entry point.
839 func InlineCalls(fn *ir.Func, profile *pgo.Profile) {
840         savefn := ir.CurFunc
841         ir.CurFunc = fn
842         bigCaller := isBigFunc(fn)
843         if bigCaller && base.Flag.LowerM > 1 {
844                 fmt.Printf("%v: function %v considered 'big'; reducing max cost of inlinees\n", ir.Line(fn), fn)
845         }
846         var inlCalls []*ir.InlinedCallExpr
847         var edit func(ir.Node) ir.Node
848         edit = func(n ir.Node) ir.Node {
849                 return inlnode(n, bigCaller, &inlCalls, edit, profile)
850         }
851         ir.EditChildren(fn, edit)
852
853         // If we inlined any calls, we want to recursively visit their
854         // bodies for further inlining. However, we need to wait until
855         // *after* the original function body has been expanded, or else
856         // inlCallee can have false positives (e.g., #54632).
857         for len(inlCalls) > 0 {
858                 call := inlCalls[0]
859                 inlCalls = inlCalls[1:]
860                 ir.EditChildren(call, edit)
861         }
862
863         ir.CurFunc = savefn
864 }
865
866 // inlnode recurses over the tree to find inlineable calls, which will
867 // be turned into OINLCALLs by mkinlcall. When the recursion comes
868 // back up will examine left, right, list, rlist, ninit, ntest, nincr,
869 // nbody and nelse and use one of the 4 inlconv/glue functions above
870 // to turn the OINLCALL into an expression, a statement, or patch it
871 // in to this nodes list or rlist as appropriate.
872 // NOTE it makes no sense to pass the glue functions down the
873 // recursion to the level where the OINLCALL gets created because they
874 // have to edit /this/ n, so you'd have to push that one down as well,
875 // but then you may as well do it here.  so this is cleaner and
876 // shorter and less complicated.
877 // The result of inlnode MUST be assigned back to n, e.g.
878 //
879 //      n.Left = inlnode(n.Left)
880 func inlnode(n ir.Node, bigCaller bool, inlCalls *[]*ir.InlinedCallExpr, edit func(ir.Node) ir.Node, profile *pgo.Profile) ir.Node {
881         if n == nil {
882                 return n
883         }
884
885         switch n.Op() {
886         case ir.ODEFER, ir.OGO:
887                 n := n.(*ir.GoDeferStmt)
888                 switch call := n.Call; call.Op() {
889                 case ir.OCALLMETH:
890                         base.FatalfAt(call.Pos(), "OCALLMETH missed by typecheck")
891                 case ir.OCALLFUNC:
892                         call := call.(*ir.CallExpr)
893                         call.NoInline = true
894                 }
895         case ir.OTAILCALL:
896                 n := n.(*ir.TailCallStmt)
897                 n.Call.NoInline = true // Not inline a tail call for now. Maybe we could inline it just like RETURN fn(arg)?
898
899         // TODO do them here (or earlier),
900         // so escape analysis can avoid more heapmoves.
901         case ir.OCLOSURE:
902                 return n
903         case ir.OCALLMETH:
904                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
905         case ir.OCALLFUNC:
906                 n := n.(*ir.CallExpr)
907                 if n.X.Op() == ir.OMETHEXPR {
908                         // Prevent inlining some reflect.Value methods when using checkptr,
909                         // even when package reflect was compiled without it (#35073).
910                         if meth := ir.MethodExprName(n.X); meth != nil {
911                                 s := meth.Sym()
912                                 if base.Debug.Checkptr != 0 && types.IsReflectPkg(s.Pkg) && (s.Name == "Value.UnsafeAddr" || s.Name == "Value.Pointer") {
913                                         return n
914                                 }
915                         }
916                 }
917         }
918
919         lno := ir.SetPos(n)
920
921         ir.EditChildren(n, edit)
922
923         // with all the branches out of the way, it is now time to
924         // transmogrify this node itself unless inhibited by the
925         // switch at the top of this function.
926         switch n.Op() {
927         case ir.OCALLMETH:
928                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
929
930         case ir.OCALLFUNC:
931                 call := n.(*ir.CallExpr)
932                 if call.NoInline {
933                         break
934                 }
935                 if base.Flag.LowerM > 3 {
936                         fmt.Printf("%v:call to func %+v\n", ir.Line(n), call.X)
937                 }
938                 if ir.IsIntrinsicCall(call) {
939                         break
940                 }
941                 if fn := inlCallee(call.X, profile); fn != nil && typecheck.HaveInlineBody(fn) {
942                         n = mkinlcall(call, fn, bigCaller, inlCalls)
943                 }
944         }
945
946         base.Pos = lno
947
948         return n
949 }
950
951 // inlCallee takes a function-typed expression and returns the underlying function ONAME
952 // that it refers to if statically known. Otherwise, it returns nil.
953 func inlCallee(fn ir.Node, profile *pgo.Profile) *ir.Func {
954         fn = ir.StaticValue(fn)
955         switch fn.Op() {
956         case ir.OMETHEXPR:
957                 fn := fn.(*ir.SelectorExpr)
958                 n := ir.MethodExprName(fn)
959                 // Check that receiver type matches fn.X.
960                 // TODO(mdempsky): Handle implicit dereference
961                 // of pointer receiver argument?
962                 if n == nil || !types.Identical(n.Type().Recv().Type, fn.X.Type()) {
963                         return nil
964                 }
965                 return n.Func
966         case ir.ONAME:
967                 fn := fn.(*ir.Name)
968                 if fn.Class == ir.PFUNC {
969                         return fn.Func
970                 }
971         case ir.OCLOSURE:
972                 fn := fn.(*ir.ClosureExpr)
973                 c := fn.Func
974                 CanInline(c, profile)
975                 return c
976         }
977         return nil
978 }
979
980 var inlgen int
981
982 // SSADumpInline gives the SSA back end a chance to dump the function
983 // when producing output for debugging the compiler itself.
984 var SSADumpInline = func(*ir.Func) {}
985
986 // InlineCall allows the inliner implementation to be overridden.
987 // If it returns nil, the function will not be inlined.
988 var InlineCall = func(call *ir.CallExpr, fn *ir.Func, inlIndex int) *ir.InlinedCallExpr {
989         base.Fatalf("inline.InlineCall not overridden")
990         panic("unreachable")
991 }
992
993 // inlineCostOK returns true if call n from caller to callee is cheap enough to
994 // inline. bigCaller indicates that caller is a big function.
995 //
996 // If inlineCostOK returns false, it also returns the max cost that the callee
997 // exceeded.
998 func inlineCostOK(n *ir.CallExpr, caller, callee *ir.Func, bigCaller bool) (bool, int32) {
999         maxCost := int32(inlineMaxBudget)
1000         if bigCaller {
1001                 // We use this to restrict inlining into very big functions.
1002                 // See issue 26546 and 17566.
1003                 maxCost = inlineBigFunctionMaxCost
1004         }
1005
1006         if callee.Inl.Cost <= maxCost {
1007                 // Simple case. Function is already cheap enough.
1008                 return true, 0
1009         }
1010
1011         // We'll also allow inlining of hot functions below inlineHotMaxBudget,
1012         // but only in small functions.
1013
1014         lineOffset := pgo.NodeLineOffset(n, caller)
1015         csi := pgo.CallSiteInfo{LineOffset: lineOffset, Caller: caller}
1016         if _, ok := candHotEdgeMap[csi]; !ok {
1017                 // Cold
1018                 return false, maxCost
1019         }
1020
1021         // Hot
1022
1023         if bigCaller {
1024                 if base.Debug.PGODebug > 0 {
1025                         fmt.Printf("hot-big check disallows inlining for call %s (cost %d) at %v in big function %s\n", ir.PkgFuncName(callee), callee.Inl.Cost, ir.Line(n), ir.PkgFuncName(caller))
1026                 }
1027                 return false, maxCost
1028         }
1029
1030         if callee.Inl.Cost > inlineHotMaxBudget {
1031                 return false, inlineHotMaxBudget
1032         }
1033
1034         if base.Debug.PGODebug > 0 {
1035                 fmt.Printf("hot-budget check allows inlining for call %s (cost %d) at %v in function %s\n", ir.PkgFuncName(callee), callee.Inl.Cost, ir.Line(n), ir.PkgFuncName(caller))
1036         }
1037
1038         return true, 0
1039 }
1040
1041 // If n is a OCALLFUNC node, and fn is an ONAME node for a
1042 // function with an inlinable body, return an OINLCALL node that can replace n.
1043 // The returned node's Ninit has the parameter assignments, the Nbody is the
1044 // inlined function body, and (List, Rlist) contain the (input, output)
1045 // parameters.
1046 // The result of mkinlcall MUST be assigned back to n, e.g.
1047 //
1048 //      n.Left = mkinlcall(n.Left, fn, isddd)
1049 func mkinlcall(n *ir.CallExpr, fn *ir.Func, bigCaller bool, inlCalls *[]*ir.InlinedCallExpr) ir.Node {
1050         if fn.Inl == nil {
1051                 if logopt.Enabled() {
1052                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", ir.FuncName(ir.CurFunc),
1053                                 fmt.Sprintf("%s cannot be inlined", ir.PkgFuncName(fn)))
1054                 }
1055                 return n
1056         }
1057
1058         if ok, maxCost := inlineCostOK(n, ir.CurFunc, fn, bigCaller); !ok {
1059                 if logopt.Enabled() {
1060                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", ir.FuncName(ir.CurFunc),
1061                                 fmt.Sprintf("cost %d of %s exceeds max caller cost %d", fn.Inl.Cost, ir.PkgFuncName(fn), maxCost))
1062                 }
1063                 return n
1064         }
1065
1066         if fn == ir.CurFunc {
1067                 // Can't recursively inline a function into itself.
1068                 if logopt.Enabled() {
1069                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", fmt.Sprintf("recursive call to %s", ir.FuncName(ir.CurFunc)))
1070                 }
1071                 return n
1072         }
1073
1074         if base.Flag.Cfg.Instrumenting && types.IsNoInstrumentPkg(fn.Sym().Pkg) {
1075                 // Runtime package must not be instrumented.
1076                 // Instrument skips runtime package. However, some runtime code can be
1077                 // inlined into other packages and instrumented there. To avoid this,
1078                 // we disable inlining of runtime functions when instrumenting.
1079                 // The example that we observed is inlining of LockOSThread,
1080                 // which lead to false race reports on m contents.
1081                 return n
1082         }
1083         if base.Flag.Race && types.IsNoRacePkg(fn.Sym().Pkg) {
1084                 return n
1085         }
1086
1087         parent := base.Ctxt.PosTable.Pos(n.Pos()).Base().InliningIndex()
1088         sym := fn.Linksym()
1089
1090         // Check if we've already inlined this function at this particular
1091         // call site, in order to stop inlining when we reach the beginning
1092         // of a recursion cycle again. We don't inline immediately recursive
1093         // functions, but allow inlining if there is a recursion cycle of
1094         // many functions. Most likely, the inlining will stop before we
1095         // even hit the beginning of the cycle again, but this catches the
1096         // unusual case.
1097         for inlIndex := parent; inlIndex >= 0; inlIndex = base.Ctxt.InlTree.Parent(inlIndex) {
1098                 if base.Ctxt.InlTree.InlinedFunction(inlIndex) == sym {
1099                         if base.Flag.LowerM > 1 {
1100                                 fmt.Printf("%v: cannot inline %v into %v: repeated recursive cycle\n", ir.Line(n), fn, ir.FuncName(ir.CurFunc))
1101                         }
1102                         return n
1103                 }
1104         }
1105
1106         typecheck.AssertFixedCall(n)
1107
1108         inlIndex := base.Ctxt.InlTree.Add(parent, n.Pos(), sym, ir.FuncName(fn))
1109
1110         closureInitLSym := func(n *ir.CallExpr, fn *ir.Func) {
1111                 // The linker needs FuncInfo metadata for all inlined
1112                 // functions. This is typically handled by gc.enqueueFunc
1113                 // calling ir.InitLSym for all function declarations in
1114                 // typecheck.Target.Decls (ir.UseClosure adds all closures to
1115                 // Decls).
1116                 //
1117                 // However, non-trivial closures in Decls are ignored, and are
1118                 // insteaded enqueued when walk of the calling function
1119                 // discovers them.
1120                 //
1121                 // This presents a problem for direct calls to closures.
1122                 // Inlining will replace the entire closure definition with its
1123                 // body, which hides the closure from walk and thus suppresses
1124                 // symbol creation.
1125                 //
1126                 // Explicitly create a symbol early in this edge case to ensure
1127                 // we keep this metadata.
1128                 //
1129                 // TODO: Refactor to keep a reference so this can all be done
1130                 // by enqueueFunc.
1131
1132                 if n.Op() != ir.OCALLFUNC {
1133                         // Not a standard call.
1134                         return
1135                 }
1136                 if n.X.Op() != ir.OCLOSURE {
1137                         // Not a direct closure call.
1138                         return
1139                 }
1140
1141                 clo := n.X.(*ir.ClosureExpr)
1142                 if ir.IsTrivialClosure(clo) {
1143                         // enqueueFunc will handle trivial closures anyways.
1144                         return
1145                 }
1146
1147                 ir.InitLSym(fn, true)
1148         }
1149
1150         closureInitLSym(n, fn)
1151
1152         if base.Flag.GenDwarfInl > 0 {
1153                 if !sym.WasInlined() {
1154                         base.Ctxt.DwFixups.SetPrecursorFunc(sym, fn)
1155                         sym.Set(obj.AttrWasInlined, true)
1156                 }
1157         }
1158
1159         if base.Flag.LowerM != 0 {
1160                 fmt.Printf("%v: inlining call to %v\n", ir.Line(n), fn)
1161         }
1162         if base.Flag.LowerM > 2 {
1163                 fmt.Printf("%v: Before inlining: %+v\n", ir.Line(n), n)
1164         }
1165
1166         res := InlineCall(n, fn, inlIndex)
1167
1168         if res == nil {
1169                 base.FatalfAt(n.Pos(), "inlining call to %v failed", fn)
1170         }
1171
1172         if base.Flag.LowerM > 2 {
1173                 fmt.Printf("%v: After inlining %+v\n\n", ir.Line(res), res)
1174         }
1175
1176         *inlCalls = append(*inlCalls, res)
1177
1178         return res
1179 }
1180
1181 // CalleeEffects appends any side effects from evaluating callee to init.
1182 func CalleeEffects(init *ir.Nodes, callee ir.Node) {
1183         for {
1184                 init.Append(ir.TakeInit(callee)...)
1185
1186                 switch callee.Op() {
1187                 case ir.ONAME, ir.OCLOSURE, ir.OMETHEXPR:
1188                         return // done
1189
1190                 case ir.OCONVNOP:
1191                         conv := callee.(*ir.ConvExpr)
1192                         callee = conv.X
1193
1194                 case ir.OINLCALL:
1195                         ic := callee.(*ir.InlinedCallExpr)
1196                         init.Append(ic.Body.Take()...)
1197                         callee = ic.SingleResult()
1198
1199                 default:
1200                         base.FatalfAt(callee.Pos(), "unexpected callee expression: %v", callee)
1201                 }
1202         }
1203 }
1204
1205 func pruneUnusedAutos(ll []*ir.Name, vis *hairyVisitor) []*ir.Name {
1206         s := make([]*ir.Name, 0, len(ll))
1207         for _, n := range ll {
1208                 if n.Class == ir.PAUTO {
1209                         if !vis.usedLocals.Has(n) {
1210                                 continue
1211                         }
1212                 }
1213                 s = append(s, n)
1214         }
1215         return s
1216 }
1217
1218 // numNonClosures returns the number of functions in list which are not closures.
1219 func numNonClosures(list []*ir.Func) int {
1220         count := 0
1221         for _, fn := range list {
1222                 if fn.OClosure == nil {
1223                         count++
1224                 }
1225         }
1226         return count
1227 }
1228
1229 func doList(list []ir.Node, do func(ir.Node) bool) bool {
1230         for _, x := range list {
1231                 if x != nil {
1232                         if do(x) {
1233                                 return true
1234                         }
1235                 }
1236         }
1237         return false
1238 }
1239
1240 // isIndexingCoverageCounter returns true if the specified node 'n' is indexing
1241 // into a coverage counter array.
1242 func isIndexingCoverageCounter(n ir.Node) bool {
1243         if n.Op() != ir.OINDEX {
1244                 return false
1245         }
1246         ixn := n.(*ir.IndexExpr)
1247         if ixn.X.Op() != ir.ONAME || !ixn.X.Type().IsArray() {
1248                 return false
1249         }
1250         nn := ixn.X.(*ir.Name)
1251         return nn.CoverageCounter()
1252 }
1253
1254 // isAtomicCoverageCounterUpdate examines the specified node to
1255 // determine whether it represents a call to sync/atomic.AddUint32 to
1256 // increment a coverage counter.
1257 func isAtomicCoverageCounterUpdate(cn *ir.CallExpr) bool {
1258         if cn.X.Op() != ir.ONAME {
1259                 return false
1260         }
1261         name := cn.X.(*ir.Name)
1262         if name.Class != ir.PFUNC {
1263                 return false
1264         }
1265         fn := name.Sym().Name
1266         if name.Sym().Pkg.Path != "sync/atomic" ||
1267                 (fn != "AddUint32" && fn != "StoreUint32") {
1268                 return false
1269         }
1270         if len(cn.Args) != 2 || cn.Args[0].Op() != ir.OADDR {
1271                 return false
1272         }
1273         adn := cn.Args[0].(*ir.AddrExpr)
1274         v := isIndexingCoverageCounter(adn.X)
1275         return v
1276 }