[llvm] a33d789 - llvm-reduce: Avoid invalid reductions on x86_intrcc (#133396)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 09:11:31 PDT 2025
Author: Matt Arsenault
Date: 2025-03-28T23:11:28+07:00
New Revision: a33d789bb70e8b19840cacfc1980da883ae01ebd
URL: https://github.com/llvm/llvm-project/commit/a33d789bb70e8b19840cacfc1980da883ae01ebd
DIFF: https://github.com/llvm/llvm-project/commit/a33d789bb70e8b19840cacfc1980da883ae01ebd.diff
LOG: llvm-reduce: Avoid invalid reductions on x86_intrcc (#133396)
If there are arguments, the first one must be byval.
Added:
llvm/test/tools/llvm-reduce/reduce-arguments-x86_intrcc.ll
Modified:
llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
Removed:
################################################################################
diff --git a/llvm/test/tools/llvm-reduce/reduce-arguments-x86_intrcc.ll b/llvm/test/tools/llvm-reduce/reduce-arguments-x86_intrcc.ll
new file mode 100644
index 0000000000000..50aac3cce32fa
--- /dev/null
+++ b/llvm/test/tools/llvm-reduce/reduce-arguments-x86_intrcc.ll
@@ -0,0 +1,35 @@
+; RUN: llvm-reduce %s -o %t --abort-on-invalid-reduction --delta-passes=arguments --test FileCheck --test-arg %s --test-arg --check-prefix=INTERESTING --test-arg --input-file
+; RUN: FileCheck %s --input-file %t --check-prefix=REDUCED
+
+ at gv = global i32 0
+
+; INTERESTING-LABEL: void @func(
+; INTERESTING-SAME: i32 %other.keep
+
+; REDUCED: define x86_intrcc void @func(ptr byval(i32) %k, i32 %other.keep)
+define x86_intrcc void @func(ptr byval(i32) %k, i32 %other.keep, i32 %other.drop) {
+ store i32 %other.keep, ptr @gv
+ ret void
+}
+
+; INTERESTING-LABEL: void @extern_decl(
+; INTERESTING-SAME: i32
+
+; REDUCED: declare x86_intrcc void @extern_decl(ptr byval(i32))
+declare x86_intrcc void @extern_decl(ptr byval(i32), i32, i32)
+
+; INTERESTING-LABEL: void @callsite(
+; INTERESTING: call
+; REDUCED: call x86_intrcc void @func(ptr %k, i32 %other.keep)
+define void @callsite(ptr %k, i32 %other.keep, i32 %other.drop) {
+ call x86_intrcc void @func(ptr byval(i32) %k, i32 %other.keep, i32 %other.drop)
+ ret void
+}
+
+; INTERESTING-LABEL: void @keep_none(
+; REDUCED-LABEL: define x86_intrcc void @keep_none()
+define x86_intrcc void @keep_none(ptr byval(i32) %k, i32 %other0, float %other1) {
+ store i32 %other0, ptr @gv
+ store float %other1, ptr @gv
+ ret void
+}
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp b/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
index 5b1363d3293a6..134801fef020b 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
@@ -23,6 +23,19 @@
using namespace llvm;
+static bool callingConvRequiresArgument(const Function &F,
+ const Argument &Arg) {
+ switch (F.getCallingConv()) {
+ case CallingConv::X86_INTR:
+ // If there are any arguments, the first one must by byval.
+ return Arg.getArgNo() == 0 && F.arg_size() != 1;
+ default:
+ return false;
+ }
+
+ llvm_unreachable("covered calling conv switch");
+}
+
/// Goes over OldF calls and replaces them with a call to NewF
static void replaceFunctionCalls(Function &OldF, Function &NewF,
const std::set<int> &ArgIndexesToKeep) {
@@ -60,14 +73,18 @@ static void extractArgumentsFromModule(Oracle &O, ReducerWorkItem &WorkItem) {
Module &Program = WorkItem.getModule();
std::vector<Argument *> InitArgsToKeep;
std::vector<Function *> Funcs;
+
// Get inside-chunk arguments, as well as their parent function
- for (auto &F : Program)
- if (shouldRemoveArguments(F)) {
- Funcs.push_back(&F);
- for (auto &A : F.args())
- if (O.shouldKeep())
- InitArgsToKeep.push_back(&A);
+ for (auto &F : Program) {
+ if (!shouldRemoveArguments(F))
+ continue;
+
+ Funcs.push_back(&F);
+ for (auto &A : F.args()) {
+ if (callingConvRequiresArgument(F, A) || O.shouldKeep())
+ InitArgsToKeep.push_back(&A);
}
+ }
// We create a vector first, then convert it to a set, so that we don't have
// to pay the cost of rebalancing the set frequently if the order we insert
More information about the llvm-commits
mailing list