LLVM 19.0.0git
ExpandVectorPredication.cpp
Go to the documentation of this file.
1//===----- CodeGen/ExpandVectorPredication.cpp - Expand VP intrinsics -----===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass implements IR expansion for vector predication intrinsics, allowing
10// targets to enable vector predication until just before codegen.
11//
12//===----------------------------------------------------------------------===//
13
15#include "llvm/ADT/Statistic.h"
19#include "llvm/CodeGen/Passes.h"
20#include "llvm/IR/Constants.h"
21#include "llvm/IR/Function.h"
22#include "llvm/IR/IRBuilder.h"
26#include "llvm/IR/Intrinsics.h"
28#include "llvm/Pass.h"
31#include "llvm/Support/Debug.h"
32#include <optional>
33
34using namespace llvm;
35
38
39// Keep this in sync with TargetTransformInfo::VPLegalization.
40#define VPINTERNAL_VPLEGAL_CASES \
41 VPINTERNAL_CASE(Legal) \
42 VPINTERNAL_CASE(Discard) \
43 VPINTERNAL_CASE(Convert)
44
45#define VPINTERNAL_CASE(X) "|" #X
46
47// Override options.
49 "expandvp-override-evl-transform", cl::init(""), cl::Hidden,
50 cl::desc("Options: <empty>" VPINTERNAL_VPLEGAL_CASES
51 ". If non-empty, ignore "
52 "TargetTransformInfo and "
53 "always use this transformation for the %evl parameter (Used in "
54 "testing)."));
55
57 "expandvp-override-mask-transform", cl::init(""), cl::Hidden,
58 cl::desc("Options: <empty>" VPINTERNAL_VPLEGAL_CASES
59 ". If non-empty, Ignore "
60 "TargetTransformInfo and "
61 "always use this transformation for the %mask parameter (Used in "
62 "testing)."));
63
64#undef VPINTERNAL_CASE
65#define VPINTERNAL_CASE(X) .Case(#X, VPLegalization::X)
66
67static VPTransform parseOverrideOption(const std::string &TextOpt) {
69}
70
71#undef VPINTERNAL_VPLEGAL_CASES
72
73// Whether any override options are set.
75 return !EVLTransformOverride.empty() || !MaskTransformOverride.empty();
76}
77
78#define DEBUG_TYPE "expandvp"
79
80STATISTIC(NumFoldedVL, "Number of folded vector length params");
81STATISTIC(NumLoweredVPOps, "Number of folded vector predication operations");
82
83///// Helpers {
84
85/// \returns Whether the vector mask \p MaskVal has all lane bits set.
86static bool isAllTrueMask(Value *MaskVal) {
87 if (Value *SplattedVal = getSplatValue(MaskVal))
88 if (auto *ConstValue = dyn_cast<Constant>(SplattedVal))
89 return ConstValue->isAllOnesValue();
90
91 return false;
92}
93
94/// \returns A non-excepting divisor constant for this type.
95static Constant *getSafeDivisor(Type *DivTy) {
96 assert(DivTy->isIntOrIntVectorTy() && "Unsupported divisor type");
97 return ConstantInt::get(DivTy, 1u, false);
98}
99
100/// Transfer operation properties from \p OldVPI to \p NewVal.
101static void transferDecorations(Value &NewVal, VPIntrinsic &VPI) {
102 auto *NewInst = dyn_cast<Instruction>(&NewVal);
103 if (!NewInst || !isa<FPMathOperator>(NewVal))
104 return;
105
106 auto *OldFMOp = dyn_cast<FPMathOperator>(&VPI);
107 if (!OldFMOp)
108 return;
109
110 NewInst->setFastMathFlags(OldFMOp->getFastMathFlags());
111}
112
113/// Transfer all properties from \p OldOp to \p NewOp and replace all uses.
114/// OldVP gets erased.
115static void replaceOperation(Value &NewOp, VPIntrinsic &OldOp) {
116 transferDecorations(NewOp, OldOp);
117 OldOp.replaceAllUsesWith(&NewOp);
118 OldOp.eraseFromParent();
119}
120
122 // The result of VP reductions depends on the mask and evl.
123 if (isa<VPReductionIntrinsic>(VPI))
124 return false;
125 // Fallback to whether the intrinsic is speculatable.
126 if (auto IntrID = VPI.getFunctionalIntrinsicID())
127 return Intrinsic::getAttributes(VPI.getContext(), *IntrID)
128 .hasFnAttr(Attribute::AttrKind::Speculatable);
129 if (auto Opc = VPI.getFunctionalOpcode())
131 return false;
132}
133
134//// } Helpers
135
136namespace {
137
138// Expansion pass state at function scope.
139struct CachingVPExpander {
140 Function &F;
142
143 /// \returns A (fixed length) vector with ascending integer indices
144 /// (<0, 1, ..., NumElems-1>).
145 /// \p Builder
146 /// Used for instruction creation.
147 /// \p LaneTy
148 /// Integer element type of the result vector.
149 /// \p NumElems
150 /// Number of vector elements.
151 Value *createStepVector(IRBuilder<> &Builder, Type *LaneTy,
152 unsigned NumElems);
153
154 /// \returns A bitmask that is true where the lane position is less-than \p
155 /// EVLParam
156 ///
157 /// \p Builder
158 /// Used for instruction creation.
159 /// \p VLParam
160 /// The explicit vector length parameter to test against the lane
161 /// positions.
162 /// \p ElemCount
163 /// Static (potentially scalable) number of vector elements.
164 Value *convertEVLToMask(IRBuilder<> &Builder, Value *EVLParam,
165 ElementCount ElemCount);
166
167 Value *foldEVLIntoMask(VPIntrinsic &VPI);
168
169 /// "Remove" the %evl parameter of \p PI by setting it to the static vector
170 /// length of the operation.
171 void discardEVLParameter(VPIntrinsic &PI);
172
173 /// Lower this VP binary operator to a unpredicated binary operator.
174 Value *expandPredicationInBinaryOperator(IRBuilder<> &Builder,
175 VPIntrinsic &PI);
176
177 /// Lower this VP int call to a unpredicated int call.
178 Value *expandPredicationToIntCall(IRBuilder<> &Builder, VPIntrinsic &PI,
179 unsigned UnpredicatedIntrinsicID);
180
181 /// Lower this VP fp call to a unpredicated fp call.
182 Value *expandPredicationToFPCall(IRBuilder<> &Builder, VPIntrinsic &PI,
183 unsigned UnpredicatedIntrinsicID);
184
185 /// Lower this VP reduction to a call to an unpredicated reduction intrinsic.
186 Value *expandPredicationInReduction(IRBuilder<> &Builder,
188
189 /// Lower this VP cast operation to a non-VP intrinsic.
190 Value *expandPredicationToCastIntrinsic(IRBuilder<> &Builder,
191 VPIntrinsic &VPI);
192
193 /// Lower this VP memory operation to a non-VP intrinsic.
194 Value *expandPredicationInMemoryIntrinsic(IRBuilder<> &Builder,
195 VPIntrinsic &VPI);
196
197 /// Lower this VP comparison to a call to an unpredicated comparison.
198 Value *expandPredicationInComparison(IRBuilder<> &Builder,
199 VPCmpIntrinsic &PI);
200
201 /// Query TTI and expand the vector predication in \p P accordingly.
202 Value *expandPredication(VPIntrinsic &PI);
203
204 /// Determine how and whether the VPIntrinsic \p VPI shall be expanded. This
205 /// overrides TTI with the cl::opts listed at the top of this file.
206 VPLegalization getVPLegalizationStrategy(const VPIntrinsic &VPI) const;
207 bool UsingTTIOverrides;
208
209public:
210 CachingVPExpander(Function &F, const TargetTransformInfo &TTI)
211 : F(F), TTI(TTI), UsingTTIOverrides(anyExpandVPOverridesSet()) {}
212
213 bool expandVectorPredication();
214};
215
216//// CachingVPExpander {
217
218Value *CachingVPExpander::createStepVector(IRBuilder<> &Builder, Type *LaneTy,
219 unsigned NumElems) {
220 // TODO add caching
222
223 for (unsigned Idx = 0; Idx < NumElems; ++Idx)
224 ConstElems.push_back(ConstantInt::get(LaneTy, Idx, false));
225
226 return ConstantVector::get(ConstElems);
227}
228
229Value *CachingVPExpander::convertEVLToMask(IRBuilder<> &Builder,
230 Value *EVLParam,
231 ElementCount ElemCount) {
232 // TODO add caching
233 // Scalable vector %evl conversion.
234 if (ElemCount.isScalable()) {
235 auto *M = Builder.GetInsertBlock()->getModule();
236 Type *BoolVecTy = VectorType::get(Builder.getInt1Ty(), ElemCount);
237 Function *ActiveMaskFunc = Intrinsic::getDeclaration(
238 M, Intrinsic::get_active_lane_mask, {BoolVecTy, EVLParam->getType()});
239 // `get_active_lane_mask` performs an implicit less-than comparison.
240 Value *ConstZero = Builder.getInt32(0);
241 return Builder.CreateCall(ActiveMaskFunc, {ConstZero, EVLParam});
242 }
243
244 // Fixed vector %evl conversion.
245 Type *LaneTy = EVLParam->getType();
246 unsigned NumElems = ElemCount.getFixedValue();
247 Value *VLSplat = Builder.CreateVectorSplat(NumElems, EVLParam);
248 Value *IdxVec = createStepVector(Builder, LaneTy, NumElems);
249 return Builder.CreateICmp(CmpInst::ICMP_ULT, IdxVec, VLSplat);
250}
251
252Value *
253CachingVPExpander::expandPredicationInBinaryOperator(IRBuilder<> &Builder,
254 VPIntrinsic &VPI) {
256 "Implicitly dropping %evl in non-speculatable operator!");
257
258 auto OC = static_cast<Instruction::BinaryOps>(*VPI.getFunctionalOpcode());
260
261 Value *Op0 = VPI.getOperand(0);
262 Value *Op1 = VPI.getOperand(1);
263 Value *Mask = VPI.getMaskParam();
264
265 // Blend in safe operands.
266 if (Mask && !isAllTrueMask(Mask)) {
267 switch (OC) {
268 default:
269 // Can safely ignore the predicate.
270 break;
271
272 // Division operators need a safe divisor on masked-off lanes (1).
273 case Instruction::UDiv:
274 case Instruction::SDiv:
275 case Instruction::URem:
276 case Instruction::SRem:
277 // 2nd operand must not be zero.
278 Value *SafeDivisor = getSafeDivisor(VPI.getType());
279 Op1 = Builder.CreateSelect(Mask, Op1, SafeDivisor);
280 }
281 }
282
283 Value *NewBinOp = Builder.CreateBinOp(OC, Op0, Op1, VPI.getName());
284
285 replaceOperation(*NewBinOp, VPI);
286 return NewBinOp;
287}
288
289Value *CachingVPExpander::expandPredicationToIntCall(
290 IRBuilder<> &Builder, VPIntrinsic &VPI, unsigned UnpredicatedIntrinsicID) {
291 switch (UnpredicatedIntrinsicID) {
292 case Intrinsic::abs:
293 case Intrinsic::smax:
294 case Intrinsic::smin:
295 case Intrinsic::umax:
296 case Intrinsic::umin: {
297 Value *Op0 = VPI.getOperand(0);
298 Value *Op1 = VPI.getOperand(1);
300 VPI.getModule(), UnpredicatedIntrinsicID, {VPI.getType()});
301 Value *NewOp = Builder.CreateCall(Fn, {Op0, Op1}, VPI.getName());
302 replaceOperation(*NewOp, VPI);
303 return NewOp;
304 }
305 case Intrinsic::bswap:
306 case Intrinsic::bitreverse: {
307 Value *Op = VPI.getOperand(0);
309 VPI.getModule(), UnpredicatedIntrinsicID, {VPI.getType()});
310 Value *NewOp = Builder.CreateCall(Fn, {Op}, VPI.getName());
311 replaceOperation(*NewOp, VPI);
312 return NewOp;
313 }
314 }
315 return nullptr;
316}
317
318Value *CachingVPExpander::expandPredicationToFPCall(
319 IRBuilder<> &Builder, VPIntrinsic &VPI, unsigned UnpredicatedIntrinsicID) {
321 "Implicitly dropping %evl in non-speculatable operator!");
322
323 switch (UnpredicatedIntrinsicID) {
324 case Intrinsic::fabs:
325 case Intrinsic::sqrt: {
326 Value *Op0 = VPI.getOperand(0);
328 VPI.getModule(), UnpredicatedIntrinsicID, {VPI.getType()});
329 Value *NewOp = Builder.CreateCall(Fn, {Op0}, VPI.getName());
330 replaceOperation(*NewOp, VPI);
331 return NewOp;
332 }
333 case Intrinsic::maxnum:
334 case Intrinsic::minnum: {
335 Value *Op0 = VPI.getOperand(0);
336 Value *Op1 = VPI.getOperand(1);
338 VPI.getModule(), UnpredicatedIntrinsicID, {VPI.getType()});
339 Value *NewOp = Builder.CreateCall(Fn, {Op0, Op1}, VPI.getName());
340 replaceOperation(*NewOp, VPI);
341 return NewOp;
342 }
343 case Intrinsic::fma:
344 case Intrinsic::fmuladd:
345 case Intrinsic::experimental_constrained_fma:
346 case Intrinsic::experimental_constrained_fmuladd: {
347 Value *Op0 = VPI.getOperand(0);
348 Value *Op1 = VPI.getOperand(1);
349 Value *Op2 = VPI.getOperand(2);
351 VPI.getModule(), UnpredicatedIntrinsicID, {VPI.getType()});
352 Value *NewOp;
353 if (Intrinsic::isConstrainedFPIntrinsic(UnpredicatedIntrinsicID))
354 NewOp =
355 Builder.CreateConstrainedFPCall(Fn, {Op0, Op1, Op2}, VPI.getName());
356 else
357 NewOp = Builder.CreateCall(Fn, {Op0, Op1, Op2}, VPI.getName());
358 replaceOperation(*NewOp, VPI);
359 return NewOp;
360 }
361 }
362
363 return nullptr;
364}
365
366static Value *getNeutralReductionElement(const VPReductionIntrinsic &VPI,
367 Type *EltTy) {
368 bool Negative = false;
369 unsigned EltBits = EltTy->getScalarSizeInBits();
370 Intrinsic::ID VID = VPI.getIntrinsicID();
371 switch (VID) {
372 default:
373 llvm_unreachable("Expecting a VP reduction intrinsic");
374 case Intrinsic::vp_reduce_add:
375 case Intrinsic::vp_reduce_or:
376 case Intrinsic::vp_reduce_xor:
377 case Intrinsic::vp_reduce_umax:
378 return Constant::getNullValue(EltTy);
379 case Intrinsic::vp_reduce_mul:
380 return ConstantInt::get(EltTy, 1, /*IsSigned*/ false);
381 case Intrinsic::vp_reduce_and:
382 case Intrinsic::vp_reduce_umin:
383 return ConstantInt::getAllOnesValue(EltTy);
384 case Intrinsic::vp_reduce_smin:
385 return ConstantInt::get(EltTy->getContext(),
386 APInt::getSignedMaxValue(EltBits));
387 case Intrinsic::vp_reduce_smax:
388 return ConstantInt::get(EltTy->getContext(),
389 APInt::getSignedMinValue(EltBits));
390 case Intrinsic::vp_reduce_fmax:
391 case Intrinsic::vp_reduce_fmaximum:
392 Negative = true;
393 [[fallthrough]];
394 case Intrinsic::vp_reduce_fmin:
395 case Intrinsic::vp_reduce_fminimum: {
396 bool PropagatesNaN = VID == Intrinsic::vp_reduce_fminimum ||
397 VID == Intrinsic::vp_reduce_fmaximum;
399 const fltSemantics &Semantics = EltTy->getFltSemantics();
400 return (!Flags.noNaNs() && !PropagatesNaN)
401 ? ConstantFP::getQNaN(EltTy, Negative)
402 : !Flags.noInfs()
403 ? ConstantFP::getInfinity(EltTy, Negative)
404 : ConstantFP::get(EltTy,
405 APFloat::getLargest(Semantics, Negative));
406 }
407 case Intrinsic::vp_reduce_fadd:
408 return ConstantFP::getNegativeZero(EltTy);
409 case Intrinsic::vp_reduce_fmul:
410 return ConstantFP::get(EltTy, 1.0);
411 }
412}
413
414Value *
415CachingVPExpander::expandPredicationInReduction(IRBuilder<> &Builder,
418 "Implicitly dropping %evl in non-speculatable operator!");
419
420 Value *Mask = VPI.getMaskParam();
421 Value *RedOp = VPI.getOperand(VPI.getVectorParamPos());
422
423 // Insert neutral element in masked-out positions
424 if (Mask && !isAllTrueMask(Mask)) {
425 auto *NeutralElt = getNeutralReductionElement(VPI, VPI.getType());
426 auto *NeutralVector = Builder.CreateVectorSplat(
427 cast<VectorType>(RedOp->getType())->getElementCount(), NeutralElt);
428 RedOp = Builder.CreateSelect(Mask, RedOp, NeutralVector);
429 }
430
432 Value *Start = VPI.getOperand(VPI.getStartParamPos());
433
434 switch (VPI.getIntrinsicID()) {
435 default:
436 llvm_unreachable("Impossible reduction kind");
437 case Intrinsic::vp_reduce_add:
438 Reduction = Builder.CreateAddReduce(RedOp);
439 Reduction = Builder.CreateAdd(Reduction, Start);
440 break;
441 case Intrinsic::vp_reduce_mul:
442 Reduction = Builder.CreateMulReduce(RedOp);
443 Reduction = Builder.CreateMul(Reduction, Start);
444 break;
445 case Intrinsic::vp_reduce_and:
446 Reduction = Builder.CreateAndReduce(RedOp);
447 Reduction = Builder.CreateAnd(Reduction, Start);
448 break;
449 case Intrinsic::vp_reduce_or:
450 Reduction = Builder.CreateOrReduce(RedOp);
451 Reduction = Builder.CreateOr(Reduction, Start);
452 break;
453 case Intrinsic::vp_reduce_xor:
454 Reduction = Builder.CreateXorReduce(RedOp);
455 Reduction = Builder.CreateXor(Reduction, Start);
456 break;
457 case Intrinsic::vp_reduce_smax:
458 Reduction = Builder.CreateIntMaxReduce(RedOp, /*IsSigned*/ true);
459 Reduction =
460 Builder.CreateBinaryIntrinsic(Intrinsic::smax, Reduction, Start);
461 break;
462 case Intrinsic::vp_reduce_smin:
463 Reduction = Builder.CreateIntMinReduce(RedOp, /*IsSigned*/ true);
464 Reduction =
465 Builder.CreateBinaryIntrinsic(Intrinsic::smin, Reduction, Start);
466 break;
467 case Intrinsic::vp_reduce_umax:
468 Reduction = Builder.CreateIntMaxReduce(RedOp, /*IsSigned*/ false);
469 Reduction =
470 Builder.CreateBinaryIntrinsic(Intrinsic::umax, Reduction, Start);
471 break;
472 case Intrinsic::vp_reduce_umin:
473 Reduction = Builder.CreateIntMinReduce(RedOp, /*IsSigned*/ false);
474 Reduction =
475 Builder.CreateBinaryIntrinsic(Intrinsic::umin, Reduction, Start);
476 break;
477 case Intrinsic::vp_reduce_fmax:
478 Reduction = Builder.CreateFPMaxReduce(RedOp);
479 transferDecorations(*Reduction, VPI);
480 Reduction =
481 Builder.CreateBinaryIntrinsic(Intrinsic::maxnum, Reduction, Start);
482 break;
483 case Intrinsic::vp_reduce_fmin:
484 Reduction = Builder.CreateFPMinReduce(RedOp);
485 transferDecorations(*Reduction, VPI);
486 Reduction =
487 Builder.CreateBinaryIntrinsic(Intrinsic::minnum, Reduction, Start);
488 break;
489 case Intrinsic::vp_reduce_fmaximum:
490 Reduction = Builder.CreateFPMaximumReduce(RedOp);
491 transferDecorations(*Reduction, VPI);
492 Reduction =
493 Builder.CreateBinaryIntrinsic(Intrinsic::maximum, Reduction, Start);
494 break;
495 case Intrinsic::vp_reduce_fminimum:
496 Reduction = Builder.CreateFPMinimumReduce(RedOp);
497 transferDecorations(*Reduction, VPI);
498 Reduction =
499 Builder.CreateBinaryIntrinsic(Intrinsic::minimum, Reduction, Start);
500 break;
501 case Intrinsic::vp_reduce_fadd:
502 Reduction = Builder.CreateFAddReduce(Start, RedOp);
503 break;
504 case Intrinsic::vp_reduce_fmul:
505 Reduction = Builder.CreateFMulReduce(Start, RedOp);
506 break;
507 }
508
509 replaceOperation(*Reduction, VPI);
510 return Reduction;
511}
512
513Value *CachingVPExpander::expandPredicationToCastIntrinsic(IRBuilder<> &Builder,
514 VPIntrinsic &VPI) {
515 Value *CastOp = nullptr;
516 switch (VPI.getIntrinsicID()) {
517 default:
518 llvm_unreachable("Not a VP cast intrinsic");
519 case Intrinsic::vp_sext:
520 CastOp =
521 Builder.CreateSExt(VPI.getOperand(0), VPI.getType(), VPI.getName());
522 break;
523 case Intrinsic::vp_zext:
524 CastOp =
525 Builder.CreateZExt(VPI.getOperand(0), VPI.getType(), VPI.getName());
526 break;
527 case Intrinsic::vp_trunc:
528 CastOp =
529 Builder.CreateTrunc(VPI.getOperand(0), VPI.getType(), VPI.getName());
530 break;
531 case Intrinsic::vp_inttoptr:
532 CastOp =
533 Builder.CreateIntToPtr(VPI.getOperand(0), VPI.getType(), VPI.getName());
534 break;
535 case Intrinsic::vp_ptrtoint:
536 CastOp =
537 Builder.CreatePtrToInt(VPI.getOperand(0), VPI.getType(), VPI.getName());
538 break;
539 case Intrinsic::vp_fptosi:
540 CastOp =
541 Builder.CreateFPToSI(VPI.getOperand(0), VPI.getType(), VPI.getName());
542 break;
543
544 case Intrinsic::vp_fptoui:
545 CastOp =
546 Builder.CreateFPToUI(VPI.getOperand(0), VPI.getType(), VPI.getName());
547 break;
548 case Intrinsic::vp_sitofp:
549 CastOp =
550 Builder.CreateSIToFP(VPI.getOperand(0), VPI.getType(), VPI.getName());
551 break;
552 case Intrinsic::vp_uitofp:
553 CastOp =
554 Builder.CreateUIToFP(VPI.getOperand(0), VPI.getType(), VPI.getName());
555 break;
556 case Intrinsic::vp_fptrunc:
557 CastOp =
558 Builder.CreateFPTrunc(VPI.getOperand(0), VPI.getType(), VPI.getName());
559 break;
560 case Intrinsic::vp_fpext:
561 CastOp =
562 Builder.CreateFPExt(VPI.getOperand(0), VPI.getType(), VPI.getName());
563 break;
564 }
565 replaceOperation(*CastOp, VPI);
566 return CastOp;
567}
568
569Value *
570CachingVPExpander::expandPredicationInMemoryIntrinsic(IRBuilder<> &Builder,
571 VPIntrinsic &VPI) {
573
574 const auto &DL = F.getParent()->getDataLayout();
575
576 Value *MaskParam = VPI.getMaskParam();
577 Value *PtrParam = VPI.getMemoryPointerParam();
578 Value *DataParam = VPI.getMemoryDataParam();
579 bool IsUnmasked = isAllTrueMask(MaskParam);
580
581 MaybeAlign AlignOpt = VPI.getPointerAlignment();
582
583 Value *NewMemoryInst = nullptr;
584 switch (VPI.getIntrinsicID()) {
585 default:
586 llvm_unreachable("Not a VP memory intrinsic");
587 case Intrinsic::vp_store:
588 if (IsUnmasked) {
589 StoreInst *NewStore =
590 Builder.CreateStore(DataParam, PtrParam, /*IsVolatile*/ false);
591 if (AlignOpt.has_value())
592 NewStore->setAlignment(*AlignOpt);
593 NewMemoryInst = NewStore;
594 } else
595 NewMemoryInst = Builder.CreateMaskedStore(
596 DataParam, PtrParam, AlignOpt.valueOrOne(), MaskParam);
597
598 break;
599 case Intrinsic::vp_load:
600 if (IsUnmasked) {
601 LoadInst *NewLoad =
602 Builder.CreateLoad(VPI.getType(), PtrParam, /*IsVolatile*/ false);
603 if (AlignOpt.has_value())
604 NewLoad->setAlignment(*AlignOpt);
605 NewMemoryInst = NewLoad;
606 } else
607 NewMemoryInst = Builder.CreateMaskedLoad(
608 VPI.getType(), PtrParam, AlignOpt.valueOrOne(), MaskParam);
609
610 break;
611 case Intrinsic::vp_scatter: {
612 auto *ElementType =
613 cast<VectorType>(DataParam->getType())->getElementType();
614 NewMemoryInst = Builder.CreateMaskedScatter(
615 DataParam, PtrParam,
616 AlignOpt.value_or(DL.getPrefTypeAlign(ElementType)), MaskParam);
617 break;
618 }
619 case Intrinsic::vp_gather: {
620 auto *ElementType = cast<VectorType>(VPI.getType())->getElementType();
621 NewMemoryInst = Builder.CreateMaskedGather(
622 VPI.getType(), PtrParam,
623 AlignOpt.value_or(DL.getPrefTypeAlign(ElementType)), MaskParam, nullptr,
624 VPI.getName());
625 break;
626 }
627 }
628
629 assert(NewMemoryInst);
630 replaceOperation(*NewMemoryInst, VPI);
631 return NewMemoryInst;
632}
633
634Value *CachingVPExpander::expandPredicationInComparison(IRBuilder<> &Builder,
635 VPCmpIntrinsic &VPI) {
637 "Implicitly dropping %evl in non-speculatable operator!");
638
639 assert(*VPI.getFunctionalOpcode() == Instruction::ICmp ||
640 *VPI.getFunctionalOpcode() == Instruction::FCmp);
641
642 Value *Op0 = VPI.getOperand(0);
643 Value *Op1 = VPI.getOperand(1);
644 auto Pred = VPI.getPredicate();
645
646 auto *NewCmp = Builder.CreateCmp(Pred, Op0, Op1);
647
648 replaceOperation(*NewCmp, VPI);
649 return NewCmp;
650}
651
652void CachingVPExpander::discardEVLParameter(VPIntrinsic &VPI) {
653 LLVM_DEBUG(dbgs() << "Discard EVL parameter in " << VPI << "\n");
654
656 return;
657
658 Value *EVLParam = VPI.getVectorLengthParam();
659 if (!EVLParam)
660 return;
661
662 ElementCount StaticElemCount = VPI.getStaticVectorLength();
663 Value *MaxEVL = nullptr;
665 if (StaticElemCount.isScalable()) {
666 // TODO add caching
667 auto *M = VPI.getModule();
668 Function *VScaleFunc =
669 Intrinsic::getDeclaration(M, Intrinsic::vscale, Int32Ty);
670 IRBuilder<> Builder(VPI.getParent(), VPI.getIterator());
671 Value *FactorConst = Builder.getInt32(StaticElemCount.getKnownMinValue());
672 Value *VScale = Builder.CreateCall(VScaleFunc, {}, "vscale");
673 MaxEVL = Builder.CreateMul(VScale, FactorConst, "scalable_size",
674 /*NUW*/ true, /*NSW*/ false);
675 } else {
676 MaxEVL = ConstantInt::get(Int32Ty, StaticElemCount.getFixedValue(), false);
677 }
678 VPI.setVectorLengthParam(MaxEVL);
679}
680
681Value *CachingVPExpander::foldEVLIntoMask(VPIntrinsic &VPI) {
682 LLVM_DEBUG(dbgs() << "Folding vlen for " << VPI << '\n');
683
684 IRBuilder<> Builder(&VPI);
685
686 // Ineffective %evl parameter and so nothing to do here.
688 return &VPI;
689
690 // Only VP intrinsics can have an %evl parameter.
691 Value *OldMaskParam = VPI.getMaskParam();
692 Value *OldEVLParam = VPI.getVectorLengthParam();
693 assert(OldMaskParam && "no mask param to fold the vl param into");
694 assert(OldEVLParam && "no EVL param to fold away");
695
696 LLVM_DEBUG(dbgs() << "OLD evl: " << *OldEVLParam << '\n');
697 LLVM_DEBUG(dbgs() << "OLD mask: " << *OldMaskParam << '\n');
698
699 // Convert the %evl predication into vector mask predication.
700 ElementCount ElemCount = VPI.getStaticVectorLength();
701 Value *VLMask = convertEVLToMask(Builder, OldEVLParam, ElemCount);
702 Value *NewMaskParam = Builder.CreateAnd(VLMask, OldMaskParam);
703 VPI.setMaskParam(NewMaskParam);
704
705 // Drop the %evl parameter.
706 discardEVLParameter(VPI);
708 "transformation did not render the evl param ineffective!");
709
710 // Reassess the modified instruction.
711 return &VPI;
712}
713
714Value *CachingVPExpander::expandPredication(VPIntrinsic &VPI) {
715 LLVM_DEBUG(dbgs() << "Lowering to unpredicated op: " << VPI << '\n');
716
717 IRBuilder<> Builder(&VPI);
718
719 // Try lowering to a LLVM instruction first.
720 auto OC = VPI.getFunctionalOpcode();
721
722 if (OC && Instruction::isBinaryOp(*OC))
723 return expandPredicationInBinaryOperator(Builder, VPI);
724
725 if (auto *VPRI = dyn_cast<VPReductionIntrinsic>(&VPI))
726 return expandPredicationInReduction(Builder, *VPRI);
727
728 if (auto *VPCmp = dyn_cast<VPCmpIntrinsic>(&VPI))
729 return expandPredicationInComparison(Builder, *VPCmp);
730
732 return expandPredicationToCastIntrinsic(Builder, VPI);
733 }
734
735 switch (VPI.getIntrinsicID()) {
736 default:
737 break;
738 case Intrinsic::vp_fneg: {
739 Value *NewNegOp = Builder.CreateFNeg(VPI.getOperand(0), VPI.getName());
740 replaceOperation(*NewNegOp, VPI);
741 return NewNegOp;
742 }
743 case Intrinsic::vp_abs:
744 case Intrinsic::vp_smax:
745 case Intrinsic::vp_smin:
746 case Intrinsic::vp_umax:
747 case Intrinsic::vp_umin:
748 case Intrinsic::vp_bswap:
749 case Intrinsic::vp_bitreverse:
750 return expandPredicationToIntCall(Builder, VPI,
751 VPI.getFunctionalIntrinsicID().value());
752 case Intrinsic::vp_fabs:
753 case Intrinsic::vp_sqrt:
754 case Intrinsic::vp_maxnum:
755 case Intrinsic::vp_minnum:
756 case Intrinsic::vp_maximum:
757 case Intrinsic::vp_minimum:
758 case Intrinsic::vp_fma:
759 case Intrinsic::vp_fmuladd:
760 return expandPredicationToFPCall(Builder, VPI,
761 VPI.getFunctionalIntrinsicID().value());
762 case Intrinsic::vp_load:
763 case Intrinsic::vp_store:
764 case Intrinsic::vp_gather:
765 case Intrinsic::vp_scatter:
766 return expandPredicationInMemoryIntrinsic(Builder, VPI);
767 }
768
769 if (auto CID = VPI.getConstrainedIntrinsicID())
770 if (Value *Call = expandPredicationToFPCall(Builder, VPI, *CID))
771 return Call;
772
773 return &VPI;
774}
775
776//// } CachingVPExpander
777
778struct TransformJob {
779 VPIntrinsic *PI;
781 TransformJob(VPIntrinsic *PI, TargetTransformInfo::VPLegalization InitStrat)
782 : PI(PI), Strategy(InitStrat) {}
783
784 bool isDone() const { return Strategy.shouldDoNothing(); }
785};
786
787void sanitizeStrategy(VPIntrinsic &VPI, VPLegalization &LegalizeStrat) {
788 // Operations with speculatable lanes do not strictly need predication.
789 if (maySpeculateLanes(VPI)) {
790 // Converting a speculatable VP intrinsic means dropping %mask and %evl.
791 // No need to expand %evl into the %mask only to ignore that code.
792 if (LegalizeStrat.OpStrategy == VPLegalization::Convert)
794 return;
795 }
796
797 // We have to preserve the predicating effect of %evl for this
798 // non-speculatable VP intrinsic.
799 // 1) Never discard %evl.
800 // 2) If this VP intrinsic will be expanded to non-VP code, make sure that
801 // %evl gets folded into %mask.
802 if ((LegalizeStrat.EVLParamStrategy == VPLegalization::Discard) ||
803 (LegalizeStrat.OpStrategy == VPLegalization::Convert)) {
805 }
806}
807
809CachingVPExpander::getVPLegalizationStrategy(const VPIntrinsic &VPI) const {
810 auto VPStrat = TTI.getVPLegalizationStrategy(VPI);
811 if (LLVM_LIKELY(!UsingTTIOverrides)) {
812 // No overrides - we are in production.
813 return VPStrat;
814 }
815
816 // Overrides set - we are in testing, the following does not need to be
817 // efficient.
819 VPStrat.OpStrategy = parseOverrideOption(MaskTransformOverride);
820 return VPStrat;
821}
822
823/// Expand llvm.vp.* intrinsics as requested by \p TTI.
824bool CachingVPExpander::expandVectorPredication() {
826
827 // Collect all VPIntrinsics that need expansion and determine their expansion
828 // strategy.
829 for (auto &I : instructions(F)) {
830 auto *VPI = dyn_cast<VPIntrinsic>(&I);
831 if (!VPI)
832 continue;
833 auto VPStrat = getVPLegalizationStrategy(*VPI);
834 sanitizeStrategy(*VPI, VPStrat);
835 if (!VPStrat.shouldDoNothing())
836 Worklist.emplace_back(VPI, VPStrat);
837 }
838 if (Worklist.empty())
839 return false;
840
841 // Transform all VPIntrinsics on the worklist.
842 LLVM_DEBUG(dbgs() << "\n:::: Transforming " << Worklist.size()
843 << " instructions ::::\n");
844 for (TransformJob Job : Worklist) {
845 // Transform the EVL parameter.
846 switch (Job.Strategy.EVLParamStrategy) {
848 break;
850 discardEVLParameter(*Job.PI);
851 break;
853 if (foldEVLIntoMask(*Job.PI))
854 ++NumFoldedVL;
855 break;
856 }
857 Job.Strategy.EVLParamStrategy = VPLegalization::Legal;
858
859 // Replace with a non-predicated operation.
860 switch (Job.Strategy.OpStrategy) {
862 break;
864 llvm_unreachable("Invalid strategy for operators.");
866 expandPredication(*Job.PI);
867 ++NumLoweredVPOps;
868 break;
869 }
870 Job.Strategy.OpStrategy = VPLegalization::Legal;
871
872 assert(Job.isDone() && "incomplete transformation");
873 }
874
875 return true;
876}
877class ExpandVectorPredication : public FunctionPass {
878public:
879 static char ID;
880 ExpandVectorPredication() : FunctionPass(ID) {
882 }
883
884 bool runOnFunction(Function &F) override {
885 const auto *TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
886 CachingVPExpander VPExpander(F, *TTI);
887 return VPExpander.expandVectorPredication();
888 }
889
890 void getAnalysisUsage(AnalysisUsage &AU) const override {
892 AU.setPreservesCFG();
893 }
894};
895} // namespace
896
897char ExpandVectorPredication::ID;
898INITIALIZE_PASS_BEGIN(ExpandVectorPredication, "expandvp",
899 "Expand vector predication intrinsics", false, false)
902INITIALIZE_PASS_END(ExpandVectorPredication, "expandvp",
903 "Expand vector predication intrinsics", false, false)
904
906 return new ExpandVectorPredication();
907}
908
911 const auto &TTI = AM.getResult<TargetIRAnalysis>(F);
912 CachingVPExpander VPExpander(F, TTI);
913 if (!VPExpander.expandVectorPredication())
914 return PreservedAnalyses::all();
917 return PA;
918}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
AMDGPU promote alloca to vector or false DEBUG_TYPE to vector
Expand Atomic instructions
#define LLVM_LIKELY(EXPR)
Definition: Compiler.h:240
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
#define LLVM_DEBUG(X)
Definition: Debug.h:101
static VPTransform parseOverrideOption(const std::string &TextOpt)
static cl::opt< std::string > MaskTransformOverride("expandvp-override-mask-transform", cl::init(""), cl::Hidden, cl::desc("Options: <empty>" VPINTERNAL_VPLEGAL_CASES ". If non-empty, Ignore " "TargetTransformInfo and " "always use this transformation for the %mask parameter (Used in " "testing)."))
static cl::opt< std::string > EVLTransformOverride("expandvp-override-evl-transform", cl::init(""), cl::Hidden, cl::desc("Options: <empty>" VPINTERNAL_VPLEGAL_CASES ". If non-empty, ignore " "TargetTransformInfo and " "always use this transformation for the %evl parameter (Used in " "testing)."))
static void replaceOperation(Value &NewOp, VPIntrinsic &OldOp)
Transfer all properties from OldOp to NewOp and replace all uses.
static bool isAllTrueMask(Value *MaskVal)
static void transferDecorations(Value &NewVal, VPIntrinsic &VPI)
Transfer operation properties from OldVPI to NewVal.
static bool anyExpandVPOverridesSet()
static bool maySpeculateLanes(VPIntrinsic &VPI)
Expand vector predication intrinsics
static Constant * getSafeDivisor(Type *DivTy)
#define VPINTERNAL_VPLEGAL_CASES
loop Loop Strength Reduction
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
IntegerType * Int32Ty
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:55
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:59
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:52
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:167
This pass exposes codegen information to IR-level passes.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
Definition: APInt.h:187
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
Definition: APInt.h:197
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:321
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:473
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:269
bool hasFnAttr(Attribute::AttrKind Kind) const
Return true if the attribute exists for the function.
const Module * getModule() const
Return the module owning the function this basic block belongs to, or nullptr if the function does no...
Definition: BasicBlock.cpp:289
Represents analyses that only rely on functions' control flow.
Definition: Analysis.h:70
@ ICMP_ULT
unsigned less than
Definition: InstrTypes.h:1018
ConstantFP - Floating Point Values [float, double].
Definition: Constants.h:268
static Constant * getNegativeZero(Type *Ty)
Definition: Constants.h:306
static Constant * getQNaN(Type *Ty, bool Negative=false, APInt *Payload=nullptr)
Definition: Constants.cpp:1015
static Constant * get(ArrayRef< Constant * > V)
Definition: Constants.cpp:1398
This is an important base class in LLVM.
Definition: Constant.h:41
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Definition: Constants.cpp:370
This class represents an Operation in the Expression.
Legacy analysis pass which computes a DominatorTree.
Definition: Dominators.h:317
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Convenience struct for specifying and reasoning about fast-math flags.
Definition: FMF.h:20
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
virtual bool runOnFunction(Function &F)=0
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
CallInst * CreateMulReduce(Value *Src)
Create a vector int mul reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:437
CallInst * CreateFAddReduce(Value *Acc, Value *Src)
Create a sequential vector fadd reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:417
Value * CreateBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Instruction *FMFSource=nullptr, const Twine &Name="")
Create a call to intrinsic ID with 2 operands which is mangled on the first type.
Definition: IRBuilder.cpp:921
IntegerType * getInt1Ty()
Fetch the type representing a single bit.
Definition: IRBuilder.h:511
Value * CreateSIToFP(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2094
Value * CreateFPTrunc(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2101
CallInst * CreateAndReduce(Value *Src)
Create a vector int AND reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:441
Value * CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name="")
Return a vector value that contains.
Definition: IRBuilder.cpp:1193
CallInst * CreateMaskedLoad(Type *Ty, Value *Ptr, Align Alignment, Value *Mask, Value *PassThru=nullptr, const Twine &Name="")
Create a call to Masked Load intrinsic.
Definition: IRBuilder.cpp:578
CallInst * CreateConstrainedFPCall(Function *Callee, ArrayRef< Value * > Args, const Twine &Name="", std::optional< RoundingMode > Rounding=std::nullopt, std::optional< fp::ExceptionBehavior > Except=std::nullopt)
Definition: IRBuilder.cpp:1074
Value * CreateSelect(Value *C, Value *True, Value *False, const Twine &Name="", Instruction *MDFrom=nullptr)
Definition: IRBuilder.cpp:1091
Value * CreateFPToUI(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2067
Value * CreateSExt(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2033
Value * CreateIntToPtr(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2122
CallInst * CreateAddReduce(Value *Src)
Create a vector int add reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:433
Value * CreateUIToFP(Value *V, Type *DestTy, const Twine &Name="", bool IsNonNeg=false)
Definition: IRBuilder.h:2081
BasicBlock * GetInsertBlock() const
Definition: IRBuilder.h:174
CallInst * CreateXorReduce(Value *Src)
Create a vector int XOR reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:449
CallInst * CreateOrReduce(Value *Src)
Create a vector int OR reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:445
CallInst * CreateFPMinReduce(Value *Src)
Create a vector float min reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:469
CallInst * CreateFPMaximumReduce(Value *Src)
Create a vector float maximum reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:473
CallInst * CreateFPMaxReduce(Value *Src)
Create a vector float max reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:465
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
Definition: IRBuilder.h:486
Value * CreateCmp(CmpInst::Predicate Pred, Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2366
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Definition: IRBuilder.h:1790
Value * CreateZExt(Value *V, Type *DestTy, const Twine &Name="", bool IsNonNeg=false)
Definition: IRBuilder.h:2021
Value * CreateAnd(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1475
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Definition: IRBuilder.h:1803
CallInst * CreateIntMaxReduce(Value *Src, bool IsSigned=false)
Create a vector integer max reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:453
CallInst * CreateMaskedStore(Value *Val, Value *Ptr, Align Alignment, Value *Mask)
Create a call to Masked Store intrinsic.
Definition: IRBuilder.cpp:598
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1327
Value * CreatePtrToInt(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2117
Value * CreateTrunc(Value *V, Type *DestTy, const Twine &Name="", bool IsNUW=false, bool IsNSW=false)
Definition: IRBuilder.h:2007
Value * CreateOr(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1497
Value * CreateBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1666
CallInst * CreateIntMinReduce(Value *Src, bool IsSigned=false)
Create a vector integer min reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:459
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args=std::nullopt, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2412
Value * CreateFPExt(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2110
Value * CreateXor(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1519
CallInst * CreateFMulReduce(Value *Acc, Value *Src)
Create a sequential vector fmul reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:425
Value * CreateICmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:2351
Value * CreateFNeg(Value *V, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1730
Value * CreateMul(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1361
CallInst * CreateMaskedScatter(Value *Val, Value *Ptrs, Align Alignment, Value *Mask=nullptr)
Create a call to Masked Scatter intrinsic.
Definition: IRBuilder.cpp:661
CallInst * CreateFPMinimumReduce(Value *Src)
Create a vector float minimum reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:477
CallInst * CreateMaskedGather(Type *Ty, Value *Ptrs, Align Alignment, Value *Mask=nullptr, Value *PassThru=nullptr, const Twine &Name="")
Create a call to Masked Gather intrinsic.
Definition: IRBuilder.cpp:630
Value * CreateFPToSI(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2074
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2666
const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
Definition: Instruction.cpp:83
bool isBinaryOp() const
Definition: Instruction.h:257
const BasicBlock * getParent() const
Definition: Instruction.h:152
InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
FastMathFlags getFastMathFlags() const LLVM_READONLY
Convenience function for getting all the fast-math flags, which must be an operator which supports th...
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
Definition: IntrinsicInst.h:54
An instruction for reading from memory.
Definition: Instructions.h:184
void setAlignment(Align Align)
Definition: Instructions.h:240
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition: Pass.cpp:98
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:115
void preserveSet()
Mark an analysis set as preserved.
Definition: Analysis.h:144
bool empty() const
Definition: SmallVector.h:94
size_t size() const
Definition: SmallVector.h:91
reference emplace_back(ArgTypes &&... Args)
Definition: SmallVector.h:950
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
An instruction for storing to memory.
Definition: Instructions.h:317
void setAlignment(Align Align)
Definition: Instructions.h:373
A switch()-like statement whose cases are string literals.
Definition: StringSwitch.h:44
Analysis pass providing the TargetTransformInfo.
Wrapper pass for TargetTransformInfo.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
VPLegalization getVPLegalizationStrategy(const VPIntrinsic &PI) const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
const fltSemantics & getFltSemantics() const
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition: Type.h:234
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition: Type.h:129
static IntegerType * getInt32Ty(LLVMContext &C)
Value * getOperand(unsigned i) const
Definition: User.h:169
static bool isVPCast(Intrinsic::ID ID)
CmpInst::Predicate getPredicate() const
This is the common base class for vector predication intrinsics.
std::optional< unsigned > getFunctionalIntrinsicID() const
bool canIgnoreVectorLengthParam() const
void setMaskParam(Value *)
Value * getVectorLengthParam() const
void setVectorLengthParam(Value *)
Value * getMemoryDataParam() const
Value * getMemoryPointerParam() const
std::optional< unsigned > getConstrainedIntrinsicID() const
MaybeAlign getPointerAlignment() const
Value * getMaskParam() const
ElementCount getStaticVectorLength() const
std::optional< unsigned > getFunctionalOpcode() const
This represents vector predication reduction intrinsics.
unsigned getStartParamPos() const
unsigned getVectorParamPos() const
LLVM Value Representation.
Definition: Value.h:74
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition: Value.cpp:534
LLVMContext & getContext() const
All values hold a context through their type.
Definition: Value.cpp:1074
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
constexpr ScalarTy getFixedValue() const
Definition: TypeSize.h:199
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition: TypeSize.h:171
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
Definition: TypeSize.h:168
self_iterator getIterator()
Definition: ilist_node.h:109
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
Definition: BitmaskEnum.h:121
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
bool isConstrainedFPIntrinsic(ID QID)
Returns true if the intrinsic ID is for one of the "Constrained Floating-Point Intrinsics".
Definition: Function.cpp:1491
AttributeList getAttributes(LLVMContext &C, ID id)
Return the attributes for an intrinsic.
Function * getDeclaration(Module *M, ID id, ArrayRef< Type * > Tys=std::nullopt)
Create or insert an LLVM Function declaration for an intrinsic, and return it.
Definition: Function.cpp:1471
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
ElementType
The element type of an SRV or UAV resource.
Definition: DXILABI.h:68
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createExpandVectorPredicationPass()
This pass expands the vector predication intrinsics into unpredicated instructions with selects or ju...
void initializeExpandVectorPredicationPass(PassRegistry &)
Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
bool isSafeToSpeculativelyExecuteWithOpcode(unsigned Opcode, const Instruction *Inst, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
This returns the same result as isSafeToSpeculativelyExecute if Opcode is the actual opcode of Inst.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition: Alignment.h:117
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
Definition: Alignment.h:141