LLVM 24.0.0git
VPlanPatternMatch.h
Go to the documentation of this file.
1//===- VPlanPatternMatch.h - Match on VPValues and recipes ------*- C++ -*-===//
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 file provides a simple and efficient mechanism for performing general
10// tree-based pattern matches on the VPlan values and recipes, based on
11// LLVM's IR pattern matchers.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TRANSFORM_VECTORIZE_VPLANPATTERNMATCH_H
16#define LLVM_TRANSFORM_VECTORIZE_VPLANPATTERNMATCH_H
17
18#include "VPlan.h"
19#include "VPlanUtils.h"
21#include <utility>
22
24
25using namespace llvm::PatternMatchHelpers;
26
27template <typename Val, typename Pattern> bool match(Val *V, const Pattern &P) {
28 return P.match(V);
29}
30
31template <typename Pattern> bool match(VPUser *U, const Pattern &P) {
32 auto *R = dyn_cast<VPRecipeBase>(U);
33 return R && match(R, P);
34}
35
36template <typename Pattern> bool match(VPSingleDefRecipe *R, const Pattern &P) {
37 return P.match(static_cast<const VPRecipeBase *>(R));
38}
39
40/// A match functor that can be used as a UnaryPredicate in functional
41/// algorithms like all_of.
42template <typename Pattern> auto match_fn(const Pattern &P) {
43 return [&P](auto *V) { return match(V, P); };
44}
45
46/// Match an arbitrary VPValue and ignore it.
47inline auto m_VPValue() { return m_Isa<VPValue>(); }
48
49/// Match a specified VPValue.
51 const VPValue *Val;
52
53 specificval_ty(const VPValue *V) : Val(V) {}
54
55 bool match(const VPValue *VPV) const { return VPV == Val; }
56};
57
58inline specificval_ty m_Specific(const VPValue *VPV) { return VPV; }
59
60/// Like m_Specific(), but works if the specific value to match is determined
61/// as part of the same match() expression. For example:
62/// m_Mul(m_VPValue(X), m_Specific(X)) is incorrect, because m_Specific() will
63/// bind X before the pattern match starts.
64/// m_Mul(m_VPValue(X), m_Deferred(X)) is correct, and will check against
65/// whichever value m_VPValue(X) populated.
66inline match_deferred<VPValue> m_Deferred(VPValue *const &V) { return V; }
67
68/// Match an integer constant if Pred::isValue returns true for the APInt. \p
69/// BitWidth optionally specifies the bitwidth the matched constant must have.
70/// If it is 0, the matched constant can have any bitwidth.
71template <typename Pred, unsigned BitWidth = 0> struct int_pred_ty {
72 Pred P;
73
74 int_pred_ty(Pred P) : P(std::move(P)) {}
75 int_pred_ty() : P() {}
76
77 bool match(const VPValue *VPV) const {
78 auto *VPI = dyn_cast<VPInstruction>(VPV);
79 if (VPI && VPI->getOpcode() == VPInstruction::Broadcast)
80 VPV = VPI->getOperand(0);
81 auto *CI = dyn_cast<VPConstantInt>(VPV);
82 if (!CI)
83 return false;
84
85 if (BitWidth != 0 && CI->getBitWidth() != BitWidth)
86 return false;
87 return P.isValue(CI->getAPInt());
88 }
89};
90
91/// Match a specified signed or unsigned integer value.
95
98
99 bool isValue(const APInt &C) const {
101 }
102};
103
104template <unsigned Bitwidth = 0>
106
110
112 return specific_intval<0>(
113 is_specific_int(APInt(64, V, /*isSigned=*/true), /*IsSigned=*/true));
114}
115
117 bool isValue(const APInt &C) const { return C.isAllOnes(); }
118};
119
120/// Match an integer or vector with all bits set.
121/// For vectors, this includes constants with undefined elements.
125
127 bool isValue(const APInt &C) const { return C.isZero(); }
128};
129
130struct is_one {
131 bool isValue(const APInt &C) const { return C.isOne(); }
132};
133
134/// Match an integer 0 or a vector with all elements equal to 0.
135/// For vectors, this includes constants with undefined elements.
139
140/// Match an integer 1 or a vector with all elements equal to 1.
141/// For vectors, this includes constants with undefined elements.
143
145
146inline int_pred_ty<is_one, 1> m_True() { return {}; }
147
149 const APInt *&Res;
150
151 bind_apint(const APInt *&Res) : Res(Res) {}
152
153 bool match(const VPValue *VPV) const {
154 auto *CI = dyn_cast<VPConstantInt>(VPV);
155 if (!CI)
156 return false;
157 Res = &CI->getAPInt();
158 return true;
159 }
160};
161
162inline bind_apint m_APInt(const APInt *&C) { return C; }
163
166
168
169 bool match(const VPValue *VPV) const {
170 const APInt *APConst;
171 if (!bind_apint(APConst).match(VPV))
172 return false;
173 if (auto C = APConst->tryZExtValue()) {
174 Res = *C;
175 return true;
176 }
177 return false;
178 }
179};
180
182 bool match(const VPValue *V) const {
183 return isa<VPIRValue>(V) &&
185 }
186};
187
188/// Match a VPIRValue that's poison.
189inline match_poison m_Poison() { return match_poison(); }
190
191/// Match a plain integer constant no wider than 64-bits, capturing it if we
192/// match.
194
195/// Match a VPValue, capturing it if we match.
196inline match_bind<VPValue> m_VPValue(VPValue *&V) { return V; }
197
198/// Match against the nested pattern, and capture the value if we match.
199template <typename Op_t> inline auto m_VPValue(VPValue *&V, const Op_t &Op) {
200 return m_CombineAnd(Op, m_VPValue(V));
201}
202
203/// Match a VPIRValue.
205
206/// Match a VPSingleDefRecipe, capturing if we match.
209 return V;
210}
211
212/// Match a VPInstruction, capturing if we match.
216
217template <typename Ops_t, unsigned Opcode, bool Commutative,
218 typename... RecipeTys>
220 Ops_t Ops;
221
222 template <typename... OpTy> Recipe_match(OpTy... Ops) : Ops(Ops...) {
223 static_assert(std::tuple_size<Ops_t>::value == sizeof...(Ops) &&
224 "number of operands in constructor doesn't match Ops_t");
225 static_assert((!Commutative || std::tuple_size<Ops_t>::value == 2) &&
226 "only binary ops can be commutative");
227 }
228
229 bool match(const VPValue *V) const {
230 auto *DefR = V->getDefiningRecipe();
231 return DefR && match(DefR);
232 }
233
234 bool match(const VPSingleDefRecipe *R) const {
235 return match(static_cast<const VPRecipeBase *>(R));
236 }
237
238 bool match(const VPRecipeBase *R) const {
239 if (std::tuple_size_v<Ops_t> == 0) {
240 auto *VPI = dyn_cast<VPInstruction>(R);
241 return VPI && VPI->getOpcode() == Opcode;
242 }
243
244 if ((!matchRecipeAndOpcode<RecipeTys>(R) && ...))
245 return false;
246
247 if (R->getNumOperands() < std::tuple_size<Ops_t>::value) {
248 [[maybe_unused]] auto *RepR = dyn_cast<VPReplicateRecipe>(R);
250 cast<VPInstruction>(R)->getNumOperandsForOpcode() == -1u) ||
251 (RepR && std::tuple_size_v<Ops_t> ==
252 RepR->getNumOperandsWithoutMask())) &&
253 "non-variadic recipe with matched opcode does not have the "
254 "expected number of operands");
255 return false;
256 }
257
258 // If the recipe has more operands than expected, we only support matching
259 // masked VPInstructions or predicated VPReplicateRecipes, where the number
260 // of operands of the matcher matches the number of operands excluding the
261 // mask.
262 if (R->getNumOperands() > std::tuple_size<Ops_t>::value) {
263 if (auto *VPI = dyn_cast<VPInstruction>(R)) {
264 if (!VPI->isMasked() ||
265 VPI->getNumOperandsWithoutMask() != std::tuple_size<Ops_t>::value)
266 return false;
267 } else if (auto *RepR = dyn_cast<VPReplicateRecipe>(R)) {
268 if (!RepR->isPredicated() ||
269 RepR->getNumOperandsWithoutMask() != std::tuple_size<Ops_t>::value)
270 return false;
271 } else {
272 return false;
273 }
274 }
275
276 auto IdxSeq = std::make_index_sequence<std::tuple_size<Ops_t>::value>();
277 if (all_of_tuple_elements(IdxSeq, [R](auto Op, unsigned Idx) {
278 return Op.match(R->getOperand(Idx));
279 }))
280 return true;
281
282 return Commutative &&
283 all_of_tuple_elements(IdxSeq, [R](auto Op, unsigned Idx) {
284 return Op.match(R->getOperand(R->getNumOperands() - Idx - 1));
285 });
286 }
287
288private:
289 template <typename RecipeTy>
290 static bool matchRecipeAndOpcode(const VPRecipeBase *R) {
291 auto *DefR = dyn_cast<RecipeTy>(R);
292 // Check for recipes that do not have opcodes.
293 if constexpr (std::is_same_v<RecipeTy, VPScalarIVStepsRecipe> ||
294 std::is_same_v<RecipeTy, VPDerivedIVRecipe> ||
295 std::is_same_v<RecipeTy, VPVectorEndPointerRecipe>)
296 return DefR;
297 else
298 return DefR && DefR->getOpcode() == Opcode;
299 }
300
301 /// Helper to check if predicate \p P holds on all tuple elements in Ops using
302 /// the provided index sequence.
303 template <typename Fn, std::size_t... Is>
304 bool all_of_tuple_elements(std::index_sequence<Is...>,
305 [[maybe_unused]] Fn P) const {
306 return (P(std::get<Is>(Ops), Is) && ...);
307 }
308};
309
310template <unsigned Opcode, typename... OpTys>
312 Recipe_match<std::tuple<OpTys...>, Opcode, /*Commutative*/ false,
315
316template <unsigned Opcode, typename... OpTys>
318 Recipe_match<std::tuple<OpTys...>, Opcode, /*Commutative*/ true,
320
321template <unsigned Opcode, typename... OpTys>
322using VPInstruction_match = Recipe_match<std::tuple<OpTys...>, Opcode,
323 /*Commutative*/ false, VPInstruction>;
324
325template <unsigned Opcode, typename... OpTys>
327 Recipe_match<std::tuple<OpTys...>, Opcode,
328 /*Commutative*/ true, VPInstruction>;
329
330template <unsigned Opcode, typename... OpTys>
331inline VPInstruction_match<Opcode, OpTys...>
332m_VPInstruction(const OpTys &...Ops) {
333 return VPInstruction_match<Opcode, OpTys...>(Ops...);
334}
335
336template <unsigned Opcode, typename Op0_t, typename Op1_t>
338m_c_VPInstruction(const Op0_t &Op0, const Op1_t &Op1) {
340}
341
342/// BuildVector is matches only its opcode, w/o matching its operands as the
343/// number of operands is not fixed.
347
348/// BuildStructVector matches only its opcode, w/o matching its operands as the
349/// number of operands is not fixed.
354
355template <typename Op0_t>
357m_Freeze(const Op0_t &Op0) {
359}
360
364
365template <typename Op0_t>
370
375
376template <typename Op0_t, typename Op1_t>
378m_BranchOnTwoConds(const Op0_t &Op0, const Op1_t &Op1) {
380}
381
385
386template <typename Op0_t, typename Op1_t>
388m_BranchOnCount(const Op0_t &Op0, const Op1_t &Op1) {
390}
391
392inline auto m_Branch() {
394}
395
396template <typename Op0_t>
401
402template <typename Op0_t>
407
408template <typename Op0_t>
413
414template <typename Op0_t, typename Op1_t>
416m_ExtractElement(const Op0_t &Op0, const Op1_t &Op1) {
418}
419
420template <typename Op0_t, typename Op1_t, typename Op2_t>
422m_InsertElement(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
424}
425
426template <typename Op0_t, typename Op1_t>
428m_ExtractLane(const Op0_t &Op0, const Op1_t &Op1) {
430}
431
432template <typename Op0_t>
437
438template <typename Op0_t>
445
446template <typename Op0_t, typename Op1_t>
451
452template <typename Op0_t>
457
458template <typename Op0_t, typename Op1_t, typename Op2_t>
460 Op2_t>
461m_WideActiveLaneMask(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
463}
464
468
469template <typename Op0_t>
471m_AnyOf(const Op0_t &Op0) {
473}
474
475template <typename Op0_t>
480
481template <typename Op0_t>
486
487template <typename Op0_t, typename Op1_t, typename Op2_t>
489 Op2_t>
490m_ExtractLastActive(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
492}
493
494template <typename Op0_t>
499
500/// Match FindIV result pattern:
501/// select(icmp ne ComputeReductionResult(ReducedIV), Sentinel),
502/// ComputeReductionResult(ReducedIV), Start.
503template <typename Op0_t, typename Op1_t>
504inline bool matchFindIVResult(VPInstruction *VPI, Op0_t ReducedIV, Op1_t Start) {
506 m_ComputeReductionResult(ReducedIV),
507 m_VPValue()),
508 m_ComputeReductionResult(ReducedIV), Start));
509}
510
511template <typename Op0_t>
513m_Reverse(const Op0_t &Op0) {
515}
516
520
521template <typename Op0_t>
526
527template <unsigned Opcode, typename Op0_t>
531
532template <typename Op0_t>
536
537template <typename Op0_t>
539m_TruncOrSelf(const Op0_t &Op0) {
540 return m_CombineOr(m_Trunc(Op0), Op0);
541}
542
543template <typename Op0_t>
547
548template <typename Op0_t>
552
553template <typename Op0_t>
557
558template <typename Op0_t>
560m_BitCast(const Op0_t &Op0) {
562}
563
564template <typename Op0_t>
566m_PtrToAddr(const Op0_t &Op0) {
568}
569
570template <typename Op0_t>
574
575template <typename Op0_t>
578m_ZExtOrSExt(const Op0_t &Op0) {
579 return m_CombineOr(m_ZExt(Op0), m_SExt(Op0));
580}
581
582template <typename Op0_t> inline auto m_WidenAnyExtend(const Op0_t &Op0) {
584}
585
586template <typename Op0_t> inline auto m_AnyNeg(const Op0_t &Op0) {
587 return m_CombineOr(m_Sub(m_ZeroInt(), Op0), m_FNeg(Op0));
588}
589
590template <typename Op0_t>
592m_ZExtOrSelf(const Op0_t &Op0) {
593 return m_CombineOr(m_ZExt(Op0), Op0);
594}
595
596template <typename Op0_t> inline auto m_ZExtOrTruncOrSelf(const Op0_t &Op0) {
597 return m_CombineOr(m_ZExt(Op0), m_Trunc(Op0), Op0);
598}
599
600template <unsigned Opcode, typename Op0_t, typename Op1_t>
602 const Op1_t &Op1) {
604}
605
606template <unsigned Opcode, typename Op0_t, typename Op1_t>
608m_c_Binary(const Op0_t &Op0, const Op1_t &Op1) {
610}
611
612template <typename Op0_t, typename Op1_t>
617
618template <typename Op0_t, typename Op1_t>
620m_c_Add(const Op0_t &Op0, const Op1_t &Op1) {
622}
623
624template <typename Op0_t, typename Op1_t>
629
630template <typename Op0_t, typename Op1_t>
635
636template <typename Op0_t, typename Op1_t>
638m_c_Mul(const Op0_t &Op0, const Op1_t &Op1) {
640}
641
642template <typename Op0_t, typename Op1_t>
647
648template <typename Op0_t, typename Op1_t>
650m_LShr(const Op0_t &Op0, const Op1_t &Op1) {
652}
653
654template <typename Op0_t, typename Op1_t>
656m_FMul(const Op0_t &Op0, const Op1_t &Op1) {
658}
659
660template <typename Op0_t, typename Op1_t>
662m_FAdd(const Op0_t &Op0, const Op1_t &Op1) {
664}
665
666template <typename Op0_t, typename Op1_t>
668m_c_FAdd(const Op0_t &Op0, const Op1_t &Op1) {
670}
671
672template <typename Op0_t, typename Op1_t>
674m_UDiv(const Op0_t &Op0, const Op1_t &Op1) {
676}
677
678template <typename Op0_t, typename Op1_t>
680m_URem(const Op0_t &Op0, const Op1_t &Op1) {
682}
683
684template <typename Op0_t, typename Op1_t>
686m_SDiv(const Op0_t &Op0, const Op1_t &Op1) {
688}
689
690template <typename Op0_t, typename Op1_t>
692m_SRem(const Op0_t &Op0, const Op1_t &Op1) {
694}
695
696/// Match a binary AND operation.
697template <typename Op0_t, typename Op1_t>
699m_c_BinaryAnd(const Op0_t &Op0, const Op1_t &Op1) {
701}
702
703/// Match a binary OR operation. Note that while conceptually the operands can
704/// be matched commutatively, \p Commutative defaults to false in line with the
705/// IR-based pattern matching infrastructure. Use m_c_BinaryOr for a commutative
706/// version of the matcher.
707template <typename Op0_t, typename Op1_t>
709m_BinaryOr(const Op0_t &Op0, const Op1_t &Op1) {
711}
712
713template <typename Op0_t, typename Op1_t>
715m_c_BinaryOr(const Op0_t &Op0, const Op1_t &Op1) {
717}
718
719/// Cmp_match is a variant of BinaryRecipe_match that also binds the comparison
720/// predicate. Opcodes must either be Instruction::ICmp or Instruction::FCmp, or
721/// both.
722template <typename Op0_t, typename Op1_t, unsigned... Opcodes>
723struct Cmp_match {
724 static_assert((sizeof...(Opcodes) == 1 || sizeof...(Opcodes) == 2) &&
725 "Expected one or two opcodes");
726 static_assert(
727 ((Opcodes == Instruction::ICmp || Opcodes == Instruction::FCmp) && ...) &&
728 "Expected a compare instruction opcode");
729
733
734 Cmp_match(CmpPredicate &Pred, const Op0_t &Op0, const Op1_t &Op1)
735 : Predicate(&Pred), Op0(Op0), Op1(Op1) {}
736 Cmp_match(const Op0_t &Op0, const Op1_t &Op1) : Op0(Op0), Op1(Op1) {}
737
738 bool match(const VPValue *V) const {
739 auto *DefR = V->getDefiningRecipe();
740 return DefR && match(DefR);
741 }
742
743 bool match(const VPRecipeBase *V) const {
744 if ((m_Binary<Opcodes>(Op0, Op1).match(V) || ...)) {
745 if (Predicate)
746 *Predicate = cast<VPRecipeWithIRFlags>(V)->getPredicate();
747 return true;
748 }
749 return false;
750 }
751};
752
753/// SpecificCmp_match is a variant of Cmp_match that matches the comparison
754/// predicate, instead of binding it.
755template <typename Op0_t, typename Op1_t, unsigned... Opcodes>
760
762 : Predicate(Pred), Op0(LHS), Op1(RHS) {}
763
764 bool match(const VPValue *V) const {
765 auto *DefR = V->getDefiningRecipe();
766 return DefR && match(DefR);
767 }
768
769 bool match(const VPRecipeBase *V) const {
770 CmpPredicate CurrentPred;
771 return Cmp_match<Op0_t, Op1_t, Opcodes...>(CurrentPred, Op0, Op1)
772 .match(V) &&
774 }
775};
776
777template <typename Op0_t, typename Op1_t>
782
783template <typename Op0_t, typename Op1_t>
784inline Cmp_match<Op0_t, Op1_t, Instruction::ICmp>
785m_ICmp(CmpPredicate &Pred, const Op0_t &Op0, const Op1_t &Op1) {
786 return Cmp_match<Op0_t, Op1_t, Instruction::ICmp>(Pred, Op0, Op1);
787}
788
789template <typename Op0_t, typename Op1_t>
790inline SpecificCmp_match<Op0_t, Op1_t, Instruction::ICmp>
791m_SpecificICmp(CmpPredicate MatchPred, const Op0_t &Op0, const Op1_t &Op1) {
793 Op1);
794}
795
796template <typename Op0_t, typename Op1_t>
797inline Cmp_match<Op0_t, Op1_t, Instruction::ICmp, Instruction::FCmp>
798m_Cmp(const Op0_t &Op0, const Op1_t &Op1) {
800 Op1);
801}
802
803template <typename Op0_t, typename Op1_t>
804inline Cmp_match<Op0_t, Op1_t, Instruction::ICmp, Instruction::FCmp>
805m_Cmp(CmpPredicate &Pred, const Op0_t &Op0, const Op1_t &Op1) {
807 Pred, Op0, Op1);
808}
809
810template <typename Op0_t, typename Op1_t>
811inline SpecificCmp_match<Op0_t, Op1_t, Instruction::ICmp, Instruction::FCmp>
812m_SpecificCmp(CmpPredicate MatchPred, const Op0_t &Op0, const Op1_t &Op1) {
814 MatchPred, Op0, Op1);
815}
816
817template <typename Op0_t, typename Op1_t>
818inline auto m_GetElementPtr(const Op0_t &Op0, const Op1_t &Op1) {
819 return m_CombineOr(
820 Recipe_match<std::tuple<Op0_t, Op1_t>, Instruction::GetElementPtr,
821 /*Commutative*/ false, VPReplicateRecipe, VPWidenGEPRecipe>(
822 Op0, Op1),
825}
826
827/// Match a VPBlendRecipe with 2 incoming values ([I0, I1, M1] ==
828/// normalized([I0, M0, I1, M1])) as select(M1, I1, I0), mirroring how it is
829/// lowered.
830template <typename Op0_t, typename Op1_t, typename Op2_t> struct Blend2_match {
833 Op2_t FalseOp;
834
835 Blend2_match(const Op0_t &MaskOp, const Op1_t &TrueOp, const Op2_t &FalseOp)
837
838 template <typename T> bool match(const T *Val) const {
839 auto *Blend = dyn_cast<VPBlendRecipe>(Val);
840 if (!Blend || Blend->getNumIncomingValues() != 2)
841 return false;
842 return MaskOp.match(Blend->getMask(1)) &&
843 TrueOp.match(Blend->getIncomingValue(1)) &&
844 FalseOp.match(Blend->getIncomingValue(0));
845 }
846};
847
848/// Match recipe recipe with Select opcode, i.e. excluding VPBlendRecipe.
849template <typename Op0_t, typename Op1_t, typename Op2_t>
851m_Select(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
853 {Op0, Op1, Op2});
854}
855
856/// Match recipe with Select opcode or an equivalent VPBlendRecipe with 2
857/// incoming values.
858template <typename Op0_t, typename Op1_t, typename Op2_t>
859inline auto m_SelectLike(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
860 return m_CombineOr(m_Select(Op0, Op1, Op2),
861 Blend2_match<Op0_t, Op1_t, Op2_t>(Op0, Op1, Op2));
862}
863
864template <typename Op0_t> inline auto m_Not(const Op0_t &Op0) {
867}
868
869template <typename Op0_t, typename Op1_t, typename Op2_t>
870inline auto m_c_Select(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
871 return m_CombineOr(m_Select(Op0, Op1, Op2), m_Select(m_Not(Op0), Op2, Op1));
872}
873
874template <typename Op0_t, typename Op1_t>
875inline auto m_LogicalAnd(const Op0_t &Op0, const Op1_t &Op1) {
876 return m_CombineOr(
878 m_Select(Op0, Op1, m_False()));
879}
880
881template <typename Op0_t, typename Op1_t> struct RemoveMask_match {
884
886
887 template <typename OpTy> bool match(OpTy *V) const {
888 if (m_Specific(In).match(V)) {
889 Out = nullptr;
890 return true;
891 }
892 return m_LogicalAnd(m_Specific(In), m_VPValue(Out)).match(V);
893 }
894};
895
896/// Match a specific mask \p In, or a combination of it (logical-and In, Out).
897/// Returns the remaining part \p Out if so, or nullptr otherwise.
898template <typename Op0_t, typename Op1_t>
900 Op1_t &Out) {
901 return RemoveMask_match<Op0_t, Op1_t>(In, Out);
902}
903
904template <typename Op0_t, typename Op1_t>
905inline auto m_c_LogicalAnd(const Op0_t &Op0, const Op1_t &Op1) {
906 return m_CombineOr(
908 m_c_Select(Op0, Op1, m_False()));
909}
910
911template <typename Op0_t, typename Op1_t>
912inline auto m_LogicalOr(const Op0_t &Op0, const Op1_t &Op1) {
913 return m_CombineOr(
915 m_Select(Op0, m_True(), Op1));
916}
917
918template <typename Op0_t, typename Op1_t>
919inline auto m_c_LogicalOr(const Op0_t &Op0, const Op1_t &Op1) {
920 return m_c_Select(Op0, m_True(), Op1);
921}
922
923/// Match the canonical induction variable (IV) of any loop region.
925 template <typename ArgTy> bool match(const ArgTy *V) const {
926 const auto *RV = dyn_cast<VPRegionValue>(V);
927 return RV && RV->getDefiningRegion()->getCanonicalIV() == RV;
928 }
929};
930
931inline canonical_iv_match m_CanonicalIV() { return {}; }
932
933/// Match the abstract header mask of any loop region.
935 template <typename ArgTy> bool match(const ArgTy *V) const {
936 const auto *RV = dyn_cast<VPRegionValue>(V);
937 return RV && RV->getDefiningRegion()->getHeaderMask() == RV;
938 }
939};
940
941inline header_mask_match m_HeaderMask() { return {}; }
942
943/// Match a canonical VPWidenIntOrFpInductionRecipe optionally capturing it.
946
949
950 template <typename ArgTy> bool match(ArgTy *V) const {
952 if (!WidenIV || !WidenIV->isCanonical())
953 return false;
954 if (Capture)
955 *Capture = WidenIV;
956 return true;
957 }
958};
959
961
962/// Match a canonical VPWidenIntOrFpInductionRecipe, capturing it.
963inline canonical_widen_iv_match
967
968template <typename Op0_t, typename Op1_t, typename Op2_t>
969inline auto m_ScalarIVSteps(const Op0_t &Op0, const Op1_t &Op1,
970 const Op2_t &Op2) {
972 VPScalarIVStepsRecipe>({Op0, Op1, Op2});
973}
974
975template <typename Op0_t, typename Op1_t, typename Op2_t>
976inline auto m_DerivedIV(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2) {
978 VPDerivedIVRecipe>({Op0, Op1, Op2});
979}
980
981template <typename Addr_t, typename Mask_t> struct Load_match {
982 Addr_t Addr;
983 Mask_t Mask;
984
985 Load_match(Addr_t Addr, Mask_t Mask) : Addr(Addr), Mask(Mask) {}
986
987 template <typename OpTy> bool match(const OpTy *V) const {
989 if (!Load || !Addr.match(Load->getAddr()) || !Load->isMasked() ||
990 !Mask.match(Load->getMask()))
991 return false;
992 return true;
993 }
994};
995
996/// Match a (possibly reversed) masked load.
997template <typename Addr_t, typename Mask_t>
998inline Load_match<Addr_t, Mask_t> m_MaskedLoad(const Addr_t &Addr,
999 const Mask_t &Mask) {
1000 return Load_match<Addr_t, Mask_t>(Addr, Mask);
1001}
1002
1003template <typename Addr_t, typename Val_t, typename Mask_t> struct Store_match {
1004 Addr_t Addr;
1005 Val_t Val;
1006 Mask_t Mask;
1007
1008 Store_match(Addr_t Addr, Val_t Val, Mask_t Mask)
1009 : Addr(Addr), Val(Val), Mask(Mask) {}
1010
1011 template <typename OpTy> bool match(const OpTy *V) const {
1013 if (!Store || !Addr.match(Store->getAddr()) ||
1014 !Val.match(Store->getStoredValue()) || !Store->isMasked() ||
1015 !Mask.match(Store->getMask()))
1016 return false;
1017 return true;
1018 }
1019};
1020
1021/// Match a (possibly reversed) masked store.
1022template <typename Addr_t, typename Val_t, typename Mask_t>
1023inline Store_match<Addr_t, Val_t, Mask_t>
1024m_MaskedStore(const Addr_t &Addr, const Val_t &Val, const Mask_t &Mask) {
1025 return Store_match<Addr_t, Val_t, Mask_t>(Addr, Val, Mask);
1026}
1027
1028template <typename Op0_t, typename Op1_t>
1031 /*Commutative*/ false, VPVectorEndPointerRecipe>;
1032
1033template <typename Op0_t, typename Op1_t>
1038
1039/// Match a call argument at a given argument index.
1040template <typename Opnd_t> struct Argument_match {
1041 /// Call argument index to match.
1042 unsigned OpI;
1043 Opnd_t Val;
1044
1045 Argument_match(unsigned OpIdx, const Opnd_t &V) : OpI(OpIdx), Val(V) {}
1046
1047 template <typename OpTy> bool match(OpTy *V) const {
1048 if (const auto *R = dyn_cast<VPWidenIntrinsicRecipe>(V))
1049 return Val.match(R->getOperand(OpI));
1050 if (const auto *R = dyn_cast<VPWidenCallRecipe>(V))
1051 return Val.match(R->getOperand(OpI));
1052 if (const auto *R = dyn_cast<VPReplicateRecipe>(V))
1053 if (R->getOpcode() == Instruction::Call)
1054 return Val.match(R->getOperand(OpI));
1055 if (const auto *R = dyn_cast<VPInstruction>(V))
1056 if (R->getOpcode() == Instruction::Call ||
1057 R->getOpcode() == VPInstruction::Intrinsic)
1058 return Val.match(R->getOperand(OpI));
1059 return false;
1060 }
1061};
1062
1063/// Match a call argument.
1064template <unsigned OpI, typename Opnd_t>
1065inline Argument_match<Opnd_t> m_Argument(const Opnd_t &Op) {
1066 return Argument_match<Opnd_t>(OpI, Op);
1067}
1068
1069/// Intrinsic matchers.
1071 unsigned ID;
1072
1074
1075 template <typename OpTy> bool match(OpTy *V) const {
1076 return vputils::getIntrinsicID(V) == ID;
1077 }
1078};
1079
1080/// Match intrinsic calls with a runtime intrinsic ID.
1082 return IntrinsicID_match(IntrID);
1083}
1084
1086 template <Intrinsic::ID IntrID, typename... Ts, size_t... Is>
1087 static auto impl(std::index_sequence<Is...>, const Ts &...Ops) {
1088 return m_CombineAnd(IntrinsicID_match(IntrID), m_Argument<Is>(Ops)...);
1089 }
1090};
1091
1092/// Match intrinsic calls like this:
1093/// m_Intrinsic<Intrinsic::fabs>(m_VPValue(X), ...)
1094template <Intrinsic::ID IntrID, typename... Ts>
1095inline auto m_Intrinsic(const Ts &...Ops) {
1097 std::make_index_sequence<sizeof...(Ts)>{}, Ops...);
1098}
1099
1100template <Intrinsic::ID IntrID, typename... T>
1101inline auto m_WidenIntrinsic(const T &...Ops) {
1103}
1104
1105/// Match VPValues that represent live-ins: VPIRValues and (plain)
1106/// VPSymbolicValues. VPRegionValues (which inherit from VPSymbolicValue) are
1107/// not live-ins and are excluded.
1109 template <typename ITy> bool match(ITy *V) const {
1110 return isa<VPIRValue>(V) ||
1112 }
1113};
1114
1115inline auto m_VScale() { return m_Intrinsic<Intrinsic::vscale>(); }
1116
1118
1119/// Match a GEP recipe (VPWidenGEPRecipe, VPInstruction, or VPReplicateRecipe)
1120/// and bind the source element type and operands.
1124
1127
1128 template <typename ITy> bool match(ITy *V) const {
1129 return matchRecipeAndBind<VPWidenGEPRecipe>(V) ||
1130 matchRecipeAndBind<VPInstruction>(V) ||
1131 matchRecipeAndBind<VPReplicateRecipe>(V);
1132 }
1133
1134private:
1135 template <typename RecipeTy> bool matchRecipeAndBind(const VPValue *V) const {
1136 auto *DefR = dyn_cast<RecipeTy>(V);
1137 if (!DefR)
1138 return false;
1139
1140 if constexpr (std::is_same_v<RecipeTy, VPWidenGEPRecipe>) {
1141 SourceElementType = DefR->getSourceElementType();
1142 } else if (DefR->getOpcode() == Instruction::GetElementPtr) {
1143 SourceElementType = cast<GetElementPtrInst>(DefR->getUnderlyingInstr())
1144 ->getSourceElementType();
1145 } else if constexpr (std::is_same_v<RecipeTy, VPInstruction>) {
1146 if (DefR->getOpcode() == VPInstruction::PtrAdd) {
1147 // PtrAdd is a byte-offset GEP with i8 element type.
1148 LLVMContext &Ctx = DefR->getParent()->getPlan()->getContext();
1150 } else {
1151 return false;
1152 }
1153 } else {
1154 return false;
1155 }
1156
1157 Operands = ArrayRef<VPValue *>(DefR->op_begin(), DefR->op_end());
1158 return true;
1159 }
1160};
1161
1162/// Match a GEP recipe with any number of operands and bind source element type
1163/// and operands.
1164inline GetElementPtr_match m_GetElementPtr(Type *&SourceElementType,
1166 return GetElementPtr_match(SourceElementType, Operands);
1167}
1168
1169template <typename SubPattern_t> struct OneUse_match {
1170 SubPattern_t SubPattern;
1171
1172 OneUse_match(const SubPattern_t &SP) : SubPattern(SP) {}
1173
1174 template <typename OpTy> bool match(OpTy *V) const {
1175 return V->hasOneUse() && SubPattern.match(V);
1176 }
1177};
1178
1179template <typename T> inline OneUse_match<T> m_OneUse(const T &SubPattern) {
1180 return SubPattern;
1181}
1182
1185 return V;
1186}
1187
1188template <typename Op0_t, typename Op1_t>
1189inline auto m_VPPhi(const Op0_t &Op0, const Op1_t &Op1) {
1190 return Recipe_match<std::tuple<Op0_t, Op1_t>, Instruction::PHI,
1191 /*Commutative*/ false, VPInstruction>({Op0, Op1});
1192}
1193
1194/// If \p V is used by a recipe matching pattern \p P, return it. Otherwise
1195/// return nullptr;
1196template <typename MatchT>
1197VPRecipeBase *findUserOf(VPValue *V, const MatchT &P) {
1198 auto It = find_if(V->users(), match_fn(P));
1199 return It == V->user_end() ? nullptr : cast<VPRecipeBase>(*It);
1200}
1201
1202/// If \p V is used by a VPInstruction with \p Opcode, return it. Otherwise
1203/// return nullptr.
1204template <unsigned Opcode> VPInstruction *findUserOf(VPValue *V) {
1206}
1207
1208template <typename RecipeTy> RecipeTy *findUserOf(VPValue *V) {
1210}
1211} // namespace llvm::VPlanPatternMatch
1212
1213#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static constexpr Value * getValue(Ty &ValueOrUse)
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define T
#define P(N)
SI Fold Operands
This file contains the declarations of the Vectorization Plan base classes:
Value * RHS
Value * LHS
Class for arbitrary precision integers.
Definition APInt.h:78
std::optional< uint64_t > tryZExtValue() const
Get zero extended value if possible.
Definition APInt.h:1573
static bool isSameValue(const APInt &I1, const APInt &I2, bool SignedCompare=false)
Determine if two APInts have the same value, after zero-extending or sign-extending (if SignedCompare...
Definition APInt.h:551
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
@ ICMP_NE
not equal
Definition InstrTypes.h:762
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static LLVM_ABI std::optional< CmpPredicate > getMatching(CmpPredicate A, CmpPredicate B)
Compares two CmpPredicates taking samesign into account and returns the canonicalized CmpPredicate if...
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
Definition Type.cpp:297
A recipe for converting Current into Start + Current * Step.
Definition VPlan.h:4196
This is a concrete Recipe that models a single VPlan-level instruction.
Definition VPlan.h:1306
@ ExtractLastActive
Extracts the last active lane from a set of vectors.
Definition VPlan.h:1416
@ Intrinsic
Calls a scalar intrinsic. The intrinsic ID is the last operand.
Definition VPlan.h:1428
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
Definition VPlan.h:412
A recipe for handling reduction phis.
Definition VPlan.h:2861
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
Definition VPlan.h:3398
A recipe for handling phi nodes of integer and floating-point inductions, producing their scalar valu...
Definition VPlan.h:4257
VPSingleDefRecipe is a base class for recipes that model a sequence of one or more output IR that def...
Definition VPlan.h:620
This class augments VPValue with operands which provide the inverse def-use edges from VPValue's user...
Definition VPlanValue.h:401
This is the base class of the VPlan Def/Use graph, used for modeling the data flow into,...
Definition VPlanValue.h:50
A recipe to compute a pointer to the last element of each part of a widened memory access for widened...
Definition VPlan.h:2277
VPWidenCastRecipe is a recipe to create vector cast instructions.
Definition VPlan.h:1890
A recipe for handling GEP instructions.
Definition VPlan.h:2217
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
Definition VPlan.h:2616
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
Definition VPlan.h:1824
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
match_combine_and< Ty... > m_CombineAnd(const Ty &...Ps)
Combine pattern matchers matching all of Ps patterns.
auto m_Cmp()
Matches any compare instruction and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
auto m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
VPInstruction_match< VPInstruction::ExtractLastLane, VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > > m_ExtractLastLaneOfLastPart(const Op0_t &Op0)
AllRecipe_match< Instruction::Select, Op0_t, Op1_t, Op2_t > m_Select(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
Match recipe recipe with Select opcode, i.e. excluding VPBlendRecipe.
VPInstruction_match< Instruction::Freeze, Op0_t > m_Freeze(const Op0_t &Op0)
AllRecipe_commutative_match< Instruction::And, Op0_t, Op1_t > m_c_BinaryAnd(const Op0_t &Op0, const Op1_t &Op1)
Match a binary AND operation.
AllRecipe_match< Instruction::PtrToAddr, Op0_t > m_PtrToAddr(const Op0_t &Op0)
AllRecipe_match< Instruction::ZExt, Op0_t > m_ZExt(const Op0_t &Op0)
AllRecipe_match< Instruction::URem, Op0_t, Op1_t > m_URem(const Op0_t &Op0, const Op1_t &Op1)
AllRecipe_match< Instruction::Or, Op0_t, Op1_t > m_BinaryOr(const Op0_t &Op0, const Op1_t &Op1)
Match a binary OR operation.
int_pred_ty< is_specific_int, Bitwidth > specific_intval
Store_match< Addr_t, Val_t, Mask_t > m_MaskedStore(const Addr_t &Addr, const Val_t &Val, const Mask_t &Mask)
Match a (possibly reversed) masked store.
int_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
AllRecipe_match< Instruction::FMul, Op0_t, Op1_t > m_FMul(const Op0_t &Op0, const Op1_t &Op1)
SpecificCmp_match< Op0_t, Op1_t, Instruction::ICmp, Instruction::FCmp > m_SpecificCmp(CmpPredicate MatchPred, const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::AnyOf > m_AnyOf()
int_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
AllRecipe_commutative_match< Opcode, Op0_t, Op1_t > m_c_Binary(const Op0_t &Op0, const Op1_t &Op1)
AllRecipe_commutative_match< Instruction::Add, Op0_t, Op1_t > m_c_Add(const Op0_t &Op0, const Op1_t &Op1)
AllRecipe_commutative_match< Instruction::Or, Op0_t, Op1_t > m_c_BinaryOr(const Op0_t &Op0, const Op1_t &Op1)
bool matchFindIVResult(VPInstruction *VPI, Op0_t ReducedIV, Op1_t Start)
Match FindIV result pattern: select(icmp ne ComputeReductionResult(ReducedIV), Sentinel),...
VPInstruction_match< VPInstruction::ComputeReductionResult, Op0_t > m_ComputeReductionResult(const Op0_t &Op0)
IntrinsicID_match m_Intrinsic(Intrinsic::ID IntrID)
Match intrinsic calls with a runtime intrinsic ID.
auto m_WidenAnyExtend(const Op0_t &Op0)
match_bind< VPIRValue > m_VPIRValue(VPIRValue *&V)
Match a VPIRValue.
VPInstruction_match< VPInstruction::WideActiveLaneMask, Op0_t, Op1_t, Op2_t > m_WideActiveLaneMask(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< VPInstruction::StepVector > m_StepVector()
auto m_c_LogicalOr(const Op0_t &Op0, const Op1_t &Op1)
match_deferred< VPValue > m_Deferred(VPValue *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
match_combine_or< AllRecipe_match< Instruction::ZExt, Op0_t >, AllRecipe_match< Instruction::SExt, Op0_t > > m_ZExtOrSExt(const Op0_t &Op0)
auto m_VPPhi(const Op0_t &Op0, const Op1_t &Op1)
SpecificCmp_match< Op0_t, Op1_t, Instruction::ICmp > m_SpecificICmp(CmpPredicate MatchPred, const Op0_t &Op0, const Op1_t &Op1)
auto m_SelectLike(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
Match recipe with Select opcode or an equivalent VPBlendRecipe with 2 incoming values.
AllRecipe_match< Instruction::Add, Op0_t, Op1_t > m_Add(const Op0_t &Op0, const Op1_t &Op1)
match_poison m_Poison()
Match a VPIRValue that's poison.
auto m_c_Select(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
Recipe_match< std::tuple< OpTys... >, Opcode, false, VPInstruction > VPInstruction_match
VPInstruction_match< VPInstruction::BranchOnTwoConds > m_BranchOnTwoConds()
VPInstruction_match< Instruction::InsertElement, Op0_t, Op1_t, Op2_t > m_InsertElement(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
AllRecipe_match< Opcode, Op0_t, Op1_t > m_Binary(const Op0_t &Op0, const Op1_t &Op1)
AllRecipe_match< Instruction::LShr, Op0_t, Op1_t > m_LShr(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::LastActiveLane, Op0_t > m_LastActiveLane(const Op0_t &Op0)
AllRecipe_match< Opcode, Op0_t > m_Unary(const Op0_t &Op0)
auto m_WidenIntrinsic(const T &...Ops)
Recipe_match< std::tuple< OpTys... >, Opcode, true, VPInstruction > VPInstruction_commutative_match
AllRecipe_commutative_match< Instruction::FAdd, Op0_t, Op1_t > m_c_FAdd(const Op0_t &Op0, const Op1_t &Op1)
Load_match< Addr_t, Mask_t > m_MaskedLoad(const Addr_t &Addr, const Mask_t &Mask)
Match a (possibly reversed) masked load.
VPInstruction_match< VPInstruction::ExtractLastActive, Op0_t, Op1_t, Op2_t > m_ExtractLastActive(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
match_combine_or< AllRecipe_match< Instruction::Trunc, Op0_t >, Op0_t > m_TruncOrSelf(const Op0_t &Op0)
AllRecipe_match< Instruction::FPExt, Op0_t > m_FPExt(const Op0_t &Op0)
AllRecipe_commutative_match< Instruction::Mul, Op0_t, Op1_t > m_c_Mul(const Op0_t &Op0, const Op1_t &Op1)
canonical_widen_iv_match m_CanonicalWidenIV()
auto match_fn(const Pattern &P)
A match functor that can be used as a UnaryPredicate in functional algorithms like all_of.
Cmp_match< Op0_t, Op1_t, Instruction::ICmp > m_ICmp(const Op0_t &Op0, const Op1_t &Op1)
AllRecipe_match< Instruction::Mul, Op0_t, Op1_t > m_Mul(const Op0_t &Op0, const Op1_t &Op1)
specificval_ty m_Specific(const VPValue *VPV)
VPInstruction_match< VPInstruction::ExitingIVValue, Op0_t > m_ExitingIVValue(const Op0_t &Op0)
VPInstruction_match< Instruction::ExtractElement, Op0_t, Op1_t > m_ExtractElement(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::ExtractLastLane, Op0_t > m_ExtractLastLane(const Op0_t &Op0)
specific_intval< 0 > m_SpecificInt(uint64_t V)
int_pred_ty< is_zero_int, 1 > m_False()
match_bind< VPSingleDefRecipe > m_VPSingleDefRecipe(VPSingleDefRecipe *&V)
Match a VPSingleDefRecipe, capturing if we match.
VPInstruction_match< VPInstruction::BranchOnCount > m_BranchOnCount()
auto m_GetElementPtr(const Op0_t &Op0, const Op1_t &Op1)
auto m_ZExtOrTruncOrSelf(const Op0_t &Op0)
AllRecipe_match< Instruction::Sub, Op0_t, Op1_t > m_Sub(const Op0_t &Op0, const Op1_t &Op1)
canonical_iv_match m_CanonicalIV()
AllRecipe_match< Instruction::SExt, Op0_t > m_SExt(const Op0_t &Op0)
VPInstruction_commutative_match< Opcode, Op0_t, Op1_t > m_c_VPInstruction(const Op0_t &Op0, const Op1_t &Op1)
auto m_VPValue()
Match an arbitrary VPValue and ignore it.
Recipe_match< std::tuple< OpTys... >, Opcode, true, VPWidenRecipe, VPReplicateRecipe, VPInstruction > AllRecipe_commutative_match
VPInstruction_match< VPInstruction::ExtractVectorForPart, Op0_t, Op1_t > m_ExtractVectorForPart(const Op0_t &Op0, const Op1_t &Op1)
specific_intval< 0 > m_SpecificSInt(int64_t V)
AllRecipe_match< Instruction::FAdd, Op0_t, Op1_t > m_FAdd(const Op0_t &Op0, const Op1_t &Op1)
VectorEndPointerRecipe_match< Op0_t, Op1_t > m_VecEndPtr(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > m_ExtractLastPart(const Op0_t &Op0)
VPRecipeBase * findUserOf(VPValue *V, const MatchT &P)
If V is used by a recipe matching pattern P, return it.
AllRecipe_match< Instruction::BitCast, Op0_t > m_BitCast(const Op0_t &Op0)
VPInstruction_match< VPInstruction::Broadcast, Op0_t > m_Broadcast(const Op0_t &Op0)
bool match(Val *V, const Pattern &P)
header_mask_match m_HeaderMask()
OneUse_match< T > m_OneUse(const T &SubPattern)
VPInstruction_match< VPInstruction::ExplicitVectorLength, Op0_t > m_EVL(const Op0_t &Op0)
VPInstruction_match< VPInstruction::BuildVector > m_BuildVector()
BuildVector is matches only its opcode, w/o matching its operands as the number of operands is not fi...
AllRecipe_match< Instruction::Trunc, Op0_t > m_Trunc(const Op0_t &Op0)
VPInstruction_match< VPInstruction::ExtractPenultimateElement, Op0_t > m_ExtractPenultimateElement(const Op0_t &Op0)
AllRecipe_match< Instruction::Shl, Op0_t, Op1_t > m_Shl(const Op0_t &Op0, const Op1_t &Op1)
Recipe_match< std::tuple< Op0_t, Op1_t >, 0, false, VPVectorEndPointerRecipe > VectorEndPointerRecipe_match
match_bind< VPInstruction > m_VPInstruction(VPInstruction *&V)
Match a VPInstruction, capturing if we match.
AllRecipe_match< Instruction::SDiv, Op0_t, Op1_t > m_SDiv(const Op0_t &Op0, const Op1_t &Op1)
match_combine_or< AllRecipe_match< Instruction::ZExt, Op0_t >, Op0_t > m_ZExtOrSelf(const Op0_t &Op0)
VPInstruction_match< VPInstruction::FirstActiveLane, Op0_t > m_FirstActiveLane(const Op0_t &Op0)
Argument_match< Opnd_t > m_Argument(const Opnd_t &Op)
Match a call argument.
RemoveMask_match< Op0_t, Op1_t > m_RemoveMask(const Op0_t &In, Op1_t &Out)
Match a specific mask In, or a combination of it (logical-and In, Out).
int_pred_ty< is_one, 1 > m_True()
AllRecipe_match< Instruction::FNeg, Op0_t > m_FNeg(const Op0_t &Op0)
AllRecipe_match< Instruction::UDiv, Op0_t, Op1_t > m_UDiv(const Op0_t &Op0, const Op1_t &Op1)
auto m_Not(const Op0_t &Op0)
auto m_DerivedIV(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
auto m_c_LogicalAnd(const Op0_t &Op0, const Op1_t &Op1)
int_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
Recipe_match< std::tuple< OpTys... >, Opcode, false, VPWidenRecipe, VPReplicateRecipe, VPWidenCastRecipe, VPInstruction > AllRecipe_match
AllRecipe_match< Instruction::SRem, Op0_t, Op1_t > m_SRem(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::BranchOnCond > m_BranchOnCond()
match_bind< VPReductionPHIRecipe > m_ReductionPhi(VPReductionPHIRecipe *&V)
auto m_ScalarIVSteps(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< VPInstruction::ExtractLane, Op0_t, Op1_t > m_ExtractLane(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::BuildStructVector > m_BuildStructVector()
BuildStructVector matches only its opcode, w/o matching its operands as the number of operands is not...
bind_apint m_APInt(const APInt *&C)
auto m_AnyNeg(const Op0_t &Op0)
VPInstruction_match< VPInstruction::Reverse, Op0_t > m_Reverse(const Op0_t &Op0)
Intrinsic::ID getIntrinsicID(const Ty *R)
Return the intrinsic ID underlying a call.
Definition VPlanUtils.h:87
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
auto cast_or_null(const Y &Val)
Definition Casting.h:714
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1772
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
Matcher to bind the captured value.
Matcher for a specific value, but stores a reference to the value, not the value itself.
A VPValue representing a live-in from the input IR or a constant.
Definition VPlanValue.h:279
Match a call argument at a given argument index.
unsigned OpI
Call argument index to match.
Argument_match(unsigned OpIdx, const Opnd_t &V)
Match a VPBlendRecipe with 2 incoming values ([I0, I1, M1] == normalized([I0, M0, I1,...
Blend2_match(const Op0_t &MaskOp, const Op1_t &TrueOp, const Op2_t &FalseOp)
Cmp_match is a variant of BinaryRecipe_match that also binds the comparison predicate.
Cmp_match(CmpPredicate &Pred, const Op0_t &Op0, const Op1_t &Op1)
Cmp_match(const Op0_t &Op0, const Op1_t &Op1)
bool match(const VPValue *V) const
bool match(const VPRecipeBase *V) const
Match a GEP recipe (VPWidenGEPRecipe, VPInstruction, or VPReplicateRecipe) and bind the source elemen...
GetElementPtr_match(Type *&SourceElementType, ArrayRef< VPValue * > &Operands)
static auto impl(std::index_sequence< Is... >, const Ts &...Ops)
Match VPValues that represent live-ins: VPIRValues and (plain) VPSymbolicValues.
Load_match(Addr_t Addr, Mask_t Mask)
bool match(const VPSingleDefRecipe *R) const
bool match(const VPValue *V) const
bool match(const VPRecipeBase *R) const
RemoveMask_match(const Op0_t &In, Op1_t &Out)
SpecificCmp_match is a variant of Cmp_match that matches the comparison predicate,...
SpecificCmp_match(CmpPredicate Pred, const Op0_t &LHS, const Op1_t &RHS)
bool match(const VPRecipeBase *V) const
Store_match(Addr_t Addr, Val_t Val, Mask_t Mask)
bool match(const VPValue *VPV) const
bool match(const VPValue *VPV) const
Match the canonical induction variable (IV) of any loop region.
Match a canonical VPWidenIntOrFpInductionRecipe optionally capturing it.
canonical_widen_iv_match(VPWidenIntOrFpInductionRecipe *&V)
Match the abstract header mask of any loop region.
Match an integer constant if Pred::isValue returns true for the APInt.
bool match(const VPValue *VPV) const
bool isValue(const APInt &C) const
Match a specified signed or unsigned integer value.
is_specific_int(APInt Val, bool IsSigned=false)
bool match(const VPValue *V) const
bool match(const VPValue *VPV) const