llvm-reduce: Fix producing invalid reductions on ifunc
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Tue, 22 Nov 2022 21:31:43 +0000 (16:31 -0500)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Sun, 27 Nov 2022 17:41:29 +0000 (12:41 -0500)
llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll [new file with mode: 0644]
llvm/tools/llvm-reduce/deltas/Utils.cpp

diff --git a/llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll b/llvm/test/tools/llvm-reduce/no-remove-ifunc-function.ll
new file mode 100644 (file)
index 0000000..988544c
--- /dev/null
@@ -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
+
+@ifunc1 = ifunc void (), ptr @has_ifunc
+
+
+define ptr @has_ifunc() {
+  ret ptr inttoptr (i64 124 to ptr)
+}
+
+define void @no_ifunc_interesting() {
+  ret void
+}
+
+define void @no_ifunc_boring() {
+  ret void
+}
index 40ef1dc..a7c9528 100644 (file)
@@ -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 @@ Value *llvm::getDefaultValue(Type *T) {
 }
 
 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);
+    });
 }