[llvm-reduce] Introduce operands-to-args pass.

Instead of setting operands to undef as the "operands" pass does,
convert the operands to a function argument. This avoids having to
introduce undef values into the IR which have some unpredictability
during optimizations.

For instance,

    define void @func() {
    entry:
      %val = add i32 32, 21
      store i32 %val, i32* null
      ret void
    }

is reduced to

    define void @func(i32 %val) {
    entry:
      %val1 = add i32 32, 21
      store i32 %val, i32* null
      ret void
    }

(note that the instruction %val is renamed to %val1 when printing
the IR to avoid ambiguity; ideally %val1 would be removed by dce or the
instruction reduction pass)

Any call to @func is replaced with a call to the function with the
new signature and filled with undef. This is not ideal for IPA passes,
but those out-of-scope for now.

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D111503
This commit is contained in:
Michael Kruse
2021-10-13 09:05:54 -05:00
parent 02928fcb8c
commit dd71b65ca8
6 changed files with 294 additions and 1 deletions

View File

@@ -0,0 +1,56 @@
; RUN: llvm-reduce %s -o %t --delta-passes=operands-to-args --test FileCheck --test-arg %s --test-arg --match-full-lines --test-arg --check-prefix=INTERESTING --test-arg --input-file
; RUN: FileCheck %s --input-file %t --check-prefixes=REDUCED,INTERESTING
; REDUCED-LABEL: define void @func(i32 %k, i32* %Local, i32* %Global, float* %0) {
; Keep one reference to the original value.
; INTERESTING: %[[LOCAL:Local[0-9]*]] = alloca i32, align 4
; INTERESTING: store i32 42, i32* %[[LOCAL]], align 4
; INTERESTING: store i32 42, i32* @Global, align 4
; Everything else must use the function argument.
; REDUCED: store i32 21, i32* %Local, align 4
; REDUCED: store i32 21, i32* %Global, align 4
; REDUCED: store i32 0, i32* %Local, align 4
; REDUCED: store i32 0, i32* %Global, align 4
; REDUCED: store float 0.000000e+00, float* %0, align 4
; Do not add any arguments for %Keep and @GlobalKeep.
; INTERESTING: %[[KEEP:LocalKeep[0-9]*]] = add i32 %k, 21
; INTERESTING: store i32 %[[KEEP]], i32* @GlobalKeep, align 4
; INTERESTING-LABEL: define void @func_caller() {
; REDUCED: call void @func(i32 21, i32* undef, i32* undef, float* undef)
@Global = global i32 42
@GlobalKeep = global i32 42
define void @func(i32 %k) {
entry:
%Local = alloca i32, align 4
store i32 42, i32* %Local, align 4
store i32 42, i32* @Global, align 4
store i32 21, i32* %Local, align 4
store i32 21, i32* @Global, align 4
store i32 0, i32* %Local, align 4
store i32 0, i32* @Global, align 4
store float 0.000000e+00, float* bitcast (i32* @Global to float*), align 4
%LocalKeep = add i32 %k, 21
store i32 %LocalKeep, i32* @GlobalKeep, align 4
ret void
}
define void @func_caller() {
entry:
call void @func(i32 21)
ret void
}

View File

@@ -1,6 +1,6 @@
; Test that llvm-reduce can remove uninteresting operand bundles from calls.
;
; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
; RUN: llvm-reduce --delta-passes=operand-bundles,attributes --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
; RUN: cat %t | FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s
; CHECK-ALL: declare i32 @f1(i32, i32)

View File

@@ -29,6 +29,7 @@ add_llvm_tool(llvm-reduce
deltas/ReduceOperandBundles.cpp
deltas/ReduceSpecialGlobals.cpp
deltas/ReduceOperands.cpp
deltas/ReduceOperandsToArgs.cpp
llvm-reduce.cpp
DEPENDS

View File

@@ -28,6 +28,7 @@
#include "deltas/ReduceModuleData.h"
#include "deltas/ReduceOperandBundles.h"
#include "deltas/ReduceOperands.h"
#include "deltas/ReduceOperandsToArgs.h"
#include "deltas/ReduceSpecialGlobals.h"
#include "llvm/Support/CommandLine.h"
@@ -51,6 +52,7 @@ static cl::opt<std::string>
DELTA_PASS("arguments", reduceArgumentsDeltaPass) \
DELTA_PASS("instructions", reduceInstructionsDeltaPass) \
DELTA_PASS("operands", reduceOperandsDeltaPass) \
DELTA_PASS("operands-to-args", reduceOperandsToArgsDeltaPass) \
DELTA_PASS("operand-bundles", reduceOperandBundesDeltaPass) \
DELTA_PASS("attributes", reduceAttributesDeltaPass) \
DELTA_PASS("module-data", reduceModuleDataDeltaPass)

View File

@@ -0,0 +1,216 @@
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "ReduceOperandsToArgs.h"
#include "Delta.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/InstrTypes.h"
#include "llvm/IR/Instructions.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Cloning.h"
using namespace llvm;
static bool canReplaceFunction(Function *F) {
return all_of(F->uses(), [](Use &Op) {
if (auto *CI = dyn_cast<CallBase>(Op.getUser()))
return &CI->getCalledOperandUse() == &Op;
return false;
});
}
static bool canReduceUse(Use &Op) {
Value *Val = Op.get();
Type *Ty = Val->getType();
// Only replace operands that can be passed-by-value.
if (!Ty->isFirstClassType())
return false;
// Don't pass labels as arguments.
if (Ty->isLabelTy())
return false;
// No need to replace values that are already arguments.
if (isa<Argument>(Val))
return false;
// Do not replace literals.
if (isa<ConstantData>(Val))
return false;
// Do not convert direct function calls to indirect calls.
if (auto *CI = dyn_cast<CallBase>(Op.getUser()))
if (&CI->getCalledOperandUse() == &Op)
return false;
return true;
}
/// Goes over OldF calls and replaces them with a call to NewF.
static void replaceFunctionCalls(Function *OldF, Function *NewF) {
SmallVector<CallBase *> Callers;
for (Use &U : OldF->uses()) {
auto *CI = cast<CallBase>(U.getUser());
assert(&U == &CI->getCalledOperandUse());
assert(CI->getCalledFunction() == OldF);
Callers.push_back(CI);
}
// Call arguments for NewF.
SmallVector<Value *> Args(NewF->arg_size(), nullptr);
// Fill up the additional parameters with undef values.
for (auto ArgIdx : llvm::seq<size_t>(OldF->arg_size(), NewF->arg_size())) {
Type *NewArgTy = NewF->getArg(ArgIdx)->getType();
Args[ArgIdx] = UndefValue::get(NewArgTy);
}
for (CallBase *CI : Callers) {
// Preserve the original function arguments.
for (auto Z : zip_first(CI->args(), Args))
std::get<1>(Z) = std::get<0>(Z);
// Also preserve operand bundles.
SmallVector<OperandBundleDef> OperandBundles;
CI->getOperandBundlesAsDefs(OperandBundles);
// Create the new function call.
CallBase *NewCI;
if (auto *II = dyn_cast<InvokeInst>(CI)) {
NewCI = InvokeInst::Create(NewF, cast<InvokeInst>(II)->getNormalDest(),
cast<InvokeInst>(II)->getUnwindDest(), Args,
OperandBundles, CI->getName());
} else {
assert(isa<CallInst>(CI));
NewCI = CallInst::Create(NewF, Args, OperandBundles, CI->getName());
}
NewCI->setCallingConv(NewF->getCallingConv());
// Do the replacement for this use.
if (!CI->use_empty())
CI->replaceAllUsesWith(NewCI);
ReplaceInstWithInst(CI, NewCI);
}
}
/// Add a new function argument to @p F for each use in @OpsToReplace, and
/// replace those operand values with the new function argument.
static void substituteOperandWithArgument(Function *OldF,
ArrayRef<Use *> OpsToReplace) {
if (OpsToReplace.empty())
return;
SetVector<Value *> UniqueValues;
for (Use *Op : OpsToReplace)
UniqueValues.insert(Op->get());
// Determine the new function's signature.
SmallVector<Type *> NewArgTypes;
llvm::append_range(NewArgTypes, OldF->getFunctionType()->params());
size_t ArgOffset = NewArgTypes.size();
for (Value *V : UniqueValues)
NewArgTypes.push_back(V->getType());
FunctionType *FTy =
FunctionType::get(OldF->getFunctionType()->getReturnType(), NewArgTypes,
OldF->getFunctionType()->isVarArg());
// Create the new function...
Function *NewF =
Function::Create(FTy, OldF->getLinkage(), OldF->getAddressSpace(),
OldF->getName(), OldF->getParent());
// In order to preserve function order, we move NewF behind OldF
NewF->removeFromParent();
OldF->getParent()->getFunctionList().insertAfter(OldF->getIterator(), NewF);
// Preserve the parameters of OldF.
ValueToValueMapTy VMap;
for (auto Z : zip_first(OldF->args(), NewF->args())) {
Argument &OldArg = std::get<0>(Z);
Argument &NewArg = std::get<1>(Z);
NewArg.setName(OldArg.getName()); // Copy the name over...
VMap[&OldArg] = &NewArg; // Add mapping to VMap
}
// Adjust the new parameters.
ValueToValueMapTy OldValMap;
for (auto Z : zip_first(UniqueValues, drop_begin(NewF->args(), ArgOffset))) {
Value *OldVal = std::get<0>(Z);
Argument &NewArg = std::get<1>(Z);
NewArg.setName(OldVal->getName());
OldValMap[OldVal] = &NewArg;
}
SmallVector<ReturnInst *, 8> Returns; // Ignore returns cloned.
CloneFunctionInto(NewF, OldF, VMap, CloneFunctionChangeType::LocalChangesOnly,
Returns, "", /*CodeInfo=*/nullptr);
// Replace the actual operands.
for (Use *Op : OpsToReplace) {
Value *NewArg = OldValMap.lookup(Op->get());
auto *NewUser = cast<Instruction>(VMap.lookup(Op->getUser()));
NewUser->setOperand(Op->getOperandNo(), NewArg);
}
// Replace all OldF uses with NewF.
replaceFunctionCalls(OldF, NewF);
// Rename NewF to OldF's name.
std::string FName = OldF->getName().str();
OldF->replaceAllUsesWith(ConstantExpr::getBitCast(NewF, OldF->getType()));
OldF->eraseFromParent();
NewF->setName(FName);
}
static void reduceOperandsToArgs(Oracle &O, Module &Program) {
SmallVector<Use *> OperandsToReduce;
for (Function &F : make_early_inc_range(Program.functions())) {
OperandsToReduce.clear();
for (Instruction &I : instructions(&F)) {
for (Use &Op : I.operands()) {
if (!canReduceUse(Op))
continue;
if (O.shouldKeep())
continue;
OperandsToReduce.push_back(&Op);
}
}
substituteOperandWithArgument(&F, OperandsToReduce);
}
}
/// Counts the amount of operands in the module that can be reduced.
static int countOperands(Module &Program) {
int Count = 0;
for (Function &F : Program.functions()) {
if (!canReplaceFunction(&F))
continue;
for (Instruction &I : instructions(&F)) {
for (Use &Op : I.operands()) {
if (!canReduceUse(Op))
continue;
Count += 1;
}
}
}
return Count;
}
void llvm::reduceOperandsToArgsDeltaPass(TestRunner &Test) {
outs() << "*** Converting operands to function arguments ...\n";
int ArgCount = countOperands(Test.getProgram());
return runDeltaPass(Test, ArgCount, reduceOperandsToArgs);
}

View File

@@ -0,0 +1,18 @@
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEOPERANDSTOARGS_H
#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEOPERANDSTOARGS_H
#include "Delta.h"
namespace llvm {
void reduceOperandsToArgsDeltaPass(TestRunner &Test);
} // namespace llvm
#endif /* LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEOPERANDSTOARGS_H */