Skip to content

Commit

Permalink
[inline Cost] Don't mark functions accessing varargs as non-inlinable
Browse files Browse the repository at this point in the history
Summary:
rL323619 marks functions that are calling va_end as not viable for
inlining. This patch reverses that since this va_end doesn't need
access to the vriadic arguments list that are saved on the stack, only
va_start does.

Reviewers: efriedma, fhahn

Reviewed By: fhahn

Subscribers: eraman, haicheng, llvm-commits

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

llvm-svn: 342675
  • Loading branch information
Sameer AbuAsal committed Sep 20, 2018
1 parent 392bf6a commit 77beee4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 7 deletions.
12 changes: 5 additions & 7 deletions llvm/lib/Analysis/InlineCost.cpp
Expand Up @@ -137,7 +137,7 @@ class CallAnalyzer : public InstVisitor<CallAnalyzer, bool> {
bool HasReturn;
bool HasIndirectBr;
bool HasUninlineableIntrinsic;
bool UsesVarArgs;
bool InitsVargArgs;

/// Number of bytes allocated statically by the callee.
uint64_t AllocatedSize;
Expand Down Expand Up @@ -283,7 +283,7 @@ class CallAnalyzer : public InstVisitor<CallAnalyzer, bool> {
IsCallerRecursive(false), IsRecursiveCall(false),
ExposesReturnsTwice(false), HasDynamicAlloca(false),
ContainsNoDuplicateCall(false), HasReturn(false), HasIndirectBr(false),
HasUninlineableIntrinsic(false), UsesVarArgs(false), AllocatedSize(0),
HasUninlineableIntrinsic(false), InitsVargArgs(false), AllocatedSize(0),
NumInstructions(0), NumVectorInstructions(0), VectorBonus(0),
SingleBBBonus(0), EnableLoadElimination(true), LoadEliminationCost(0),
NumConstantArgs(0), NumConstantOffsetPtrArgs(0), NumAllocaArgs(0),
Expand Down Expand Up @@ -1239,8 +1239,7 @@ bool CallAnalyzer::visitCallSite(CallSite CS) {
HasUninlineableIntrinsic = true;
return false;
case Intrinsic::vastart:
case Intrinsic::vaend:
UsesVarArgs = true;
InitsVargArgs = true;
return false;
}
}
Expand Down Expand Up @@ -1587,7 +1586,7 @@ CallAnalyzer::analyzeBlock(BasicBlock *BB,
IR = "indirect branch";
else if (HasUninlineableIntrinsic)
IR = "uninlinable intrinsic";
else if (UsesVarArgs)
else if (InitsVargArgs)
IR = "varargs";
if (!IR) {
if (ORE)
Expand Down Expand Up @@ -2079,9 +2078,8 @@ bool llvm::isInlineViable(Function &F) {
// Disallow inlining functions that call @llvm.localescape. Doing this
// correctly would require major changes to the inliner.
case llvm::Intrinsic::localescape:
// Disallow inlining of functions that access VarArgs.
// Disallow inlining of functions that initialize VarArgs with va_start.
case llvm::Intrinsic::vastart:
case llvm::Intrinsic::vaend:
return false;
}
}
Expand Down
29 changes: 29 additions & 0 deletions llvm/test/Transforms/Inline/inline-varargs.ll
Expand Up @@ -84,6 +84,35 @@ define i32 @call_vargs() {
; CHECK: %res1 = call i32 (...) @varg_accessed(i32 10)
; CHECK-NEXT: %res2 = call i32 (...) @varg_accessed_alwaysinline(i32 15)

define void @caller_with_vastart(i8* noalias nocapture readnone %args, ...) {
entry:
%ap = alloca i8*, align 4
%ap.ptr = bitcast i8** %ap to i8*
%ap2 = alloca i8*, align 4
%ap2.ptr = bitcast i8** %ap to i8*
call void @llvm.va_start(i8* nonnull %ap.ptr)
call fastcc void @callee_with_vaend(i8* nonnull %ap.ptr)
call void @llvm.va_start(i8* nonnull %ap2.ptr)
call fastcc void @callee_with_vaend_alwaysinline(i8* nonnull %ap2.ptr)
ret void
}

define internal fastcc void @callee_with_vaend_alwaysinline(i8* %a) alwaysinline {
entry:
tail call void @llvm.va_end(i8* %a)
ret void
}

define internal fastcc void @callee_with_vaend(i8* %a) {
entry:
tail call void @llvm.va_end(i8* %a)
ret void
}

; CHECK-LABEL: @caller_with_vastart
; CHECK-NOT: @callee_with_vaend
; CHECK-NOT: @callee_with_vaend_alwaysinline

declare void @llvm.va_start(i8*)
declare void @llvm.va_end(i8*)

Expand Down

0 comments on commit 77beee4

Please sign in to comment.