[Inliner] Don't skip inlining alwaysinline in optnone functions
authorArthur Eubanks <aeubanks@google.com>
Thu, 2 Jul 2020 18:17:21 +0000 (11:17 -0700)
committerArthur Eubanks <aeubanks@google.com>
Tue, 7 Jul 2020 19:54:55 +0000 (12:54 -0700)
Previously the NPM inliner would skip all potential inlines in an
optnone function, but alwaysinline callees should be inlined regardless
of optnone.

Fixes inline-optnone.ll under NPM.

Reviewed By: kazu

Differential Revision: https://reviews.llvm.org/D83021

llvm/lib/Transforms/IPO/Inliner.cpp
llvm/test/Transforms/Inline/inline-optnone.ll

index 876ad88..7d2260f 100644 (file)
@@ -791,7 +791,9 @@ PreservedAnalyses InlinerPass::run(LazyCallGraph::SCC &InitialC,
     LazyCallGraph::Node &N = *CG.lookup(F);
     if (CG.lookupSCC(N) != C)
       continue;
-    if (F.hasOptNone()) {
+    if (!Calls[I].first->getCalledFunction()->hasFnAttribute(
+            Attribute::AlwaysInline) &&
+        F.hasOptNone()) {
       setInlineRemark(*Calls[I].first, "optnone attribute");
       continue;
     }
index 9b99c45..475ef76 100644 (file)
@@ -1,4 +1,5 @@
 ; RUN: opt < %s -inline -S | FileCheck %s
+; RUN: opt < %s --passes=inline -S | FileCheck %s
 
 ; Test that functions with attribute optnone are not inlined.
 ; Also test that only functions with attribute alwaysinline are