[PATCH] D55666: [Transforms] Preserve metadata when converting invoke to call.
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 14 10:18:33 PST 2018
This revision was automatically updated to reflect the committed changes.
Meinersbur marked an inline comment as done.
Closed by commit rL349170: [Transforms] Preserve metadata when converting invoke to call. (authored by Meinersbur, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D55666?vs=178175&id=178248#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55666/new/
https://reviews.llvm.org/D55666
Files:
llvm/trunk/lib/Transforms/Utils/Local.cpp
llvm/trunk/test/Transforms/PruneEH/looptest.ll
Index: llvm/trunk/test/Transforms/PruneEH/looptest.ll
===================================================================
--- llvm/trunk/test/Transforms/PruneEH/looptest.ll
+++ llvm/trunk/test/Transforms/PruneEH/looptest.ll
@@ -0,0 +1,44 @@
+; RUN: opt < %s -prune-eh -S | FileCheck %s
+
+declare void @nounwind() nounwind
+
+define internal void @foo() {
+ call void @nounwind()
+ ret void
+}
+
+; CHECK-LABEL: @caller
+define i32 @caller(i32 %n) personality i32 (...)* @__gxx_personality_v0 {
+entry:
+ br label %for
+
+for:
+ %j = phi i32 [0, %entry], [%j.inc, %inc]
+ %j.cmp = icmp slt i32 %j, %n
+ br i1 %j.cmp, label %body, label %exit, !llvm.loop !0
+
+body:
+; CHECK: call void @foo(), !llvm.mem.parallel_loop_access !0
+ invoke void @foo( )
+ to label %Normal unwind label %Except, !llvm.mem.parallel_loop_access !0
+ br label %inc
+
+inc:
+ %j.inc = add nuw nsw i32 %j, 1
+ br label %for, !llvm.loop !0
+
+exit:
+ br label %Normal
+
+Normal:
+ ret i32 0
+
+Except:
+ landingpad { i8*, i32 }
+ catch i8* null
+ ret i32 1
+}
+
+declare i32 @__gxx_personality_v0(...)
+
+!0 = distinct !{!0}
Index: llvm/trunk/lib/Transforms/Utils/Local.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Utils/Local.cpp
+++ llvm/trunk/lib/Transforms/Utils/Local.cpp
@@ -1970,6 +1970,7 @@
NewCall->setCallingConv(II->getCallingConv());
NewCall->setAttributes(II->getAttributes());
NewCall->setDebugLoc(II->getDebugLoc());
+ NewCall->copyMetadata(*II);
II->replaceAllUsesWith(NewCall);
// Follow the call by a branch to the normal destination.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55666.178248.patch
Type: text/x-patch
Size: 1633 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181214/bce9214c/attachment.bin>
More information about the llvm-commits
mailing list