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