[PATCH] D69257: Outline non returning functions unless a longjmp
Ruijie Fang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 23 10:49:02 PDT 2020
rjf updated this revision to Diff 280199.
rjf added a comment.
Attempt to resolve merge conflicts
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69257/new/
https://reviews.llvm.org/D69257
Files:
llvm/lib/Transforms/IPO/HotColdSplitting.cpp
Index: llvm/lib/Transforms/IPO/HotColdSplitting.cpp
===================================================================
--- llvm/lib/Transforms/IPO/HotColdSplitting.cpp
+++ llvm/lib/Transforms/IPO/HotColdSplitting.cpp
@@ -101,7 +101,8 @@
return !(isa<ReturnInst>(I) || isa<IndirectBrInst>(I));
}
-bool unlikelyExecuted(BasicBlock &BB) {
+bool unlikelyExecuted(BasicBlock &BB, ProfileSummaryInfo *PSI,
+ BlockFrequencyInfo *BFI) {
// Exception handling blocks are unlikely executed.
if (BB.isEHPad() || isa<ResumeInst>(BB.getTerminator()))
return true;
@@ -114,12 +115,19 @@
return true;
// The block is cold if it has an unreachable terminator, unless it's
- // preceded by a call to a (possibly warm) noreturn call (e.g. longjmp).
+ // preceded by a call to a (possibly warm) noreturn call (e.g. longjmp);
+ // in the case of a longjmp, if the block is cold according to
+ // profile information, we mark it as unlikely to be executed as well.
if (blockEndsInUnreachable(BB)) {
if (auto *CI =
dyn_cast_or_null<CallInst>(BB.getTerminator()->getPrevNode()))
- if (CI->hasFnAttr(Attribute::NoReturn))
- return false;
+ if (CI->hasFnAttr(Attribute::NoReturn)) {
+ if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
+ return (II->getIntrinsicID() != Intrinsic::eh_sjlj_longjmp) ||
+ (BFI && PSI->isColdBlock(&BB, BFI));
+ return !CI->getCalledFunction()->getName().startswith("longjmp") ||
+ (BFI && PSI->isColdBlock(&BB, BFI));
+ }
return true;
}
@@ -575,7 +583,7 @@
continue;
bool Cold = (BFI && PSI->isColdBlock(BB, BFI)) ||
- (EnableStaticAnalyis && unlikelyExecuted(*BB));
+ (EnableStaticAnalyis && unlikelyExecuted(*BB, PSI, BFI));
if (!Cold)
continue;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69257.280199.patch
Type: text/x-patch
Size: 1877 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200723/5254c096/attachment.bin>
More information about the llvm-commits
mailing list