]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/inline/inl.go
cmd/compile: redo IsRuntimePkg/IsReflectPkg predicate
[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() {
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 opSwitch:
509         switch n.Op() {
510         // Call is okay if inlinable and we have the budget for the body.
511         case ir.OCALLFUNC:
512                 n := n.(*ir.CallExpr)
513                 // Functions that call runtime.getcaller{pc,sp} can not be inlined
514                 // because getcaller{pc,sp} expect a pointer to the caller's first argument.
515                 //
516                 // runtime.throw is a "cheap call" like panic in normal code.
517                 var cheap bool
518                 if n.X.Op() == ir.ONAME {
519                         name := n.X.(*ir.Name)
520                         if name.Class == ir.PFUNC {
521                                 switch fn := types.RuntimeSymName(name.Sym()); fn {
522                                 case "getcallerpc", "getcallersp":
523                                         v.reason = "call to " + fn
524                                         return true
525                                 case "throw":
526                                         v.budget -= inlineExtraThrowCost
527                                         break opSwitch
528                                 }
529                                 // Special case for reflect.noescape. It does just type
530                                 // conversions to appease the escape analysis, and doesn't
531                                 // generate code.
532                                 if types.ReflectSymName(name.Sym()) == "noescape" {
533                                         cheap = true
534                                 }
535                         }
536                         // Special case for coverage counter updates; although
537                         // these correspond to real operations, we treat them as
538                         // zero cost for the moment. This is due to the existence
539                         // of tests that are sensitive to inlining-- if the
540                         // insertion of coverage instrumentation happens to tip a
541                         // given function over the threshold and move it from
542                         // "inlinable" to "not-inlinable", this can cause changes
543                         // in allocation behavior, which can then result in test
544                         // failures (a good example is the TestAllocations in
545                         // crypto/ed25519).
546                         if isAtomicCoverageCounterUpdate(n) {
547                                 return false
548                         }
549                 }
550                 if n.X.Op() == ir.OMETHEXPR {
551                         if meth := ir.MethodExprName(n.X); meth != nil {
552                                 if fn := meth.Func; fn != nil {
553                                         s := fn.Sym()
554                                         if types.RuntimeSymName(s) == "heapBits.nextArena" {
555                                                 // Special case: explicitly allow mid-stack inlining of
556                                                 // runtime.heapBits.next even though it calls slow-path
557                                                 // runtime.heapBits.nextArena.
558                                                 cheap = true
559                                         }
560                                         // Special case: on architectures that can do unaligned loads,
561                                         // explicitly mark encoding/binary methods as cheap,
562                                         // because in practice they are, even though our inlining
563                                         // budgeting system does not see that. See issue 42958.
564                                         if base.Ctxt.Arch.CanMergeLoads && s.Pkg.Path == "encoding/binary" {
565                                                 switch s.Name {
566                                                 case "littleEndian.Uint64", "littleEndian.Uint32", "littleEndian.Uint16",
567                                                         "bigEndian.Uint64", "bigEndian.Uint32", "bigEndian.Uint16",
568                                                         "littleEndian.PutUint64", "littleEndian.PutUint32", "littleEndian.PutUint16",
569                                                         "bigEndian.PutUint64", "bigEndian.PutUint32", "bigEndian.PutUint16",
570                                                         "littleEndian.AppendUint64", "littleEndian.AppendUint32", "littleEndian.AppendUint16",
571                                                         "bigEndian.AppendUint64", "bigEndian.AppendUint32", "bigEndian.AppendUint16":
572                                                         cheap = true
573                                                 }
574                                         }
575                                 }
576                         }
577                 }
578                 if cheap {
579                         break // treat like any other node, that is, cost of 1
580                 }
581
582                 // Determine if the callee edge is for an inlinable hot callee or not.
583                 if v.profile != nil && v.curFunc != nil {
584                         if fn := inlCallee(v.curFunc, n.X, v.profile); fn != nil && typecheck.HaveInlineBody(fn) {
585                                 lineOffset := pgo.NodeLineOffset(n, fn)
586                                 csi := pgo.CallSiteInfo{LineOffset: lineOffset, Caller: v.curFunc}
587                                 if _, o := candHotEdgeMap[csi]; o {
588                                         if base.Debug.PGODebug > 0 {
589                                                 fmt.Printf("hot-callsite identified at line=%v for func=%v\n", ir.Line(n), ir.PkgFuncName(v.curFunc))
590                                         }
591                                 }
592                         }
593                 }
594
595                 if ir.IsIntrinsicCall(n) {
596                         // Treat like any other node.
597                         break
598                 }
599
600                 if fn := inlCallee(v.curFunc, n.X, v.profile); fn != nil && typecheck.HaveInlineBody(fn) {
601                         v.budget -= fn.Inl.Cost
602                         break
603                 }
604
605                 // Call cost for non-leaf inlining.
606                 v.budget -= v.extraCallCost
607
608         case ir.OCALLMETH:
609                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
610
611         // Things that are too hairy, irrespective of the budget
612         case ir.OCALL, ir.OCALLINTER:
613                 // Call cost for non-leaf inlining.
614                 v.budget -= v.extraCallCost
615
616         case ir.OPANIC:
617                 n := n.(*ir.UnaryExpr)
618                 if n.X.Op() == ir.OCONVIFACE && n.X.(*ir.ConvExpr).Implicit() {
619                         // Hack to keep reflect.flag.mustBe inlinable for TestIntendedInlining.
620                         // Before CL 284412, these conversions were introduced later in the
621                         // compiler, so they didn't count against inlining budget.
622                         v.budget++
623                 }
624                 v.budget -= inlineExtraPanicCost
625
626         case ir.ORECOVER:
627                 base.FatalfAt(n.Pos(), "ORECOVER missed typecheck")
628         case ir.ORECOVERFP:
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, ir.ODEFER, ir.OTAILCALL:
649                 v.reason = "unhandled op " + n.Op().String()
650                 return true
651
652         case ir.OAPPEND:
653                 v.budget -= inlineExtraAppendCost
654
655         case ir.OADDR:
656                 n := n.(*ir.AddrExpr)
657                 // Make "&s.f" cost 0 when f's offset is zero.
658                 if dot, ok := n.X.(*ir.SelectorExpr); ok && (dot.Op() == ir.ODOT || dot.Op() == ir.ODOTPTR) {
659                         if _, ok := dot.X.(*ir.Name); ok && dot.Selection.Offset == 0 {
660                                 v.budget += 2 // undo ir.OADDR+ir.ODOT/ir.ODOTPTR
661                         }
662                 }
663
664         case ir.ODEREF:
665                 // *(*X)(unsafe.Pointer(&x)) is low-cost
666                 n := n.(*ir.StarExpr)
667
668                 ptr := n.X
669                 for ptr.Op() == ir.OCONVNOP {
670                         ptr = ptr.(*ir.ConvExpr).X
671                 }
672                 if ptr.Op() == ir.OADDR {
673                         v.budget += 1 // undo half of default cost of ir.ODEREF+ir.OADDR
674                 }
675
676         case ir.OCONVNOP:
677                 // This doesn't produce code, but the children might.
678                 v.budget++ // undo default cost
679
680         case ir.OFALL, ir.OTYPE:
681                 // These nodes don't produce code; omit from inlining budget.
682                 return false
683
684         case ir.OIF:
685                 n := n.(*ir.IfStmt)
686                 if ir.IsConst(n.Cond, constant.Bool) {
687                         // This if and the condition cost nothing.
688                         if doList(n.Init(), v.do) {
689                                 return true
690                         }
691                         if ir.BoolVal(n.Cond) {
692                                 return doList(n.Body, v.do)
693                         } else {
694                                 return doList(n.Else, v.do)
695                         }
696                 }
697
698         case ir.ONAME:
699                 n := n.(*ir.Name)
700                 if n.Class == ir.PAUTO {
701                         v.usedLocals.Add(n)
702                 }
703
704         case ir.OBLOCK:
705                 // The only OBLOCK we should see at this point is an empty one.
706                 // In any event, let the visitList(n.List()) below take care of the statements,
707                 // and don't charge for the OBLOCK itself. The ++ undoes the -- below.
708                 v.budget++
709
710         case ir.OMETHVALUE, ir.OSLICELIT:
711                 v.budget-- // Hack for toolstash -cmp.
712
713         case ir.OMETHEXPR:
714                 v.budget++ // Hack for toolstash -cmp.
715
716         case ir.OAS2:
717                 n := n.(*ir.AssignListStmt)
718
719                 // Unified IR unconditionally rewrites:
720                 //
721                 //      a, b = f()
722                 //
723                 // into:
724                 //
725                 //      DCL tmp1
726                 //      DCL tmp2
727                 //      tmp1, tmp2 = f()
728                 //      a, b = tmp1, tmp2
729                 //
730                 // so that it can insert implicit conversions as necessary. To
731                 // minimize impact to the existing inlining heuristics (in
732                 // particular, to avoid breaking the existing inlinability regress
733                 // tests), we need to compensate for this here.
734                 //
735                 // See also identical logic in isBigFunc.
736                 if init := n.Rhs[0].Init(); len(init) == 1 {
737                         if _, ok := init[0].(*ir.AssignListStmt); ok {
738                                 // 4 for each value, because each temporary variable now
739                                 // appears 3 times (DCL, LHS, RHS), plus an extra DCL node.
740                                 //
741                                 // 1 for the extra "tmp1, tmp2 = f()" assignment statement.
742                                 v.budget += 4*int32(len(n.Lhs)) + 1
743                         }
744                 }
745
746         case ir.OAS:
747                 // Special case for coverage counter updates and coverage
748                 // function registrations. Although these correspond to real
749                 // operations, we treat them as zero cost for the moment. This
750                 // is primarily due to the existence of tests that are
751                 // sensitive to inlining-- if the insertion of coverage
752                 // instrumentation happens to tip a given function over the
753                 // threshold and move it from "inlinable" to "not-inlinable",
754                 // this can cause changes in allocation behavior, which can
755                 // then result in test failures (a good example is the
756                 // TestAllocations in crypto/ed25519).
757                 n := n.(*ir.AssignStmt)
758                 if n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {
759                         return false
760                 }
761         }
762
763         v.budget--
764
765         // When debugging, don't stop early, to get full cost of inlining this function
766         if v.budget < 0 && base.Flag.LowerM < 2 && !logopt.Enabled() {
767                 v.reason = "too expensive"
768                 return true
769         }
770
771         return ir.DoChildren(n, v.do)
772 }
773
774 func isBigFunc(fn *ir.Func) bool {
775         budget := inlineBigFunctionNodes
776         return ir.Any(fn, func(n ir.Node) bool {
777                 // See logic in hairyVisitor.doNode, explaining unified IR's
778                 // handling of "a, b = f()" assignments.
779                 if n, ok := n.(*ir.AssignListStmt); ok && n.Op() == ir.OAS2 {
780                         if init := n.Rhs[0].Init(); len(init) == 1 {
781                                 if _, ok := init[0].(*ir.AssignListStmt); ok {
782                                         budget += 4*len(n.Lhs) + 1
783                                 }
784                         }
785                 }
786
787                 budget--
788                 return budget <= 0
789         })
790 }
791
792 // inlcopylist (together with inlcopy) recursively copies a list of nodes, except
793 // that it keeps the same ONAME, OTYPE, and OLITERAL nodes. It is used for copying
794 // the body and dcls of an inlineable function.
795 func inlcopylist(ll []ir.Node) []ir.Node {
796         s := make([]ir.Node, len(ll))
797         for i, n := range ll {
798                 s[i] = inlcopy(n)
799         }
800         return s
801 }
802
803 // inlcopy is like DeepCopy(), but does extra work to copy closures.
804 func inlcopy(n ir.Node) ir.Node {
805         var edit func(ir.Node) ir.Node
806         edit = func(x ir.Node) ir.Node {
807                 switch x.Op() {
808                 case ir.ONAME, ir.OTYPE, ir.OLITERAL, ir.ONIL:
809                         return x
810                 }
811                 m := ir.Copy(x)
812                 ir.EditChildren(m, edit)
813                 if x.Op() == ir.OCLOSURE {
814                         x := x.(*ir.ClosureExpr)
815                         // Need to save/duplicate x.Func.Nname,
816                         // x.Func.Nname.Ntype, x.Func.Dcl, x.Func.ClosureVars, and
817                         // x.Func.Body for iexport and local inlining.
818                         oldfn := x.Func
819                         newfn := ir.NewFunc(oldfn.Pos(), oldfn.Nname.Pos(), oldfn.Nname.Sym(), oldfn.Nname.Type())
820                         m.(*ir.ClosureExpr).Func = newfn
821                         // XXX OK to share fn.Type() ??
822                         newfn.Body = inlcopylist(oldfn.Body)
823                         // Make shallow copy of the Dcl and ClosureVar slices
824                         newfn.Dcl = append([]*ir.Name(nil), oldfn.Dcl...)
825                         newfn.ClosureVars = append([]*ir.Name(nil), oldfn.ClosureVars...)
826                 }
827                 return m
828         }
829         return edit(n)
830 }
831
832 // InlineCalls/inlnode walks fn's statements and expressions and substitutes any
833 // calls made to inlineable functions. This is the external entry point.
834 func InlineCalls(fn *ir.Func, profile *pgo.Profile) {
835         savefn := ir.CurFunc
836         ir.CurFunc = fn
837         bigCaller := isBigFunc(fn)
838         if bigCaller && base.Flag.LowerM > 1 {
839                 fmt.Printf("%v: function %v considered 'big'; reducing max cost of inlinees\n", ir.Line(fn), fn)
840         }
841         var inlCalls []*ir.InlinedCallExpr
842         var edit func(ir.Node) ir.Node
843         edit = func(n ir.Node) ir.Node {
844                 return inlnode(fn, n, bigCaller, &inlCalls, edit, profile)
845         }
846         ir.EditChildren(fn, edit)
847
848         // If we inlined any calls, we want to recursively visit their
849         // bodies for further inlining. However, we need to wait until
850         // *after* the original function body has been expanded, or else
851         // inlCallee can have false positives (e.g., #54632).
852         for len(inlCalls) > 0 {
853                 call := inlCalls[0]
854                 inlCalls = inlCalls[1:]
855                 ir.EditChildren(call, edit)
856         }
857
858         ir.CurFunc = savefn
859 }
860
861 // inlnode recurses over the tree to find inlineable calls, which will
862 // be turned into OINLCALLs by mkinlcall. When the recursion comes
863 // back up will examine left, right, list, rlist, ninit, ntest, nincr,
864 // nbody and nelse and use one of the 4 inlconv/glue functions above
865 // to turn the OINLCALL into an expression, a statement, or patch it
866 // in to this nodes list or rlist as appropriate.
867 // NOTE it makes no sense to pass the glue functions down the
868 // recursion to the level where the OINLCALL gets created because they
869 // have to edit /this/ n, so you'd have to push that one down as well,
870 // but then you may as well do it here.  so this is cleaner and
871 // shorter and less complicated.
872 // The result of inlnode MUST be assigned back to n, e.g.
873 //
874 //      n.Left = inlnode(n.Left)
875 func inlnode(callerfn *ir.Func, n ir.Node, bigCaller bool, inlCalls *[]*ir.InlinedCallExpr, edit func(ir.Node) ir.Node, profile *pgo.Profile) ir.Node {
876         if n == nil {
877                 return n
878         }
879
880         switch n.Op() {
881         case ir.ODEFER, ir.OGO:
882                 n := n.(*ir.GoDeferStmt)
883                 switch call := n.Call; call.Op() {
884                 case ir.OCALLMETH:
885                         base.FatalfAt(call.Pos(), "OCALLMETH missed by typecheck")
886                 case ir.OCALLFUNC:
887                         call := call.(*ir.CallExpr)
888                         call.NoInline = true
889                 }
890         case ir.OTAILCALL:
891                 n := n.(*ir.TailCallStmt)
892                 n.Call.NoInline = true // Not inline a tail call for now. Maybe we could inline it just like RETURN fn(arg)?
893
894         // TODO do them here (or earlier),
895         // so escape analysis can avoid more heapmoves.
896         case ir.OCLOSURE:
897                 return n
898         case ir.OCALLMETH:
899                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
900         case ir.OCALLFUNC:
901                 n := n.(*ir.CallExpr)
902                 if n.X.Op() == ir.OMETHEXPR {
903                         // Prevent inlining some reflect.Value methods when using checkptr,
904                         // even when package reflect was compiled without it (#35073).
905                         if meth := ir.MethodExprName(n.X); meth != nil {
906                                 s := meth.Sym()
907                                 if base.Debug.Checkptr != 0 {
908                                         switch types.ReflectSymName(s) {
909                                         case "Value.UnsafeAddr", "Value.Pointer":
910                                                 return n
911                                         }
912                                 }
913                         }
914                 }
915         }
916
917         lno := ir.SetPos(n)
918
919         ir.EditChildren(n, edit)
920
921         // with all the branches out of the way, it is now time to
922         // transmogrify this node itself unless inhibited by the
923         // switch at the top of this function.
924         switch n.Op() {
925         case ir.OCALLMETH:
926                 base.FatalfAt(n.Pos(), "OCALLMETH missed by typecheck")
927
928         case ir.OCALLFUNC:
929                 call := n.(*ir.CallExpr)
930                 if call.NoInline {
931                         break
932                 }
933                 if base.Flag.LowerM > 3 {
934                         fmt.Printf("%v:call to func %+v\n", ir.Line(n), call.X)
935                 }
936                 if ir.IsIntrinsicCall(call) {
937                         break
938                 }
939                 if fn := inlCallee(callerfn, call.X, profile); fn != nil && typecheck.HaveInlineBody(fn) {
940                         n = mkinlcall(callerfn, call, fn, bigCaller, inlCalls)
941                 }
942         }
943
944         base.Pos = lno
945
946         return n
947 }
948
949 // inlCallee takes a function-typed expression and returns the underlying function ONAME
950 // that it refers to if statically known. Otherwise, it returns nil.
951 func inlCallee(caller *ir.Func, fn ir.Node, profile *pgo.Profile) (res *ir.Func) {
952         fn = ir.StaticValue(fn)
953         switch fn.Op() {
954         case ir.OMETHEXPR:
955                 fn := fn.(*ir.SelectorExpr)
956                 n := ir.MethodExprName(fn)
957                 // Check that receiver type matches fn.X.
958                 // TODO(mdempsky): Handle implicit dereference
959                 // of pointer receiver argument?
960                 if n == nil || !types.Identical(n.Type().Recv().Type, fn.X.Type()) {
961                         return nil
962                 }
963                 return n.Func
964         case ir.ONAME:
965                 fn := fn.(*ir.Name)
966                 if fn.Class == ir.PFUNC {
967                         return fn.Func
968                 }
969         case ir.OCLOSURE:
970                 fn := fn.(*ir.ClosureExpr)
971                 c := fn.Func
972                 if len(c.ClosureVars) != 0 && c.ClosureVars[0].Outer.Curfn != caller {
973                         return nil // inliner doesn't support inlining across closure frames
974                 }
975                 CanInline(c, profile)
976                 return c
977         }
978         return nil
979 }
980
981 var inlgen int
982
983 // SSADumpInline gives the SSA back end a chance to dump the function
984 // when producing output for debugging the compiler itself.
985 var SSADumpInline = func(*ir.Func) {}
986
987 // InlineCall allows the inliner implementation to be overridden.
988 // If it returns nil, the function will not be inlined.
989 var InlineCall = func(callerfn *ir.Func, call *ir.CallExpr, fn *ir.Func, inlIndex int) *ir.InlinedCallExpr {
990         base.Fatalf("inline.InlineCall not overridden")
991         panic("unreachable")
992 }
993
994 // inlineCostOK returns true if call n from caller to callee is cheap enough to
995 // inline. bigCaller indicates that caller is a big function.
996 //
997 // If inlineCostOK returns false, it also returns the max cost that the callee
998 // exceeded.
999 func inlineCostOK(n *ir.CallExpr, caller, callee *ir.Func, bigCaller bool) (bool, int32) {
1000         maxCost := int32(inlineMaxBudget)
1001         if bigCaller {
1002                 // We use this to restrict inlining into very big functions.
1003                 // See issue 26546 and 17566.
1004                 maxCost = inlineBigFunctionMaxCost
1005         }
1006
1007         if callee.Inl.Cost <= maxCost {
1008                 // Simple case. Function is already cheap enough.
1009                 return true, 0
1010         }
1011
1012         // We'll also allow inlining of hot functions below inlineHotMaxBudget,
1013         // but only in small functions.
1014
1015         lineOffset := pgo.NodeLineOffset(n, caller)
1016         csi := pgo.CallSiteInfo{LineOffset: lineOffset, Caller: caller}
1017         if _, ok := candHotEdgeMap[csi]; !ok {
1018                 // Cold
1019                 return false, maxCost
1020         }
1021
1022         // Hot
1023
1024         if bigCaller {
1025                 if base.Debug.PGODebug > 0 {
1026                         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))
1027                 }
1028                 return false, maxCost
1029         }
1030
1031         if callee.Inl.Cost > inlineHotMaxBudget {
1032                 return false, inlineHotMaxBudget
1033         }
1034
1035         if base.Debug.PGODebug > 0 {
1036                 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))
1037         }
1038
1039         return true, 0
1040 }
1041
1042 // If n is a OCALLFUNC node, and fn is an ONAME node for a
1043 // function with an inlinable body, return an OINLCALL node that can replace n.
1044 // The returned node's Ninit has the parameter assignments, the Nbody is the
1045 // inlined function body, and (List, Rlist) contain the (input, output)
1046 // parameters.
1047 // The result of mkinlcall MUST be assigned back to n, e.g.
1048 //
1049 //      n.Left = mkinlcall(n.Left, fn, isddd)
1050 func mkinlcall(callerfn *ir.Func, n *ir.CallExpr, fn *ir.Func, bigCaller bool, inlCalls *[]*ir.InlinedCallExpr) ir.Node {
1051         if fn.Inl == nil {
1052                 if logopt.Enabled() {
1053                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", ir.FuncName(callerfn),
1054                                 fmt.Sprintf("%s cannot be inlined", ir.PkgFuncName(fn)))
1055                 }
1056                 return n
1057         }
1058
1059         if ok, maxCost := inlineCostOK(n, callerfn, fn, bigCaller); !ok {
1060                 if logopt.Enabled() {
1061                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", ir.FuncName(callerfn),
1062                                 fmt.Sprintf("cost %d of %s exceeds max caller cost %d", fn.Inl.Cost, ir.PkgFuncName(fn), maxCost))
1063                 }
1064                 return n
1065         }
1066
1067         if fn == callerfn {
1068                 // Can't recursively inline a function into itself.
1069                 if logopt.Enabled() {
1070                         logopt.LogOpt(n.Pos(), "cannotInlineCall", "inline", fmt.Sprintf("recursive call to %s", ir.FuncName(callerfn)))
1071                 }
1072                 return n
1073         }
1074
1075         if base.Flag.Cfg.Instrumenting && types.IsNoInstrumentPkg(fn.Sym().Pkg) {
1076                 // Runtime package must not be instrumented.
1077                 // Instrument skips runtime package. However, some runtime code can be
1078                 // inlined into other packages and instrumented there. To avoid this,
1079                 // we disable inlining of runtime functions when instrumenting.
1080                 // The example that we observed is inlining of LockOSThread,
1081                 // which lead to false race reports on m contents.
1082                 return n
1083         }
1084         if base.Flag.Race && types.IsNoRacePkg(fn.Sym().Pkg) {
1085                 return n
1086         }
1087
1088         parent := base.Ctxt.PosTable.Pos(n.Pos()).Base().InliningIndex()
1089         sym := fn.Linksym()
1090
1091         // Check if we've already inlined this function at this particular
1092         // call site, in order to stop inlining when we reach the beginning
1093         // of a recursion cycle again. We don't inline immediately recursive
1094         // functions, but allow inlining if there is a recursion cycle of
1095         // many functions. Most likely, the inlining will stop before we
1096         // even hit the beginning of the cycle again, but this catches the
1097         // unusual case.
1098         for inlIndex := parent; inlIndex >= 0; inlIndex = base.Ctxt.InlTree.Parent(inlIndex) {
1099                 if base.Ctxt.InlTree.InlinedFunction(inlIndex) == sym {
1100                         if base.Flag.LowerM > 1 {
1101                                 fmt.Printf("%v: cannot inline %v into %v: repeated recursive cycle\n", ir.Line(n), fn, ir.FuncName(callerfn))
1102                         }
1103                         return n
1104                 }
1105         }
1106
1107         typecheck.AssertFixedCall(n)
1108
1109         inlIndex := base.Ctxt.InlTree.Add(parent, n.Pos(), sym, ir.FuncName(fn))
1110
1111         closureInitLSym := func(n *ir.CallExpr, fn *ir.Func) {
1112                 // The linker needs FuncInfo metadata for all inlined
1113                 // functions. This is typically handled by gc.enqueueFunc
1114                 // calling ir.InitLSym for all function declarations in
1115                 // typecheck.Target.Decls (ir.UseClosure adds all closures to
1116                 // Decls).
1117                 //
1118                 // However, non-trivial closures in Decls are ignored, and are
1119                 // insteaded enqueued when walk of the calling function
1120                 // discovers them.
1121                 //
1122                 // This presents a problem for direct calls to closures.
1123                 // Inlining will replace the entire closure definition with its
1124                 // body, which hides the closure from walk and thus suppresses
1125                 // symbol creation.
1126                 //
1127                 // Explicitly create a symbol early in this edge case to ensure
1128                 // we keep this metadata.
1129                 //
1130                 // TODO: Refactor to keep a reference so this can all be done
1131                 // by enqueueFunc.
1132
1133                 if n.Op() != ir.OCALLFUNC {
1134                         // Not a standard call.
1135                         return
1136                 }
1137                 if n.X.Op() != ir.OCLOSURE {
1138                         // Not a direct closure call.
1139                         return
1140                 }
1141
1142                 clo := n.X.(*ir.ClosureExpr)
1143                 if ir.IsTrivialClosure(clo) {
1144                         // enqueueFunc will handle trivial closures anyways.
1145                         return
1146                 }
1147
1148                 ir.InitLSym(fn, true)
1149         }
1150
1151         closureInitLSym(n, fn)
1152
1153         if base.Flag.GenDwarfInl > 0 {
1154                 if !sym.WasInlined() {
1155                         base.Ctxt.DwFixups.SetPrecursorFunc(sym, fn)
1156                         sym.Set(obj.AttrWasInlined, true)
1157                 }
1158         }
1159
1160         if base.Flag.LowerM != 0 {
1161                 fmt.Printf("%v: inlining call to %v\n", ir.Line(n), fn)
1162         }
1163         if base.Flag.LowerM > 2 {
1164                 fmt.Printf("%v: Before inlining: %+v\n", ir.Line(n), n)
1165         }
1166
1167         res := InlineCall(callerfn, n, fn, inlIndex)
1168
1169         if res == nil {
1170                 base.FatalfAt(n.Pos(), "inlining call to %v failed", fn)
1171         }
1172
1173         if base.Flag.LowerM > 2 {
1174                 fmt.Printf("%v: After inlining %+v\n\n", ir.Line(res), res)
1175         }
1176
1177         *inlCalls = append(*inlCalls, res)
1178
1179         return res
1180 }
1181
1182 // CalleeEffects appends any side effects from evaluating callee to init.
1183 func CalleeEffects(init *ir.Nodes, callee ir.Node) {
1184         for {
1185                 init.Append(ir.TakeInit(callee)...)
1186
1187                 switch callee.Op() {
1188                 case ir.ONAME, ir.OCLOSURE, ir.OMETHEXPR:
1189                         return // done
1190
1191                 case ir.OCONVNOP:
1192                         conv := callee.(*ir.ConvExpr)
1193                         callee = conv.X
1194
1195                 case ir.OINLCALL:
1196                         ic := callee.(*ir.InlinedCallExpr)
1197                         init.Append(ic.Body.Take()...)
1198                         callee = ic.SingleResult()
1199
1200                 default:
1201                         base.FatalfAt(callee.Pos(), "unexpected callee expression: %v", callee)
1202                 }
1203         }
1204 }
1205
1206 func pruneUnusedAutos(ll []*ir.Name, vis *hairyVisitor) []*ir.Name {
1207         s := make([]*ir.Name, 0, len(ll))
1208         for _, n := range ll {
1209                 if n.Class == ir.PAUTO {
1210                         if !vis.usedLocals.Has(n) {
1211                                 continue
1212                         }
1213                 }
1214                 s = append(s, n)
1215         }
1216         return s
1217 }
1218
1219 // numNonClosures returns the number of functions in list which are not closures.
1220 func numNonClosures(list []*ir.Func) int {
1221         count := 0
1222         for _, fn := range list {
1223                 if fn.OClosure == nil {
1224                         count++
1225                 }
1226         }
1227         return count
1228 }
1229
1230 func doList(list []ir.Node, do func(ir.Node) bool) bool {
1231         for _, x := range list {
1232                 if x != nil {
1233                         if do(x) {
1234                                 return true
1235                         }
1236                 }
1237         }
1238         return false
1239 }
1240
1241 // isIndexingCoverageCounter returns true if the specified node 'n' is indexing
1242 // into a coverage counter array.
1243 func isIndexingCoverageCounter(n ir.Node) bool {
1244         if n.Op() != ir.OINDEX {
1245                 return false
1246         }
1247         ixn := n.(*ir.IndexExpr)
1248         if ixn.X.Op() != ir.ONAME || !ixn.X.Type().IsArray() {
1249                 return false
1250         }
1251         nn := ixn.X.(*ir.Name)
1252         return nn.CoverageCounter()
1253 }
1254
1255 // isAtomicCoverageCounterUpdate examines the specified node to
1256 // determine whether it represents a call to sync/atomic.AddUint32 to
1257 // increment a coverage counter.
1258 func isAtomicCoverageCounterUpdate(cn *ir.CallExpr) bool {
1259         if cn.X.Op() != ir.ONAME {
1260                 return false
1261         }
1262         name := cn.X.(*ir.Name)
1263         if name.Class != ir.PFUNC {
1264                 return false
1265         }
1266         fn := name.Sym().Name
1267         if name.Sym().Pkg.Path != "sync/atomic" ||
1268                 (fn != "AddUint32" && fn != "StoreUint32") {
1269                 return false
1270         }
1271         if len(cn.Args) != 2 || cn.Args[0].Op() != ir.OADDR {
1272                 return false
1273         }
1274         adn := cn.Args[0].(*ir.AddrExpr)
1275         v := isIndexingCoverageCounter(adn.X)
1276         return v
1277 }