[PATCH] D120868: [IROutliner] handle functions that do not contain an exit path
Andrew Litteken via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 9 10:44:04 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0b3a6c8d20d1: [IROutliner] Handling outlined code with no exit paths (authored by AndrewLitteken).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120868/new/
https://reviews.llvm.org/D120868
Files:
llvm/lib/Transforms/IPO/IROutliner.cpp
llvm/test/Transforms/IROutliner/outlining-no-return-functions.ll
Index: llvm/test/Transforms/IROutliner/outlining-no-return-functions.ll
===================================================================
--- /dev/null
+++ llvm/test/Transforms/IROutliner/outlining-no-return-functions.ll
@@ -0,0 +1,55 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --include-generated-funcs
+; RUN: opt -S -verify -iroutliner -ir-outlining-no-cost < %s | FileCheck %s
+
+; Make sure that we outline safely from functions with no return instructions.
+
+; The code extractor will insert return instructions in the outer function
+; due to assumptions about the contents of the outlined region.
+
+define void @f1() {
+bb:
+ br label %bb1
+bb1:
+ br label %bb1
+}
+
+define void @f2() {
+bb:
+ br label %bb1
+bb1:
+ br label %bb1
+}
+
+define void @f3() {
+bb:
+ br label %bb1
+bb1:
+ br label %bb1
+}
+; CHECK-LABEL: @f1(
+; CHECK-NEXT: bb:
+; CHECK-NEXT: br label [[BB1:%.*]]
+; CHECK: bb1:
+; CHECK-NEXT: br label [[BB1]]
+;
+;
+; CHECK-LABEL: @f2(
+; CHECK-NEXT: bb:
+; CHECK-NEXT: call void @outlined_ir_func_0()
+; CHECK-NEXT: ret void
+;
+;
+; CHECK-LABEL: @f3(
+; CHECK-NEXT: bb:
+; CHECK-NEXT: call void @outlined_ir_func_0()
+; CHECK-NEXT: ret void
+;
+;
+; CHECK-LABEL: define internal void @outlined_ir_func_0(
+; CHECK-NEXT: newFuncRoot:
+; CHECK-NEXT: br label [[BB_TO_OUTLINE:%.*]]
+; CHECK: bb_to_outline:
+; CHECK-NEXT: br label [[BB1:%.*]]
+; CHECK: bb1:
+; CHECK-NEXT: br label [[BB1]]
+;
Index: llvm/lib/Transforms/IPO/IROutliner.cpp
===================================================================
--- llvm/lib/Transforms/IPO/IROutliner.cpp
+++ llvm/lib/Transforms/IPO/IROutliner.cpp
@@ -691,8 +691,6 @@
for (Instruction *I : DebugInsts)
I->eraseFromParent();
}
-
- assert(NewEnds.size() > 0 && "No return instruction for new function?");
}
/// Find the the constants that will need to be lifted into arguments
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D120868.414152.patch
Type: text/x-patch
Size: 1968 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220309/2ad1897f/attachment.bin>
More information about the llvm-commits
mailing list