1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
|
//===- RISCVGatherScatterLowering.cpp - Gather/Scatter lowering -----------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This pass custom lowers llvm.gather and llvm.scatter instructions to
// RISCV intrinsics.
//
//===----------------------------------------------------------------------===//
#include "RISCV.h"
#include "RISCVTargetMachine.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/Analysis/ValueTracking.h"
#include "llvm/Analysis/VectorUtils.h"
#include "llvm/CodeGen/TargetPassConfig.h"
#include "llvm/IR/GetElementPtrTypeIterator.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/IntrinsicsRISCV.h"
#include "llvm/Transforms/Utils/Local.h"
using namespace llvm;
#define DEBUG_TYPE "riscv-gather-scatter-lowering"
namespace {
class RISCVGatherScatterLowering : public FunctionPass {
const RISCVSubtarget *ST = nullptr;
const RISCVTargetLowering *TLI = nullptr;
LoopInfo *LI = nullptr;
const DataLayout *DL = nullptr;
SmallVector<WeakTrackingVH> MaybeDeadPHIs;
public:
static char ID; // Pass identification, replacement for typeid
RISCVGatherScatterLowering() : FunctionPass(ID) {}
bool runOnFunction(Function &F) override;
void getAnalysisUsage(AnalysisUsage &AU) const override {
AU.setPreservesCFG();
AU.addRequired<TargetPassConfig>();
AU.addRequired<LoopInfoWrapperPass>();
}
StringRef getPassName() const override {
return "RISCV gather/scatter lowering";
}
private:
bool isLegalTypeAndAlignment(Type *DataType, Value *AlignOp);
bool tryCreateStridedLoadStore(IntrinsicInst *II, Type *DataType, Value *Ptr,
Value *AlignOp);
std::pair<Value *, Value *> determineBaseAndStride(GetElementPtrInst *GEP,
IRBuilder<> &Builder);
bool matchStridedRecurrence(Value *Index, Loop *L, Value *&Stride,
PHINode *&BasePtr, BinaryOperator *&Inc,
IRBuilder<> &Builder);
};
} // end anonymous namespace
char RISCVGatherScatterLowering::ID = 0;
INITIALIZE_PASS(RISCVGatherScatterLowering, DEBUG_TYPE,
"RISCV gather/scatter lowering pass", false, false)
FunctionPass *llvm::createRISCVGatherScatterLoweringPass() {
return new RISCVGatherScatterLowering();
}
bool RISCVGatherScatterLowering::isLegalTypeAndAlignment(Type *DataType,
Value *AlignOp) {
Type *ScalarType = DataType->getScalarType();
if (!TLI->isLegalElementTypeForRVV(ScalarType))
return false;
MaybeAlign MA = cast<ConstantInt>(AlignOp)->getMaybeAlignValue();
if (MA && MA->value() < DL->getTypeStoreSize(ScalarType).getFixedSize())
return false;
// FIXME: Let the backend type legalize by splitting/widening?
EVT DataVT = TLI->getValueType(*DL, DataType);
if (!TLI->isTypeLegal(DataVT))
return false;
return true;
}
// TODO: Should we consider the mask when looking for a stride?
static std::pair<Value *, Value *> matchStridedConstant(Constant *StartC) {
unsigned NumElts = cast<FixedVectorType>(StartC->getType())->getNumElements();
// Check that the start value is a strided constant.
auto *StartVal =
dyn_cast_or_null<ConstantInt>(StartC->getAggregateElement((unsigned)0));
if (!StartVal)
return std::make_pair(nullptr, nullptr);
APInt StrideVal(StartVal->getValue().getBitWidth(), 0);
ConstantInt *Prev = StartVal;
for (unsigned i = 1; i != NumElts; ++i) {
auto *C = dyn_cast_or_null<ConstantInt>(StartC->getAggregateElement(i));
if (!C)
return std::make_pair(nullptr, nullptr);
APInt LocalStride = C->getValue() - Prev->getValue();
if (i == 1)
StrideVal = LocalStride;
else if (StrideVal != LocalStride)
return std::make_pair(nullptr, nullptr);
Prev = C;
}
Value *Stride = ConstantInt::get(StartVal->getType(), StrideVal);
return std::make_pair(StartVal, Stride);
}
static std::pair<Value *, Value *> matchStridedStart(Value *Start,
IRBuilder<> &Builder) {
// Base case, start is a strided constant.
auto *StartC = dyn_cast<Constant>(Start);
if (StartC)
return matchStridedConstant(StartC);
// Not a constant, maybe it's a strided constant with a splat added to it.
auto *BO = dyn_cast<BinaryOperator>(Start);
if (!BO || BO->getOpcode() != Instruction::Add)
return std::make_pair(nullptr, nullptr);
// Look for an operand that is splatted.
unsigned OtherIndex = 1;
Value *Splat = getSplatValue(BO->getOperand(0));
if (!Splat) {
Splat = getSplatValue(BO->getOperand(1));
OtherIndex = 0;
}
if (!Splat)
return std::make_pair(nullptr, nullptr);
Value *Stride;
std::tie(Start, Stride) = matchStridedStart(BO->getOperand(OtherIndex),
Builder);
if (!Start)
return std::make_pair(nullptr, nullptr);
// Add the splat value to the start.
Builder.SetInsertPoint(BO);
Builder.SetCurrentDebugLocation(DebugLoc());
Start = Builder.CreateAdd(Start, Splat);
return std::make_pair(Start, Stride);
}
// Recursively, walk about the use-def chain until we find a Phi with a strided
// start value. Build and update a scalar recurrence as we unwind the recursion.
// We also update the Stride as we unwind. Our goal is to move all of the
// arithmetic out of the loop.
bool RISCVGatherScatterLowering::matchStridedRecurrence(Value *Index, Loop *L,
Value *&Stride,
PHINode *&BasePtr,
BinaryOperator *&Inc,
IRBuilder<> &Builder) {
// Our base case is a Phi.
if (auto *Phi = dyn_cast<PHINode>(Index)) {
// A phi node we want to perform this function on should be from the
// loop header.
if (Phi->getParent() != L->getHeader())
return false;
Value *Step, *Start;
if (!matchSimpleRecurrence(Phi, Inc, Start, Step) ||
Inc->getOpcode() != Instruction::Add)
return false;
assert(Phi->getNumIncomingValues() == 2 && "Expected 2 operand phi.");
unsigned IncrementingBlock = Phi->getIncomingValue(0) == Inc ? 0 : 1;
assert(Phi->getIncomingValue(IncrementingBlock) == Inc &&
"Expected one operand of phi to be Inc");
// Only proceed if the step is loop invariant.
if (!L->isLoopInvariant(Step))
return false;
// Step should be a splat.
Step = getSplatValue(Step);
if (!Step)
return false;
std::tie(Start, Stride) = matchStridedStart(Start, Builder);
if (!Start)
return false;
assert(Stride != nullptr);
// Build scalar phi and increment.
BasePtr =
PHINode::Create(Start->getType(), 2, Phi->getName() + ".scalar", Phi);
Inc = BinaryOperator::CreateAdd(BasePtr, Step, Inc->getName() + ".scalar",
Inc);
BasePtr->addIncoming(Start, Phi->getIncomingBlock(1 - IncrementingBlock));
BasePtr->addIncoming(Inc, Phi->getIncomingBlock(IncrementingBlock));
// Note that this Phi might be eligible for removal.
MaybeDeadPHIs.push_back(Phi);
return true;
}
// Otherwise look for binary operator.
auto *BO = dyn_cast<BinaryOperator>(Index);
if (!BO)
return false;
if (BO->getOpcode() != Instruction::Add &&
BO->getOpcode() != Instruction::Or &&
BO->getOpcode() != Instruction::Mul &&
BO->getOpcode() != Instruction::Shl)
return false;
// Only support shift by constant.
if (BO->getOpcode() == Instruction::Shl && !isa<Constant>(BO->getOperand(1)))
return false;
// We need to be able to treat Or as Add.
if (BO->getOpcode() == Instruction::Or &&
!haveNoCommonBitsSet(BO->getOperand(0), BO->getOperand(1), *DL))
return false;
// We should have one operand in the loop and one splat.
Value *OtherOp;
if (isa<Instruction>(BO->getOperand(0)) &&
L->contains(cast<Instruction>(BO->getOperand(0)))) {
Index = cast<Instruction>(BO->getOperand(0));
OtherOp = BO->getOperand(1);
} else if (isa<Instruction>(BO->getOperand(1)) &&
L->contains(cast<Instruction>(BO->getOperand(1)))) {
Index = cast<Instruction>(BO->getOperand(1));
OtherOp = BO->getOperand(0);
} else {
return false;
}
// Make sure other op is loop invariant.
if (!L->isLoopInvariant(OtherOp))
return false;
// Make sure we have a splat.
Value *SplatOp = getSplatValue(OtherOp);
if (!SplatOp)
return false;
// Recurse up the use-def chain.
if (!matchStridedRecurrence(Index, L, Stride, BasePtr, Inc, Builder))
return false;
// Locate the Step and Start values from the recurrence.
unsigned StepIndex = Inc->getOperand(0) == BasePtr ? 1 : 0;
unsigned StartBlock = BasePtr->getOperand(0) == Inc ? 1 : 0;
Value *Step = Inc->getOperand(StepIndex);
Value *Start = BasePtr->getOperand(StartBlock);
// We need to adjust the start value in the preheader.
Builder.SetInsertPoint(
BasePtr->getIncomingBlock(StartBlock)->getTerminator());
Builder.SetCurrentDebugLocation(DebugLoc());
switch (BO->getOpcode()) {
default:
llvm_unreachable("Unexpected opcode!");
case Instruction::Add:
case Instruction::Or: {
// An add only affects the start value. It's ok to do this for Or because
// we already checked that there are no common set bits.
// If the start value is Zero, just take the SplatOp.
if (isa<ConstantInt>(Start) && cast<ConstantInt>(Start)->isZero())
Start = SplatOp;
else
Start = Builder.CreateAdd(Start, SplatOp, "start");
BasePtr->setIncomingValue(StartBlock, Start);
break;
}
case Instruction::Mul: {
// If the start is zero we don't need to multiply.
if (!isa<ConstantInt>(Start) || !cast<ConstantInt>(Start)->isZero())
Start = Builder.CreateMul(Start, SplatOp, "start");
Step = Builder.CreateMul(Step, SplatOp, "step");
// If the Stride is 1 just take the SplatOpt.
if (isa<ConstantInt>(Stride) && cast<ConstantInt>(Stride)->isOne())
Stride = SplatOp;
else
Stride = Builder.CreateMul(Stride, SplatOp, "stride");
Inc->setOperand(StepIndex, Step);
BasePtr->setIncomingValue(StartBlock, Start);
break;
}
case Instruction::Shl: {
// If the start is zero we don't need to shift.
if (!isa<ConstantInt>(Start) || !cast<ConstantInt>(Start)->isZero())
Start = Builder.CreateShl(Start, SplatOp, "start");
Step = Builder.CreateShl(Step, SplatOp, "step");
Stride = Builder.CreateShl(Stride, SplatOp, "stride");
Inc->setOperand(StepIndex, Step);
BasePtr->setIncomingValue(StartBlock, Start);
break;
}
}
return true;
}
std::pair<Value *, Value *>
RISCVGatherScatterLowering::determineBaseAndStride(GetElementPtrInst *GEP,
IRBuilder<> &Builder) {
SmallVector<Value *, 2> Ops(GEP->operands());
// Base pointer needs to be a scalar.
if (Ops[0]->getType()->isVectorTy())
return std::make_pair(nullptr, nullptr);
// Make sure we're in a loop and it is in loop simplify form.
Loop *L = LI->getLoopFor(GEP->getParent());
if (!L || !L->isLoopSimplifyForm())
return std::make_pair(nullptr, nullptr);
Optional<unsigned> VecOperand;
unsigned TypeScale = 0;
// Look for a vector operand and scale.
gep_type_iterator GTI = gep_type_begin(GEP);
for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
if (!Ops[i]->getType()->isVectorTy())
continue;
if (VecOperand)
return std::make_pair(nullptr, nullptr);
VecOperand = i;
TypeSize TS = DL->getTypeAllocSize(GTI.getIndexedType());
if (TS.isScalable())
return std::make_pair(nullptr, nullptr);
TypeScale = TS.getFixedSize();
}
// We need to find a vector index to simplify.
if (!VecOperand)
return std::make_pair(nullptr, nullptr);
// We can't extract the stride if the arithmetic is done at a different size
// than the pointer type. Adding the stride later may not wrap correctly.
// Technically we could handle wider indices, but I don't expect that in
// practice.
Value *VecIndex = Ops[*VecOperand];
Type *VecIntPtrTy = DL->getIntPtrType(GEP->getType());
if (VecIndex->getType() != VecIntPtrTy)
return std::make_pair(nullptr, nullptr);
Value *Stride;
BinaryOperator *Inc;
PHINode *BasePhi;
if (!matchStridedRecurrence(VecIndex, L, Stride, BasePhi, Inc, Builder))
return std::make_pair(nullptr, nullptr);
assert(BasePhi->getNumIncomingValues() == 2 && "Expected 2 operand phi.");
unsigned IncrementingBlock = BasePhi->getOperand(0) == Inc ? 0 : 1;
assert(BasePhi->getIncomingValue(IncrementingBlock) == Inc &&
"Expected one operand of phi to be Inc");
Builder.SetInsertPoint(GEP);
// Replace the vector index with the scalar phi and build a scalar GEP.
Ops[*VecOperand] = BasePhi;
Type *SourceTy = GEP->getSourceElementType();
Value *BasePtr =
Builder.CreateGEP(SourceTy, Ops[0], makeArrayRef(Ops).drop_front());
// Cast the GEP to an i8*.
LLVMContext &Ctx = GEP->getContext();
Type *I8PtrTy =
Type::getInt8PtrTy(Ctx, GEP->getType()->getPointerAddressSpace());
if (BasePtr->getType() != I8PtrTy)
BasePtr = Builder.CreatePointerCast(BasePtr, I8PtrTy);
// Final adjustments to stride should go in the start block.
Builder.SetInsertPoint(
BasePhi->getIncomingBlock(1 - IncrementingBlock)->getTerminator());
// Convert stride to pointer size if needed.
Type *IntPtrTy = DL->getIntPtrType(BasePtr->getType());
assert(Stride->getType() == IntPtrTy && "Unexpected type");
// Scale the stride by the size of the indexed type.
if (TypeScale != 1)
Stride = Builder.CreateMul(Stride, ConstantInt::get(IntPtrTy, TypeScale));
return std::make_pair(BasePtr, Stride);
}
bool RISCVGatherScatterLowering::tryCreateStridedLoadStore(IntrinsicInst *II,
Type *DataType,
Value *Ptr,
Value *AlignOp) {
// Make sure the operation will be supported by the backend.
if (!isLegalTypeAndAlignment(DataType, AlignOp))
return false;
// Pointer should be a GEP.
auto *GEP = dyn_cast<GetElementPtrInst>(Ptr);
if (!GEP)
return false;
IRBuilder<> Builder(GEP);
Value *BasePtr, *Stride;
std::tie(BasePtr, Stride) = determineBaseAndStride(GEP, Builder);
if (!BasePtr)
return false;
assert(Stride != nullptr);
Builder.SetInsertPoint(II);
CallInst *Call;
if (II->getIntrinsicID() == Intrinsic::masked_gather)
Call = Builder.CreateIntrinsic(
Intrinsic::riscv_masked_strided_load,
{DataType, BasePtr->getType(), Stride->getType()},
{II->getArgOperand(3), BasePtr, Stride, II->getArgOperand(2)});
else
Call = Builder.CreateIntrinsic(
Intrinsic::riscv_masked_strided_store,
{DataType, BasePtr->getType(), Stride->getType()},
{II->getArgOperand(0), BasePtr, Stride, II->getArgOperand(3)});
Call->takeName(II);
II->replaceAllUsesWith(Call);
II->eraseFromParent();
if (GEP->use_empty())
RecursivelyDeleteTriviallyDeadInstructions(GEP);
return true;
}
bool RISCVGatherScatterLowering::runOnFunction(Function &F) {
if (skipFunction(F))
return false;
auto &TPC = getAnalysis<TargetPassConfig>();
auto &TM = TPC.getTM<RISCVTargetMachine>();
ST = &TM.getSubtarget<RISCVSubtarget>(F);
if (!ST->hasVInstructions() || !ST->useRVVForFixedLengthVectors())
return false;
TLI = ST->getTargetLowering();
DL = &F.getParent()->getDataLayout();
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
SmallVector<IntrinsicInst *, 4> Gathers;
SmallVector<IntrinsicInst *, 4> Scatters;
bool Changed = false;
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I);
if (II && II->getIntrinsicID() == Intrinsic::masked_gather &&
isa<FixedVectorType>(II->getType())) {
Gathers.push_back(II);
} else if (II && II->getIntrinsicID() == Intrinsic::masked_scatter &&
isa<FixedVectorType>(II->getArgOperand(0)->getType())) {
Scatters.push_back(II);
}
}
}
// Rewrite gather/scatter to form strided load/store if possible.
for (auto *II : Gathers)
Changed |= tryCreateStridedLoadStore(
II, II->getType(), II->getArgOperand(0), II->getArgOperand(1));
for (auto *II : Scatters)
Changed |=
tryCreateStridedLoadStore(II, II->getArgOperand(0)->getType(),
II->getArgOperand(1), II->getArgOperand(2));
// Remove any dead phis.
while (!MaybeDeadPHIs.empty()) {
if (auto *Phi = dyn_cast_or_null<PHINode>(MaybeDeadPHIs.pop_back_val()))
RecursivelyDeleteDeadPHINode(Phi);
}
return Changed;
}
|