Rollup merge of #100293 - yanchen4791:add-inline-llvm-option, r=nnethercote
Add inline-llvm option for disabling/enabling LLVM inlining In this PR, a new -Z option `inline-llvm` is added in order to be able to turn on/off LLVM inlining. The capability of turning on/off inlining in LLVM backend is needed for testing performance implications of using recently enabled inlining in rustc's frontend (with -Z inline-mir=yes option, #91743). It would be interesting to see the performance effect using rustc's frontend inlining only without LLVM inlining enabled. Currently LLVM is still doing inlining no mater what value inline-mir is set to. With the option `inline-llvm` being added in this PR, user can turn off LLVM inlining by using `-Z inline-llvm=no` option (the default of inline-llvm is 'yes', LLVM inlining enabled).
This commit is contained in:
commit
413703201c
3 changed files with 7 additions and 0 deletions
|
|
@ -54,6 +54,7 @@
|
|||
-Z incremental-info=val -- print high-level information about incremental reuse (or the lack thereof) (default: no)
|
||||
-Z incremental-relative-spans=val -- hash spans relative to their parent item for incr. comp. (default: no)
|
||||
-Z incremental-verify-ich=val -- verify incr. comp. hashes of green query instances (default: no)
|
||||
-Z inline-llvm=val -- enable LLVM inlining (default: yes)
|
||||
-Z inline-mir=val -- enable MIR inlining (default: no)
|
||||
-Z inline-mir-threshold=val -- a default MIR inlining threshold (default: 50)
|
||||
-Z inline-mir-hint-threshold=val -- inlining threshold for functions with inline hint (default: 100)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue