[PATCH] D138523: CloneModule: Handling cloning ifuncs
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 22 14:22:02 PST 2022
arsenm created this revision.
arsenm added reviewers: MaskRay, dexonsmith, ibookstein, aeubanks.
Herald added a subscriber: StephenFan.
Herald added a project: All.
arsenm requested review of this revision.
Herald added a subscriber: wdng.
Herald added a project: LLVM.
This is tested in a future llvm-reduce patch.
https://reviews.llvm.org/D138523
Files:
llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll
llvm/tools/llvm-reduce/deltas/Utils.cpp
Index: llvm/tools/llvm-reduce/deltas/Utils.cpp
===================================================================
--- llvm/tools/llvm-reduce/deltas/Utils.cpp
+++ llvm/tools/llvm-reduce/deltas/Utils.cpp
@@ -13,6 +13,7 @@
#include "Utils.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/GlobalAlias.h"
+#include "llvm/IR/GlobalIFunc.h"
using namespace llvm;
@@ -27,5 +28,7 @@
}
bool llvm::hasAliasUse(Function &F) {
- return any_of(F.users(), [](User *U) { return isa<GlobalAlias>(U); });
+ return any_of(F.users(), [](User *U) {
+ return isa<GlobalAlias>(U) || isa<GlobalIFunc>(U);
+ });
}
Index: llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll
===================================================================
--- /dev/null
+++ llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll
@@ -0,0 +1,27 @@
+; RUN: llvm-reduce -abort-on-invalid-reduction --delta-passes=functions --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
+; RUN: FileCheck --check-prefixes=CHECK-FINAL --input-file=%t %s
+
+; Test handling of ifunc. Make sure function reduction doesn't create
+; invalid ifunc
+
+
+; CHECK-INTERESTINGNESS: define void @no_ifunc_interesting
+
+; CHECK-FINAL: @ifunc1 = ifunc void (), ptr @has_ifunc
+; CHECK-FINAL: define void @no_ifunc_interesting() {
+; CHECK-FINAL-NOT: define
+
+ at ifunc1 = ifunc void (), ptr @has_ifunc
+
+
+define void @has_ifunc() {
+ ret void
+}
+
+define void @no_ifunc_interesting() {
+ ret void
+}
+
+define void @no_ifunc_boring() {
+ ret void
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138523.477297.patch
Type: text/x-patch
Size: 1581 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221122/bcdb5676/attachment.bin>
More information about the llvm-commits
mailing list