[InlineCost] model calls to llvm.is.constant* more carefully
authorNick Desaulniers <ndesaulniers@google.com>
Fri, 8 Oct 2021 22:17:54 +0000 (15:17 -0700)
committerNick Desaulniers <ndesaulniers@google.com>
Fri, 8 Oct 2021 22:27:30 +0000 (15:27 -0700)
commit9697f93587f46300814f1c6c68af347441d6e05d
treed207d9787aeb4ae68590b7cb4078c4e646c2834f
parent96f937746e19eb9c5152ae9c3d0b36fd8ddccb9c
[InlineCost] model calls to llvm.is.constant* more carefully

llvm.is.constant* intrinsics are evaluated to 0 or 1 integral values.

A common use case for llvm.is.constant comes from the higher level
__builtin_constant_p. A common usage pattern of __builtin_constant_p in
the Linux kernel is:

    void foo (int bar) {
      if (__builtin_constant_p(bar)) {
        // lots of code that will fold away to a constant.
      } else {
        // a little bit of code, usually a libcall.
      }
    }

A minor issue in InlineCost calculations is when `bar` is _not_ Constant
and still will not be after inlining, we don't discount the true branch
and the inline cost of `foo` ends up being the cost of both branches
together, rather than just the false branch.

This leads to code like the above where inlining will not help prove bar
Constant, but it still would be beneficial to inline foo, because the
"true" branch is irrelevant from a cost perspective.

For example, IPSCCP can sink a passed constant argument to foo:

    const int x = 42;
    void bar (void) { foo(x); }

This improves our inlining decisions, and fixes a few head scratching
cases were the disassembly shows a relatively small `foo` not inlined
into a lone caller.

We could further improve this modeling by tracking whether the argument
to llvm.is.constant* is a parameter of the function, and if inlining
would allow that parameter to become Constant. This idea is noted in a
FIXME comment.

Link: https://github.com/ClangBuiltLinux/linux/issues/1302
Reviewed By: kazu

Differential Revision: https://reviews.llvm.org/D111272
llvm/lib/Analysis/InlineCost.cpp
llvm/test/Transforms/Inline/call-intrinsic-is-constant.ll [new file with mode: 0644]