内容简介:In theprevious post I discussed how leaf inlining allows the Go compiler to reduce the overhead of function calls and extend optimisation opportunities across function boundaries. In this post I’ll discuss the limits of inlining and leaf vs mid-stack inlin
In theprevious post I discussed how leaf inlining allows the Go compiler to reduce the overhead of function calls and extend optimisation opportunities across function boundaries. In this post I’ll discuss the limits of inlining and leaf vs mid-stack inlining.
The limits of inlining
Inlining a function into its caller removes the call’s overhead and increases the opportunity for the compiler to apply additional optimisations so the question should be asked, if some inlining is good, would more be better, why not inline as much as possible?
Inlining trades possibly larger program sizes for potentially faster execution time. The main reason to limit inlining is creating many inlined copies of a function can increase compile time and result in larger binaries for marginal gain. Even taking into account the opportunities for further optimisation, aggressive inlining tends to increase the size of, and the time too compile, the resulting binary.
Inlining works best for small functions that do relatively little work compared to the overhead of calling them. As the size of a function grows, the time saved avoiding the call’s overhead diminishes relative to the work done inside the function. Larger functions tend to be more complex, thus the benefits of optimising their inlined forms vs in situ are reduced.
Inlining budget
During compilation each function’s inlineabilty is calculated using what is known as the inlining budget
. The cost calculation can tricky too internalise but is broadly one unit per node in the AST for simple things like unary and binary operations but can be higher for complex operations like make
. Consider this example:
package main func small() string { s := "hello, " + "world!" return s } func large() string { s := "a" s += "b" s += "c" s += "d" s += "e" s += "f" s += "g" s += "h" s += "i" s += "j" s += "k" s += "l" s += "m" s += "n" s += "o" s += "p" s += "q" s += "r" s += "s" s += "t" s += "u" s += "v" s += "w" s += "x" s += "y" s += "z" return s } func main() { small() large() }
Compiling this function with -gcflags=-m=2
allows us to see the cost the compiler assigns to each function.
% <strong>go build -gcflags=-m=2 inl.go </strong> # command-line-arguments ./inl.go:3:6: can inline small with cost 7 as: func() string { s := "hello, world!"; return s } ./inl.go:8:6: cannot inline large: function too complex: cost 82 exceeds budget 80 ./inl.go:38:6: can inline main with cost 68 as: func() { small(); large() } ./inl.go:39:7: inlining call to small func() string { s := "hello, world!"; return s }
The compiler determined that func small()
can be inlined due to its cost of 7. func large()
was determined to be too expensive. func main()
has been marked as eligable and assigned a cost of 68; 7 from the body of small
, 57 from the function call to small
and the remainder in its own overhead.
The inlining budget can be controlled to some degree with the -gcflag=-l
flag. Currently the values that apply are:
-
-gcflags=-l=0
is the default level of inlining. -
-gcflags=-l
(or-gcflags=-l=1
) disables inlining. -
-gcflags=-l=2
and-gcflags=-l=3
are currently unused and have no effect over-gcflags=-l=0
-
-gcflags=-l=4
reduces the cost for inlining non-leaf functions and calls through interfaces.
Hairy optimisations
Some functions with a relatively low inlining cost may be ineligible because of their complexity. This is known as the function’s hairiness as the semantics of some operations are hard to reason about once inlined, for example recover
, break
. Others, like select
and go
, involve co-ordination with the runtime so the extra effort of inlining doesn’t pay for itself.
The list of hairy statements also includes things like for
and range
which don’t have an inherently large cost, but simply haven’t been optimised yet.
Mid stack inlining
Historically the Go compiler only performed leaf inlining–only functions which did not call other functions were eligible. In the context of the hairiness discussion previously, a function call would disqualify the function from being inlined.
Enter mid stack inlining which, as its name implies, allows functions in the middle of a call stack to be inlined without requiring everything below them to be eligible. Mid stack inlining was introduced by David Lazar in Go 1.9 and improved in subsequent releases. This presentation
goes into some of the difficulties with retaining the behaviour of stack traces and runtime.Callers
in code paths that had been heavily inlined.
We see an example of mid-stack inlining in the previous example. After inlining, func main()
contains the body of func small()
and a call to func large()
, thus it is considered a non-leaf function. Historically this would have prevented it from being further inlined even though its combined cost was less than the inlining budget.
The primary use case for mid stack inlining is to reduce the overhead of a path through the call stack. Consider this example:
package main import ( "fmt" "strconv" ) type Rectangle struct {} //go:noinline func (r *Rectangle) Height() int { h, _ := strconv.ParseInt("7", 10, 0) return int(h) } func (r *Rectangle) Width() int { return 6 } func (r *Rectangle) Area() int { return r.Height() * r.Width() } func main() { var r Rectangle fmt.Println(r.Area()) }
In this example r.Area()
is a simple function which calls two others. r.Width()
can be inlined while r.Height()
, simulated here with the //go:noinline
annotation, cannot.
% <strong>go build -gcflags='-m=2' square.go </strong> # command-line-arguments ./square.go:12:6: cannot inline (*Rectangle).Height: marked go:noinline ./square.go:17:6: can inline (*Rectangle).Width with cost 2 as: method(*Rectangle) func() int { return 6 } ./square.go:21:6: <strong>can inline (*Rectangle).Area with cost 67 as: method(*Rectangle) func() int { return r.Height() * r.Width() } </strong>./square.go:21:61: inlining call to (*Rectangle).Width method(*Rectangle) func() int { return 6 } ./square.go:23:6: cannot inline main: function too complex: cost 150 exceeds budget 80 ./square.go:25:20: inlining call to (*Rectangle).Area method(*Rectangle) func() int { return r.Height() * r.Width() } ./square.go:25:20: inlining call to (*Rectangle).Width method(*Rectangle) func() int { return 6 }
As the multiplication performed by r.Area()
is cheap compared to the overhead of calling it, inlining r.Area()
‘s single expression is a net win even if its downstream caller to r.Height()
remains ineligible.
Fast path inlining
The most startling example of the power of mid-stack inlining comes from 2019 when Carlo Alberto Ferraris improved the performance
of sync.Mutex.Lock()
by allowing the fast path of the lock–the uncontended case–to be inlined into its caller. Prior to this change sync.Mutex.Lock()
was a large function containing many hairy conditions which made it ineligible to be inlined. Even in the case where the lock was available, the caller had to pay the overhead of calling sync.Mutex.Lock()
.
Carlo’s change split sync.Mutex.Lock()
into two functions (a process he dubbed outlining
). The outer sync.Mutex.Lock()
method now calls sync/atomic.CompareAndSwapInt32()
and returns to the caller immediately if the CAS succeeds. If not, the function falls through to sync.Mutex.lockSlow()
which handles the slow path required to register interest on the lock and park the goroutine.
% <strong>go build -gcflags='-m=2 -l=0' sync 2>&1 | grep '(*Mutex).Lock'</strong> ../go/src/sync/mutex.go:72:6: can inline (*Mutex).Lock with cost 69 as: method(*Mutex) func() { if "sync/atomic".CompareAndSwapInt32(&m.state, 0, mutexLocked) { if race.Enabled { }; return }; m.lockSlow() }
By splitting the function into an easily inalienable outer function, falling through to a complex inner function to handle the slow path Carlo’s combined mid stack inlining and the compiler’s support for intrinsic operations
to reduce the cost of an uncontended lock by 14%. Then he repeated the trick for an additional 9% saving in sync.RWMutex.Unlock()
.
- The budget the Go compiler applies to each function when considering if it is eligible for inlining changes release to release.
- Keep in mind that the compiler authors warn that “ Additional levels of inlining (beyond -l) may be buggy and are not supported” . Caveat emptor.
-
The compiler is powerful enough that it can inline complex functions like
strconv.ParseInt
. As a experiment, try removing the//go:noinline
annotation and observe the result with-gcflags=-m=2
. -
The expression
race.Enable
is a constant controlled by the-race
flag passed to thego
tool. It isfalse
for normal builds which allows the compiler to elide those code paths entirely.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
图解密码技术(第3版)
[日] 结城浩 / 周自恒 / 人民邮电出版社 / 2016-6 / 89.00元
本书以图配文的形式,详细讲解了6种最重要的密码技术:对称密码、公钥密码、单向散列函数、消息认证码、数字签名和伪随机数生成器。 第1部分讲述了密码技术的历史沿革、对称密码、分组密码模式(包括ECB、CBC、CFB、OFB、CTR)、公钥、混合密码系统。第2部分重点介绍了认证方面的内容,涉及单向散列函数、消息认证码、数字签名、证书等。第3部分讲述了密钥、随机数、PGP、SSL/TLS 以及密码技......一起来看看 《图解密码技术(第3版)》 这本书的介绍吧!