1 //===- PatternMatch.h - Match on the LLVM IR --------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides a simple and efficient mechanism for performing general
11 // tree-based pattern matches on the LLVM IR.  The power of these routines is
12 // that it allows you to write concise patterns that are expressive and easy to
13 // understand.  The other major advantage of this is that it allows you to
14 // trivially capture/bind elements in the pattern to variables.  For example,
15 // you can do something like this:
16 //
17 //  Value *Exp = ...
18 //  Value *X, *Y;  ConstantInt *C1, *C2;      // (X & C1) | (Y & C2)
19 //  if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)),
20 //                      m_And(m_Value(Y), m_ConstantInt(C2))))) {
21 //    ... Pattern is matched and variables are bound ...
22 //  }
23 //
24 // This is primarily useful to things like the instruction combiner, but can
25 // also be useful for static analysis tools or code generators.
26 //
27 //===----------------------------------------------------------------------===//
28 
29 #ifndef LLVM_IR_PATTERNMATCH_H
30 #define LLVM_IR_PATTERNMATCH_H
31 
32 #include "llvm/IR/CallSite.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/Instructions.h"
35 #include "llvm/IR/Intrinsics.h"
36 #include "llvm/IR/Operator.h"
37 
38 namespace llvm {
39 namespace PatternMatch {
40 
match(Val * V,const Pattern & P)41 template <typename Val, typename Pattern> bool match(Val *V, const Pattern &P) {
42   return const_cast<Pattern &>(P).match(V);
43 }
44 
45 template <typename SubPattern_t> struct OneUse_match {
46   SubPattern_t SubPattern;
47 
OneUse_matchOneUse_match48   OneUse_match(const SubPattern_t &SP) : SubPattern(SP) {}
49 
matchOneUse_match50   template <typename OpTy> bool match(OpTy *V) {
51     return V->hasOneUse() && SubPattern.match(V);
52   }
53 };
54 
m_OneUse(const T & SubPattern)55 template <typename T> inline OneUse_match<T> m_OneUse(const T &SubPattern) {
56   return SubPattern;
57 }
58 
59 template <typename Class> struct class_match {
matchclass_match60   template <typename ITy> bool match(ITy *V) { return isa<Class>(V); }
61 };
62 
63 /// \brief Match an arbitrary value and ignore it.
m_Value()64 inline class_match<Value> m_Value() { return class_match<Value>(); }
65 
66 /// \brief Match an arbitrary binary operation and ignore it.
m_BinOp()67 inline class_match<BinaryOperator> m_BinOp() {
68   return class_match<BinaryOperator>();
69 }
70 
71 /// \brief Matches any compare instruction and ignore it.
m_Cmp()72 inline class_match<CmpInst> m_Cmp() { return class_match<CmpInst>(); }
73 
74 /// \brief Match an arbitrary ConstantInt and ignore it.
m_ConstantInt()75 inline class_match<ConstantInt> m_ConstantInt() {
76   return class_match<ConstantInt>();
77 }
78 
79 /// \brief Match an arbitrary undef constant.
m_Undef()80 inline class_match<UndefValue> m_Undef() { return class_match<UndefValue>(); }
81 
82 /// \brief Match an arbitrary Constant and ignore it.
m_Constant()83 inline class_match<Constant> m_Constant() { return class_match<Constant>(); }
84 
85 /// Matching combinators
86 template <typename LTy, typename RTy> struct match_combine_or {
87   LTy L;
88   RTy R;
89 
match_combine_ormatch_combine_or90   match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
91 
matchmatch_combine_or92   template <typename ITy> bool match(ITy *V) {
93     if (L.match(V))
94       return true;
95     if (R.match(V))
96       return true;
97     return false;
98   }
99 };
100 
101 template <typename LTy, typename RTy> struct match_combine_and {
102   LTy L;
103   RTy R;
104 
match_combine_andmatch_combine_and105   match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
106 
matchmatch_combine_and107   template <typename ITy> bool match(ITy *V) {
108     if (L.match(V))
109       if (R.match(V))
110         return true;
111     return false;
112   }
113 };
114 
115 /// Combine two pattern matchers matching L || R
116 template <typename LTy, typename RTy>
m_CombineOr(const LTy & L,const RTy & R)117 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
118   return match_combine_or<LTy, RTy>(L, R);
119 }
120 
121 /// Combine two pattern matchers matching L && R
122 template <typename LTy, typename RTy>
m_CombineAnd(const LTy & L,const RTy & R)123 inline match_combine_and<LTy, RTy> m_CombineAnd(const LTy &L, const RTy &R) {
124   return match_combine_and<LTy, RTy>(L, R);
125 }
126 
127 struct match_zero {
matchmatch_zero128   template <typename ITy> bool match(ITy *V) {
129     if (const auto *C = dyn_cast<Constant>(V))
130       return C->isNullValue();
131     return false;
132   }
133 };
134 
135 /// \brief Match an arbitrary zero/null constant.  This includes
136 /// zero_initializer for vectors and ConstantPointerNull for pointers.
m_Zero()137 inline match_zero m_Zero() { return match_zero(); }
138 
139 struct match_neg_zero {
matchmatch_neg_zero140   template <typename ITy> bool match(ITy *V) {
141     if (const auto *C = dyn_cast<Constant>(V))
142       return C->isNegativeZeroValue();
143     return false;
144   }
145 };
146 
147 /// \brief Match an arbitrary zero/null constant.  This includes
148 /// zero_initializer for vectors and ConstantPointerNull for pointers. For
149 /// floating point constants, this will match negative zero but not positive
150 /// zero
m_NegZero()151 inline match_neg_zero m_NegZero() { return match_neg_zero(); }
152 
153 /// \brief - Match an arbitrary zero/null constant.  This includes
154 /// zero_initializer for vectors and ConstantPointerNull for pointers. For
155 /// floating point constants, this will match negative zero and positive zero
m_AnyZero()156 inline match_combine_or<match_zero, match_neg_zero> m_AnyZero() {
157   return m_CombineOr(m_Zero(), m_NegZero());
158 }
159 
160 struct apint_match {
161   const APInt *&Res;
apint_matchapint_match162   apint_match(const APInt *&R) : Res(R) {}
matchapint_match163   template <typename ITy> bool match(ITy *V) {
164     if (auto *CI = dyn_cast<ConstantInt>(V)) {
165       Res = &CI->getValue();
166       return true;
167     }
168     if (V->getType()->isVectorTy())
169       if (const auto *C = dyn_cast<Constant>(V))
170         if (auto *CI = dyn_cast_or_null<ConstantInt>(C->getSplatValue())) {
171           Res = &CI->getValue();
172           return true;
173         }
174     return false;
175   }
176 };
177 
178 /// \brief Match a ConstantInt or splatted ConstantVector, binding the
179 /// specified pointer to the contained APInt.
m_APInt(const APInt * & Res)180 inline apint_match m_APInt(const APInt *&Res) { return Res; }
181 
182 template <int64_t Val> struct constantint_match {
matchconstantint_match183   template <typename ITy> bool match(ITy *V) {
184     if (const auto *CI = dyn_cast<ConstantInt>(V)) {
185       const APInt &CIV = CI->getValue();
186       if (Val >= 0)
187         return CIV == static_cast<uint64_t>(Val);
188       // If Val is negative, and CI is shorter than it, truncate to the right
189       // number of bits.  If it is larger, then we have to sign extend.  Just
190       // compare their negated values.
191       return -CIV == -Val;
192     }
193     return false;
194   }
195 };
196 
197 /// \brief Match a ConstantInt with a specific value.
m_ConstantInt()198 template <int64_t Val> inline constantint_match<Val> m_ConstantInt() {
199   return constantint_match<Val>();
200 }
201 
202 /// \brief This helper class is used to match scalar and vector constants that
203 /// satisfy a specified predicate.
204 template <typename Predicate> struct cst_pred_ty : public Predicate {
matchcst_pred_ty205   template <typename ITy> bool match(ITy *V) {
206     if (const auto *CI = dyn_cast<ConstantInt>(V))
207       return this->isValue(CI->getValue());
208     if (V->getType()->isVectorTy())
209       if (const auto *C = dyn_cast<Constant>(V))
210         if (const auto *CI = dyn_cast_or_null<ConstantInt>(C->getSplatValue()))
211           return this->isValue(CI->getValue());
212     return false;
213   }
214 };
215 
216 /// \brief This helper class is used to match scalar and vector constants that
217 /// satisfy a specified predicate, and bind them to an APInt.
218 template <typename Predicate> struct api_pred_ty : public Predicate {
219   const APInt *&Res;
api_pred_tyapi_pred_ty220   api_pred_ty(const APInt *&R) : Res(R) {}
matchapi_pred_ty221   template <typename ITy> bool match(ITy *V) {
222     if (const auto *CI = dyn_cast<ConstantInt>(V))
223       if (this->isValue(CI->getValue())) {
224         Res = &CI->getValue();
225         return true;
226       }
227     if (V->getType()->isVectorTy())
228       if (const auto *C = dyn_cast<Constant>(V))
229         if (auto *CI = dyn_cast_or_null<ConstantInt>(C->getSplatValue()))
230           if (this->isValue(CI->getValue())) {
231             Res = &CI->getValue();
232             return true;
233           }
234 
235     return false;
236   }
237 };
238 
239 struct is_one {
isValueis_one240   bool isValue(const APInt &C) { return C == 1; }
241 };
242 
243 /// \brief Match an integer 1 or a vector with all elements equal to 1.
m_One()244 inline cst_pred_ty<is_one> m_One() { return cst_pred_ty<is_one>(); }
m_One(const APInt * & V)245 inline api_pred_ty<is_one> m_One(const APInt *&V) { return V; }
246 
247 struct is_all_ones {
isValueis_all_ones248   bool isValue(const APInt &C) { return C.isAllOnesValue(); }
249 };
250 
251 /// \brief Match an integer or vector with all bits set to true.
m_AllOnes()252 inline cst_pred_ty<is_all_ones> m_AllOnes() {
253   return cst_pred_ty<is_all_ones>();
254 }
m_AllOnes(const APInt * & V)255 inline api_pred_ty<is_all_ones> m_AllOnes(const APInt *&V) { return V; }
256 
257 struct is_sign_bit {
isValueis_sign_bit258   bool isValue(const APInt &C) { return C.isSignBit(); }
259 };
260 
261 /// \brief Match an integer or vector with only the sign bit(s) set.
m_SignBit()262 inline cst_pred_ty<is_sign_bit> m_SignBit() {
263   return cst_pred_ty<is_sign_bit>();
264 }
m_SignBit(const APInt * & V)265 inline api_pred_ty<is_sign_bit> m_SignBit(const APInt *&V) { return V; }
266 
267 struct is_power2 {
isValueis_power2268   bool isValue(const APInt &C) { return C.isPowerOf2(); }
269 };
270 
271 /// \brief Match an integer or vector power of 2.
m_Power2()272 inline cst_pred_ty<is_power2> m_Power2() { return cst_pred_ty<is_power2>(); }
m_Power2(const APInt * & V)273 inline api_pred_ty<is_power2> m_Power2(const APInt *&V) { return V; }
274 
275 struct is_maxsignedvalue {
isValueis_maxsignedvalue276   bool isValue(const APInt &C) { return C.isMaxSignedValue(); }
277 };
278 
m_MaxSignedValue()279 inline cst_pred_ty<is_maxsignedvalue> m_MaxSignedValue() { return cst_pred_ty<is_maxsignedvalue>(); }
m_MaxSignedValue(const APInt * & V)280 inline api_pred_ty<is_maxsignedvalue> m_MaxSignedValue(const APInt *&V) { return V; }
281 
282 template <typename Class> struct bind_ty {
283   Class *&VR;
bind_tybind_ty284   bind_ty(Class *&V) : VR(V) {}
285 
matchbind_ty286   template <typename ITy> bool match(ITy *V) {
287     if (auto *CV = dyn_cast<Class>(V)) {
288       VR = CV;
289       return true;
290     }
291     return false;
292   }
293 };
294 
295 /// \brief Match a value, capturing it if we match.
m_Value(Value * & V)296 inline bind_ty<Value> m_Value(Value *&V) { return V; }
297 
298 /// \brief Match a binary operator, capturing it if we match.
m_BinOp(BinaryOperator * & I)299 inline bind_ty<BinaryOperator> m_BinOp(BinaryOperator *&I) { return I; }
300 
301 /// \brief Match a ConstantInt, capturing the value if we match.
m_ConstantInt(ConstantInt * & CI)302 inline bind_ty<ConstantInt> m_ConstantInt(ConstantInt *&CI) { return CI; }
303 
304 /// \brief Match a Constant, capturing the value if we match.
m_Constant(Constant * & C)305 inline bind_ty<Constant> m_Constant(Constant *&C) { return C; }
306 
307 /// \brief Match a ConstantFP, capturing the value if we match.
m_ConstantFP(ConstantFP * & C)308 inline bind_ty<ConstantFP> m_ConstantFP(ConstantFP *&C) { return C; }
309 
310 /// \brief Match a specified Value*.
311 struct specificval_ty {
312   const Value *Val;
specificval_tyspecificval_ty313   specificval_ty(const Value *V) : Val(V) {}
314 
matchspecificval_ty315   template <typename ITy> bool match(ITy *V) { return V == Val; }
316 };
317 
318 /// \brief Match if we have a specific specified value.
m_Specific(const Value * V)319 inline specificval_ty m_Specific(const Value *V) { return V; }
320 
321 /// \brief Match a specified floating point value or vector of all elements of
322 /// that value.
323 struct specific_fpval {
324   double Val;
specific_fpvalspecific_fpval325   specific_fpval(double V) : Val(V) {}
326 
matchspecific_fpval327   template <typename ITy> bool match(ITy *V) {
328     if (const auto *CFP = dyn_cast<ConstantFP>(V))
329       return CFP->isExactlyValue(Val);
330     if (V->getType()->isVectorTy())
331       if (const auto *C = dyn_cast<Constant>(V))
332         if (auto *CFP = dyn_cast_or_null<ConstantFP>(C->getSplatValue()))
333           return CFP->isExactlyValue(Val);
334     return false;
335   }
336 };
337 
338 /// \brief Match a specific floating point value or vector with all elements
339 /// equal to the value.
m_SpecificFP(double V)340 inline specific_fpval m_SpecificFP(double V) { return specific_fpval(V); }
341 
342 /// \brief Match a float 1.0 or vector with all elements equal to 1.0.
m_FPOne()343 inline specific_fpval m_FPOne() { return m_SpecificFP(1.0); }
344 
345 struct bind_const_intval_ty {
346   uint64_t &VR;
bind_const_intval_tybind_const_intval_ty347   bind_const_intval_ty(uint64_t &V) : VR(V) {}
348 
matchbind_const_intval_ty349   template <typename ITy> bool match(ITy *V) {
350     if (const auto *CV = dyn_cast<ConstantInt>(V))
351       if (CV->getBitWidth() <= 64) {
352         VR = CV->getZExtValue();
353         return true;
354       }
355     return false;
356   }
357 };
358 
359 /// \brief Match a specified integer value or vector of all elements of that
360 // value.
361 struct specific_intval {
362   uint64_t Val;
specific_intvalspecific_intval363   specific_intval(uint64_t V) : Val(V) {}
364 
matchspecific_intval365   template <typename ITy> bool match(ITy *V) {
366     const auto *CI = dyn_cast<ConstantInt>(V);
367     if (!CI && V->getType()->isVectorTy())
368       if (const auto *C = dyn_cast<Constant>(V))
369         CI = dyn_cast_or_null<ConstantInt>(C->getSplatValue());
370 
371     if (CI && CI->getBitWidth() <= 64)
372       return CI->getZExtValue() == Val;
373 
374     return false;
375   }
376 };
377 
378 /// \brief Match a specific integer value or vector with all elements equal to
379 /// the value.
m_SpecificInt(uint64_t V)380 inline specific_intval m_SpecificInt(uint64_t V) { return specific_intval(V); }
381 
382 /// \brief Match a ConstantInt and bind to its value.  This does not match
383 /// ConstantInts wider than 64-bits.
m_ConstantInt(uint64_t & V)384 inline bind_const_intval_ty m_ConstantInt(uint64_t &V) { return V; }
385 
386 //===----------------------------------------------------------------------===//
387 // Matcher for any binary operator.
388 //
389 template <typename LHS_t, typename RHS_t> struct AnyBinaryOp_match {
390   LHS_t L;
391   RHS_t R;
392 
AnyBinaryOp_matchAnyBinaryOp_match393   AnyBinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
394 
matchAnyBinaryOp_match395   template <typename OpTy> bool match(OpTy *V) {
396     if (auto *I = dyn_cast<BinaryOperator>(V))
397       return L.match(I->getOperand(0)) && R.match(I->getOperand(1));
398     return false;
399   }
400 };
401 
402 template <typename LHS, typename RHS>
m_BinOp(const LHS & L,const RHS & R)403 inline AnyBinaryOp_match<LHS, RHS> m_BinOp(const LHS &L, const RHS &R) {
404   return AnyBinaryOp_match<LHS, RHS>(L, R);
405 }
406 
407 //===----------------------------------------------------------------------===//
408 // Matchers for specific binary operators.
409 //
410 
411 template <typename LHS_t, typename RHS_t, unsigned Opcode>
412 struct BinaryOp_match {
413   LHS_t L;
414   RHS_t R;
415 
BinaryOp_matchBinaryOp_match416   BinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
417 
matchBinaryOp_match418   template <typename OpTy> bool match(OpTy *V) {
419     if (V->getValueID() == Value::InstructionVal + Opcode) {
420       auto *I = cast<BinaryOperator>(V);
421       return L.match(I->getOperand(0)) && R.match(I->getOperand(1));
422     }
423     if (auto *CE = dyn_cast<ConstantExpr>(V))
424       return CE->getOpcode() == Opcode && L.match(CE->getOperand(0)) &&
425              R.match(CE->getOperand(1));
426     return false;
427   }
428 };
429 
430 template <typename LHS, typename RHS>
m_Add(const LHS & L,const RHS & R)431 inline BinaryOp_match<LHS, RHS, Instruction::Add> m_Add(const LHS &L,
432                                                         const RHS &R) {
433   return BinaryOp_match<LHS, RHS, Instruction::Add>(L, R);
434 }
435 
436 template <typename LHS, typename RHS>
m_FAdd(const LHS & L,const RHS & R)437 inline BinaryOp_match<LHS, RHS, Instruction::FAdd> m_FAdd(const LHS &L,
438                                                           const RHS &R) {
439   return BinaryOp_match<LHS, RHS, Instruction::FAdd>(L, R);
440 }
441 
442 template <typename LHS, typename RHS>
m_Sub(const LHS & L,const RHS & R)443 inline BinaryOp_match<LHS, RHS, Instruction::Sub> m_Sub(const LHS &L,
444                                                         const RHS &R) {
445   return BinaryOp_match<LHS, RHS, Instruction::Sub>(L, R);
446 }
447 
448 template <typename LHS, typename RHS>
m_FSub(const LHS & L,const RHS & R)449 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L,
450                                                           const RHS &R) {
451   return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R);
452 }
453 
454 template <typename LHS, typename RHS>
m_Mul(const LHS & L,const RHS & R)455 inline BinaryOp_match<LHS, RHS, Instruction::Mul> m_Mul(const LHS &L,
456                                                         const RHS &R) {
457   return BinaryOp_match<LHS, RHS, Instruction::Mul>(L, R);
458 }
459 
460 template <typename LHS, typename RHS>
m_FMul(const LHS & L,const RHS & R)461 inline BinaryOp_match<LHS, RHS, Instruction::FMul> m_FMul(const LHS &L,
462                                                           const RHS &R) {
463   return BinaryOp_match<LHS, RHS, Instruction::FMul>(L, R);
464 }
465 
466 template <typename LHS, typename RHS>
m_UDiv(const LHS & L,const RHS & R)467 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L,
468                                                           const RHS &R) {
469   return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R);
470 }
471 
472 template <typename LHS, typename RHS>
m_SDiv(const LHS & L,const RHS & R)473 inline BinaryOp_match<LHS, RHS, Instruction::SDiv> m_SDiv(const LHS &L,
474                                                           const RHS &R) {
475   return BinaryOp_match<LHS, RHS, Instruction::SDiv>(L, R);
476 }
477 
478 template <typename LHS, typename RHS>
m_FDiv(const LHS & L,const RHS & R)479 inline BinaryOp_match<LHS, RHS, Instruction::FDiv> m_FDiv(const LHS &L,
480                                                           const RHS &R) {
481   return BinaryOp_match<LHS, RHS, Instruction::FDiv>(L, R);
482 }
483 
484 template <typename LHS, typename RHS>
m_URem(const LHS & L,const RHS & R)485 inline BinaryOp_match<LHS, RHS, Instruction::URem> m_URem(const LHS &L,
486                                                           const RHS &R) {
487   return BinaryOp_match<LHS, RHS, Instruction::URem>(L, R);
488 }
489 
490 template <typename LHS, typename RHS>
m_SRem(const LHS & L,const RHS & R)491 inline BinaryOp_match<LHS, RHS, Instruction::SRem> m_SRem(const LHS &L,
492                                                           const RHS &R) {
493   return BinaryOp_match<LHS, RHS, Instruction::SRem>(L, R);
494 }
495 
496 template <typename LHS, typename RHS>
m_FRem(const LHS & L,const RHS & R)497 inline BinaryOp_match<LHS, RHS, Instruction::FRem> m_FRem(const LHS &L,
498                                                           const RHS &R) {
499   return BinaryOp_match<LHS, RHS, Instruction::FRem>(L, R);
500 }
501 
502 template <typename LHS, typename RHS>
m_And(const LHS & L,const RHS & R)503 inline BinaryOp_match<LHS, RHS, Instruction::And> m_And(const LHS &L,
504                                                         const RHS &R) {
505   return BinaryOp_match<LHS, RHS, Instruction::And>(L, R);
506 }
507 
508 template <typename LHS, typename RHS>
m_Or(const LHS & L,const RHS & R)509 inline BinaryOp_match<LHS, RHS, Instruction::Or> m_Or(const LHS &L,
510                                                       const RHS &R) {
511   return BinaryOp_match<LHS, RHS, Instruction::Or>(L, R);
512 }
513 
514 template <typename LHS, typename RHS>
m_Xor(const LHS & L,const RHS & R)515 inline BinaryOp_match<LHS, RHS, Instruction::Xor> m_Xor(const LHS &L,
516                                                         const RHS &R) {
517   return BinaryOp_match<LHS, RHS, Instruction::Xor>(L, R);
518 }
519 
520 template <typename LHS, typename RHS>
m_Shl(const LHS & L,const RHS & R)521 inline BinaryOp_match<LHS, RHS, Instruction::Shl> m_Shl(const LHS &L,
522                                                         const RHS &R) {
523   return BinaryOp_match<LHS, RHS, Instruction::Shl>(L, R);
524 }
525 
526 template <typename LHS, typename RHS>
m_LShr(const LHS & L,const RHS & R)527 inline BinaryOp_match<LHS, RHS, Instruction::LShr> m_LShr(const LHS &L,
528                                                           const RHS &R) {
529   return BinaryOp_match<LHS, RHS, Instruction::LShr>(L, R);
530 }
531 
532 template <typename LHS, typename RHS>
m_AShr(const LHS & L,const RHS & R)533 inline BinaryOp_match<LHS, RHS, Instruction::AShr> m_AShr(const LHS &L,
534                                                           const RHS &R) {
535   return BinaryOp_match<LHS, RHS, Instruction::AShr>(L, R);
536 }
537 
538 template <typename LHS_t, typename RHS_t, unsigned Opcode,
539           unsigned WrapFlags = 0>
540 struct OverflowingBinaryOp_match {
541   LHS_t L;
542   RHS_t R;
543 
OverflowingBinaryOp_matchOverflowingBinaryOp_match544   OverflowingBinaryOp_match(const LHS_t &LHS, const RHS_t &RHS)
545       : L(LHS), R(RHS) {}
546 
matchOverflowingBinaryOp_match547   template <typename OpTy> bool match(OpTy *V) {
548     if (auto *Op = dyn_cast<OverflowingBinaryOperator>(V)) {
549       if (Op->getOpcode() != Opcode)
550         return false;
551       if (WrapFlags & OverflowingBinaryOperator::NoUnsignedWrap &&
552           !Op->hasNoUnsignedWrap())
553         return false;
554       if (WrapFlags & OverflowingBinaryOperator::NoSignedWrap &&
555           !Op->hasNoSignedWrap())
556         return false;
557       return L.match(Op->getOperand(0)) && R.match(Op->getOperand(1));
558     }
559     return false;
560   }
561 };
562 
563 template <typename LHS, typename RHS>
564 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Add,
565                                  OverflowingBinaryOperator::NoSignedWrap>
m_NSWAdd(const LHS & L,const RHS & R)566 m_NSWAdd(const LHS &L, const RHS &R) {
567   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Add,
568                                    OverflowingBinaryOperator::NoSignedWrap>(
569       L, R);
570 }
571 template <typename LHS, typename RHS>
572 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Sub,
573                                  OverflowingBinaryOperator::NoSignedWrap>
m_NSWSub(const LHS & L,const RHS & R)574 m_NSWSub(const LHS &L, const RHS &R) {
575   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Sub,
576                                    OverflowingBinaryOperator::NoSignedWrap>(
577       L, R);
578 }
579 template <typename LHS, typename RHS>
580 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Mul,
581                                  OverflowingBinaryOperator::NoSignedWrap>
m_NSWMul(const LHS & L,const RHS & R)582 m_NSWMul(const LHS &L, const RHS &R) {
583   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Mul,
584                                    OverflowingBinaryOperator::NoSignedWrap>(
585       L, R);
586 }
587 template <typename LHS, typename RHS>
588 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Shl,
589                                  OverflowingBinaryOperator::NoSignedWrap>
m_NSWShl(const LHS & L,const RHS & R)590 m_NSWShl(const LHS &L, const RHS &R) {
591   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Shl,
592                                    OverflowingBinaryOperator::NoSignedWrap>(
593       L, R);
594 }
595 
596 template <typename LHS, typename RHS>
597 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Add,
598                                  OverflowingBinaryOperator::NoUnsignedWrap>
m_NUWAdd(const LHS & L,const RHS & R)599 m_NUWAdd(const LHS &L, const RHS &R) {
600   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Add,
601                                    OverflowingBinaryOperator::NoUnsignedWrap>(
602       L, R);
603 }
604 template <typename LHS, typename RHS>
605 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Sub,
606                                  OverflowingBinaryOperator::NoUnsignedWrap>
m_NUWSub(const LHS & L,const RHS & R)607 m_NUWSub(const LHS &L, const RHS &R) {
608   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Sub,
609                                    OverflowingBinaryOperator::NoUnsignedWrap>(
610       L, R);
611 }
612 template <typename LHS, typename RHS>
613 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Mul,
614                                  OverflowingBinaryOperator::NoUnsignedWrap>
m_NUWMul(const LHS & L,const RHS & R)615 m_NUWMul(const LHS &L, const RHS &R) {
616   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Mul,
617                                    OverflowingBinaryOperator::NoUnsignedWrap>(
618       L, R);
619 }
620 template <typename LHS, typename RHS>
621 inline OverflowingBinaryOp_match<LHS, RHS, Instruction::Shl,
622                                  OverflowingBinaryOperator::NoUnsignedWrap>
m_NUWShl(const LHS & L,const RHS & R)623 m_NUWShl(const LHS &L, const RHS &R) {
624   return OverflowingBinaryOp_match<LHS, RHS, Instruction::Shl,
625                                    OverflowingBinaryOperator::NoUnsignedWrap>(
626       L, R);
627 }
628 
629 //===----------------------------------------------------------------------===//
630 // Class that matches two different binary ops.
631 //
632 template <typename LHS_t, typename RHS_t, unsigned Opc1, unsigned Opc2>
633 struct BinOp2_match {
634   LHS_t L;
635   RHS_t R;
636 
BinOp2_matchBinOp2_match637   BinOp2_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
638 
matchBinOp2_match639   template <typename OpTy> bool match(OpTy *V) {
640     if (V->getValueID() == Value::InstructionVal + Opc1 ||
641         V->getValueID() == Value::InstructionVal + Opc2) {
642       auto *I = cast<BinaryOperator>(V);
643       return L.match(I->getOperand(0)) && R.match(I->getOperand(1));
644     }
645     if (auto *CE = dyn_cast<ConstantExpr>(V))
646       return (CE->getOpcode() == Opc1 || CE->getOpcode() == Opc2) &&
647              L.match(CE->getOperand(0)) && R.match(CE->getOperand(1));
648     return false;
649   }
650 };
651 
652 /// \brief Matches LShr or AShr.
653 template <typename LHS, typename RHS>
654 inline BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::AShr>
m_Shr(const LHS & L,const RHS & R)655 m_Shr(const LHS &L, const RHS &R) {
656   return BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::AShr>(L, R);
657 }
658 
659 /// \brief Matches LShr or Shl.
660 template <typename LHS, typename RHS>
661 inline BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::Shl>
m_LogicalShift(const LHS & L,const RHS & R)662 m_LogicalShift(const LHS &L, const RHS &R) {
663   return BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::Shl>(L, R);
664 }
665 
666 /// \brief Matches UDiv and SDiv.
667 template <typename LHS, typename RHS>
668 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>
m_IDiv(const LHS & L,const RHS & R)669 m_IDiv(const LHS &L, const RHS &R) {
670   return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R);
671 }
672 
673 //===----------------------------------------------------------------------===//
674 // Class that matches exact binary ops.
675 //
676 template <typename SubPattern_t> struct Exact_match {
677   SubPattern_t SubPattern;
678 
Exact_matchExact_match679   Exact_match(const SubPattern_t &SP) : SubPattern(SP) {}
680 
matchExact_match681   template <typename OpTy> bool match(OpTy *V) {
682     if (PossiblyExactOperator *PEO = dyn_cast<PossiblyExactOperator>(V))
683       return PEO->isExact() && SubPattern.match(V);
684     return false;
685   }
686 };
687 
m_Exact(const T & SubPattern)688 template <typename T> inline Exact_match<T> m_Exact(const T &SubPattern) {
689   return SubPattern;
690 }
691 
692 //===----------------------------------------------------------------------===//
693 // Matchers for CmpInst classes
694 //
695 
696 template <typename LHS_t, typename RHS_t, typename Class, typename PredicateTy>
697 struct CmpClass_match {
698   PredicateTy &Predicate;
699   LHS_t L;
700   RHS_t R;
701 
CmpClass_matchCmpClass_match702   CmpClass_match(PredicateTy &Pred, const LHS_t &LHS, const RHS_t &RHS)
703       : Predicate(Pred), L(LHS), R(RHS) {}
704 
matchCmpClass_match705   template <typename OpTy> bool match(OpTy *V) {
706     if (Class *I = dyn_cast<Class>(V))
707       if (L.match(I->getOperand(0)) && R.match(I->getOperand(1))) {
708         Predicate = I->getPredicate();
709         return true;
710       }
711     return false;
712   }
713 };
714 
715 template <typename LHS, typename RHS>
716 inline CmpClass_match<LHS, RHS, CmpInst, CmpInst::Predicate>
m_Cmp(CmpInst::Predicate & Pred,const LHS & L,const RHS & R)717 m_Cmp(CmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
718   return CmpClass_match<LHS, RHS, CmpInst, CmpInst::Predicate>(Pred, L, R);
719 }
720 
721 template <typename LHS, typename RHS>
722 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
m_ICmp(ICmpInst::Predicate & Pred,const LHS & L,const RHS & R)723 m_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
724   return CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>(Pred, L, R);
725 }
726 
727 template <typename LHS, typename RHS>
728 inline CmpClass_match<LHS, RHS, FCmpInst, FCmpInst::Predicate>
m_FCmp(FCmpInst::Predicate & Pred,const LHS & L,const RHS & R)729 m_FCmp(FCmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
730   return CmpClass_match<LHS, RHS, FCmpInst, FCmpInst::Predicate>(Pred, L, R);
731 }
732 
733 //===----------------------------------------------------------------------===//
734 // Matchers for SelectInst classes
735 //
736 
737 template <typename Cond_t, typename LHS_t, typename RHS_t>
738 struct SelectClass_match {
739   Cond_t C;
740   LHS_t L;
741   RHS_t R;
742 
SelectClass_matchSelectClass_match743   SelectClass_match(const Cond_t &Cond, const LHS_t &LHS, const RHS_t &RHS)
744       : C(Cond), L(LHS), R(RHS) {}
745 
matchSelectClass_match746   template <typename OpTy> bool match(OpTy *V) {
747     if (auto *I = dyn_cast<SelectInst>(V))
748       return C.match(I->getOperand(0)) && L.match(I->getOperand(1)) &&
749              R.match(I->getOperand(2));
750     return false;
751   }
752 };
753 
754 template <typename Cond, typename LHS, typename RHS>
m_Select(const Cond & C,const LHS & L,const RHS & R)755 inline SelectClass_match<Cond, LHS, RHS> m_Select(const Cond &C, const LHS &L,
756                                                   const RHS &R) {
757   return SelectClass_match<Cond, LHS, RHS>(C, L, R);
758 }
759 
760 /// \brief This matches a select of two constants, e.g.:
761 /// m_SelectCst<-1, 0>(m_Value(V))
762 template <int64_t L, int64_t R, typename Cond>
763 inline SelectClass_match<Cond, constantint_match<L>, constantint_match<R>>
m_SelectCst(const Cond & C)764 m_SelectCst(const Cond &C) {
765   return m_Select(C, m_ConstantInt<L>(), m_ConstantInt<R>());
766 }
767 
768 //===----------------------------------------------------------------------===//
769 // Matchers for CastInst classes
770 //
771 
772 template <typename Op_t, unsigned Opcode> struct CastClass_match {
773   Op_t Op;
774 
CastClass_matchCastClass_match775   CastClass_match(const Op_t &OpMatch) : Op(OpMatch) {}
776 
matchCastClass_match777   template <typename OpTy> bool match(OpTy *V) {
778     if (auto *O = dyn_cast<Operator>(V))
779       return O->getOpcode() == Opcode && Op.match(O->getOperand(0));
780     return false;
781   }
782 };
783 
784 /// \brief Matches BitCast.
785 template <typename OpTy>
m_BitCast(const OpTy & Op)786 inline CastClass_match<OpTy, Instruction::BitCast> m_BitCast(const OpTy &Op) {
787   return CastClass_match<OpTy, Instruction::BitCast>(Op);
788 }
789 
790 /// \brief Matches PtrToInt.
791 template <typename OpTy>
m_PtrToInt(const OpTy & Op)792 inline CastClass_match<OpTy, Instruction::PtrToInt> m_PtrToInt(const OpTy &Op) {
793   return CastClass_match<OpTy, Instruction::PtrToInt>(Op);
794 }
795 
796 /// \brief Matches Trunc.
797 template <typename OpTy>
m_Trunc(const OpTy & Op)798 inline CastClass_match<OpTy, Instruction::Trunc> m_Trunc(const OpTy &Op) {
799   return CastClass_match<OpTy, Instruction::Trunc>(Op);
800 }
801 
802 /// \brief Matches SExt.
803 template <typename OpTy>
m_SExt(const OpTy & Op)804 inline CastClass_match<OpTy, Instruction::SExt> m_SExt(const OpTy &Op) {
805   return CastClass_match<OpTy, Instruction::SExt>(Op);
806 }
807 
808 /// \brief Matches ZExt.
809 template <typename OpTy>
m_ZExt(const OpTy & Op)810 inline CastClass_match<OpTy, Instruction::ZExt> m_ZExt(const OpTy &Op) {
811   return CastClass_match<OpTy, Instruction::ZExt>(Op);
812 }
813 
814 /// \brief Matches UIToFP.
815 template <typename OpTy>
m_UIToFP(const OpTy & Op)816 inline CastClass_match<OpTy, Instruction::UIToFP> m_UIToFP(const OpTy &Op) {
817   return CastClass_match<OpTy, Instruction::UIToFP>(Op);
818 }
819 
820 /// \brief Matches SIToFP.
821 template <typename OpTy>
m_SIToFP(const OpTy & Op)822 inline CastClass_match<OpTy, Instruction::SIToFP> m_SIToFP(const OpTy &Op) {
823   return CastClass_match<OpTy, Instruction::SIToFP>(Op);
824 }
825 
826 //===----------------------------------------------------------------------===//
827 // Matchers for unary operators
828 //
829 
830 template <typename LHS_t> struct not_match {
831   LHS_t L;
832 
not_matchnot_match833   not_match(const LHS_t &LHS) : L(LHS) {}
834 
matchnot_match835   template <typename OpTy> bool match(OpTy *V) {
836     if (auto *O = dyn_cast<Operator>(V))
837       if (O->getOpcode() == Instruction::Xor)
838         return matchIfNot(O->getOperand(0), O->getOperand(1));
839     return false;
840   }
841 
842 private:
matchIfNotnot_match843   bool matchIfNot(Value *LHS, Value *RHS) {
844     return (isa<ConstantInt>(RHS) || isa<ConstantDataVector>(RHS) ||
845             // FIXME: Remove CV.
846             isa<ConstantVector>(RHS)) &&
847            cast<Constant>(RHS)->isAllOnesValue() && L.match(LHS);
848   }
849 };
850 
m_Not(const LHS & L)851 template <typename LHS> inline not_match<LHS> m_Not(const LHS &L) { return L; }
852 
853 template <typename LHS_t> struct neg_match {
854   LHS_t L;
855 
neg_matchneg_match856   neg_match(const LHS_t &LHS) : L(LHS) {}
857 
matchneg_match858   template <typename OpTy> bool match(OpTy *V) {
859     if (auto *O = dyn_cast<Operator>(V))
860       if (O->getOpcode() == Instruction::Sub)
861         return matchIfNeg(O->getOperand(0), O->getOperand(1));
862     return false;
863   }
864 
865 private:
matchIfNegneg_match866   bool matchIfNeg(Value *LHS, Value *RHS) {
867     return ((isa<ConstantInt>(LHS) && cast<ConstantInt>(LHS)->isZero()) ||
868             isa<ConstantAggregateZero>(LHS)) &&
869            L.match(RHS);
870   }
871 };
872 
873 /// \brief Match an integer negate.
m_Neg(const LHS & L)874 template <typename LHS> inline neg_match<LHS> m_Neg(const LHS &L) { return L; }
875 
876 template <typename LHS_t> struct fneg_match {
877   LHS_t L;
878 
fneg_matchfneg_match879   fneg_match(const LHS_t &LHS) : L(LHS) {}
880 
matchfneg_match881   template <typename OpTy> bool match(OpTy *V) {
882     if (auto *O = dyn_cast<Operator>(V))
883       if (O->getOpcode() == Instruction::FSub)
884         return matchIfFNeg(O->getOperand(0), O->getOperand(1));
885     return false;
886   }
887 
888 private:
matchIfFNegfneg_match889   bool matchIfFNeg(Value *LHS, Value *RHS) {
890     if (const auto *C = dyn_cast<ConstantFP>(LHS))
891       return C->isNegativeZeroValue() && L.match(RHS);
892     return false;
893   }
894 };
895 
896 /// \brief Match a floating point negate.
m_FNeg(const LHS & L)897 template <typename LHS> inline fneg_match<LHS> m_FNeg(const LHS &L) {
898   return L;
899 }
900 
901 //===----------------------------------------------------------------------===//
902 // Matchers for control flow.
903 //
904 
905 struct br_match {
906   BasicBlock *&Succ;
br_matchbr_match907   br_match(BasicBlock *&Succ) : Succ(Succ) {}
908 
matchbr_match909   template <typename OpTy> bool match(OpTy *V) {
910     if (auto *BI = dyn_cast<BranchInst>(V))
911       if (BI->isUnconditional()) {
912         Succ = BI->getSuccessor(0);
913         return true;
914       }
915     return false;
916   }
917 };
918 
m_UnconditionalBr(BasicBlock * & Succ)919 inline br_match m_UnconditionalBr(BasicBlock *&Succ) { return br_match(Succ); }
920 
921 template <typename Cond_t> struct brc_match {
922   Cond_t Cond;
923   BasicBlock *&T, *&F;
brc_matchbrc_match924   brc_match(const Cond_t &C, BasicBlock *&t, BasicBlock *&f)
925       : Cond(C), T(t), F(f) {}
926 
matchbrc_match927   template <typename OpTy> bool match(OpTy *V) {
928     if (auto *BI = dyn_cast<BranchInst>(V))
929       if (BI->isConditional() && Cond.match(BI->getCondition())) {
930         T = BI->getSuccessor(0);
931         F = BI->getSuccessor(1);
932         return true;
933       }
934     return false;
935   }
936 };
937 
938 template <typename Cond_t>
m_Br(const Cond_t & C,BasicBlock * & T,BasicBlock * & F)939 inline brc_match<Cond_t> m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F) {
940   return brc_match<Cond_t>(C, T, F);
941 }
942 
943 //===----------------------------------------------------------------------===//
944 // Matchers for max/min idioms, eg: "select (sgt x, y), x, y" -> smax(x,y).
945 //
946 
947 template <typename CmpInst_t, typename LHS_t, typename RHS_t, typename Pred_t>
948 struct MaxMin_match {
949   LHS_t L;
950   RHS_t R;
951 
MaxMin_matchMaxMin_match952   MaxMin_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
953 
matchMaxMin_match954   template <typename OpTy> bool match(OpTy *V) {
955     // Look for "(x pred y) ? x : y" or "(x pred y) ? y : x".
956     auto *SI = dyn_cast<SelectInst>(V);
957     if (!SI)
958       return false;
959     auto *Cmp = dyn_cast<CmpInst_t>(SI->getCondition());
960     if (!Cmp)
961       return false;
962     // At this point we have a select conditioned on a comparison.  Check that
963     // it is the values returned by the select that are being compared.
964     Value *TrueVal = SI->getTrueValue();
965     Value *FalseVal = SI->getFalseValue();
966     Value *LHS = Cmp->getOperand(0);
967     Value *RHS = Cmp->getOperand(1);
968     if ((TrueVal != LHS || FalseVal != RHS) &&
969         (TrueVal != RHS || FalseVal != LHS))
970       return false;
971     typename CmpInst_t::Predicate Pred =
972         LHS == TrueVal ? Cmp->getPredicate() : Cmp->getSwappedPredicate();
973     // Does "(x pred y) ? x : y" represent the desired max/min operation?
974     if (!Pred_t::match(Pred))
975       return false;
976     // It does!  Bind the operands.
977     return L.match(LHS) && R.match(RHS);
978   }
979 };
980 
981 /// \brief Helper class for identifying signed max predicates.
982 struct smax_pred_ty {
matchsmax_pred_ty983   static bool match(ICmpInst::Predicate Pred) {
984     return Pred == CmpInst::ICMP_SGT || Pred == CmpInst::ICMP_SGE;
985   }
986 };
987 
988 /// \brief Helper class for identifying signed min predicates.
989 struct smin_pred_ty {
matchsmin_pred_ty990   static bool match(ICmpInst::Predicate Pred) {
991     return Pred == CmpInst::ICMP_SLT || Pred == CmpInst::ICMP_SLE;
992   }
993 };
994 
995 /// \brief Helper class for identifying unsigned max predicates.
996 struct umax_pred_ty {
matchumax_pred_ty997   static bool match(ICmpInst::Predicate Pred) {
998     return Pred == CmpInst::ICMP_UGT || Pred == CmpInst::ICMP_UGE;
999   }
1000 };
1001 
1002 /// \brief Helper class for identifying unsigned min predicates.
1003 struct umin_pred_ty {
matchumin_pred_ty1004   static bool match(ICmpInst::Predicate Pred) {
1005     return Pred == CmpInst::ICMP_ULT || Pred == CmpInst::ICMP_ULE;
1006   }
1007 };
1008 
1009 /// \brief Helper class for identifying ordered max predicates.
1010 struct ofmax_pred_ty {
matchofmax_pred_ty1011   static bool match(FCmpInst::Predicate Pred) {
1012     return Pred == CmpInst::FCMP_OGT || Pred == CmpInst::FCMP_OGE;
1013   }
1014 };
1015 
1016 /// \brief Helper class for identifying ordered min predicates.
1017 struct ofmin_pred_ty {
matchofmin_pred_ty1018   static bool match(FCmpInst::Predicate Pred) {
1019     return Pred == CmpInst::FCMP_OLT || Pred == CmpInst::FCMP_OLE;
1020   }
1021 };
1022 
1023 /// \brief Helper class for identifying unordered max predicates.
1024 struct ufmax_pred_ty {
matchufmax_pred_ty1025   static bool match(FCmpInst::Predicate Pred) {
1026     return Pred == CmpInst::FCMP_UGT || Pred == CmpInst::FCMP_UGE;
1027   }
1028 };
1029 
1030 /// \brief Helper class for identifying unordered min predicates.
1031 struct ufmin_pred_ty {
matchufmin_pred_ty1032   static bool match(FCmpInst::Predicate Pred) {
1033     return Pred == CmpInst::FCMP_ULT || Pred == CmpInst::FCMP_ULE;
1034   }
1035 };
1036 
1037 template <typename LHS, typename RHS>
m_SMax(const LHS & L,const RHS & R)1038 inline MaxMin_match<ICmpInst, LHS, RHS, smax_pred_ty> m_SMax(const LHS &L,
1039                                                              const RHS &R) {
1040   return MaxMin_match<ICmpInst, LHS, RHS, smax_pred_ty>(L, R);
1041 }
1042 
1043 template <typename LHS, typename RHS>
m_SMin(const LHS & L,const RHS & R)1044 inline MaxMin_match<ICmpInst, LHS, RHS, smin_pred_ty> m_SMin(const LHS &L,
1045                                                              const RHS &R) {
1046   return MaxMin_match<ICmpInst, LHS, RHS, smin_pred_ty>(L, R);
1047 }
1048 
1049 template <typename LHS, typename RHS>
m_UMax(const LHS & L,const RHS & R)1050 inline MaxMin_match<ICmpInst, LHS, RHS, umax_pred_ty> m_UMax(const LHS &L,
1051                                                              const RHS &R) {
1052   return MaxMin_match<ICmpInst, LHS, RHS, umax_pred_ty>(L, R);
1053 }
1054 
1055 template <typename LHS, typename RHS>
m_UMin(const LHS & L,const RHS & R)1056 inline MaxMin_match<ICmpInst, LHS, RHS, umin_pred_ty> m_UMin(const LHS &L,
1057                                                              const RHS &R) {
1058   return MaxMin_match<ICmpInst, LHS, RHS, umin_pred_ty>(L, R);
1059 }
1060 
1061 /// \brief Match an 'ordered' floating point maximum function.
1062 /// Floating point has one special value 'NaN'. Therefore, there is no total
1063 /// order. However, if we can ignore the 'NaN' value (for example, because of a
1064 /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'maximum'
1065 /// semantics. In the presence of 'NaN' we have to preserve the original
1066 /// select(fcmp(ogt/ge, L, R), L, R) semantics matched by this predicate.
1067 ///
1068 ///                         max(L, R)  iff L and R are not NaN
1069 ///  m_OrdFMax(L, R) =      R          iff L or R are NaN
1070 template <typename LHS, typename RHS>
m_OrdFMax(const LHS & L,const RHS & R)1071 inline MaxMin_match<FCmpInst, LHS, RHS, ofmax_pred_ty> m_OrdFMax(const LHS &L,
1072                                                                  const RHS &R) {
1073   return MaxMin_match<FCmpInst, LHS, RHS, ofmax_pred_ty>(L, R);
1074 }
1075 
1076 /// \brief Match an 'ordered' floating point minimum function.
1077 /// Floating point has one special value 'NaN'. Therefore, there is no total
1078 /// order. However, if we can ignore the 'NaN' value (for example, because of a
1079 /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'minimum'
1080 /// semantics. In the presence of 'NaN' we have to preserve the original
1081 /// select(fcmp(olt/le, L, R), L, R) semantics matched by this predicate.
1082 ///
1083 ///                         max(L, R)  iff L and R are not NaN
1084 ///  m_OrdFMin(L, R) =      R          iff L or R are NaN
1085 template <typename LHS, typename RHS>
m_OrdFMin(const LHS & L,const RHS & R)1086 inline MaxMin_match<FCmpInst, LHS, RHS, ofmin_pred_ty> m_OrdFMin(const LHS &L,
1087                                                                  const RHS &R) {
1088   return MaxMin_match<FCmpInst, LHS, RHS, ofmin_pred_ty>(L, R);
1089 }
1090 
1091 /// \brief Match an 'unordered' floating point maximum function.
1092 /// Floating point has one special value 'NaN'. Therefore, there is no total
1093 /// order. However, if we can ignore the 'NaN' value (for example, because of a
1094 /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'maximum'
1095 /// semantics. In the presence of 'NaN' we have to preserve the original
1096 /// select(fcmp(ugt/ge, L, R), L, R) semantics matched by this predicate.
1097 ///
1098 ///                         max(L, R)  iff L and R are not NaN
1099 ///  m_UnordFMin(L, R) =    L          iff L or R are NaN
1100 template <typename LHS, typename RHS>
1101 inline MaxMin_match<FCmpInst, LHS, RHS, ufmax_pred_ty>
m_UnordFMax(const LHS & L,const RHS & R)1102 m_UnordFMax(const LHS &L, const RHS &R) {
1103   return MaxMin_match<FCmpInst, LHS, RHS, ufmax_pred_ty>(L, R);
1104 }
1105 
1106 /// \brief Match an 'unordered' floating point minimum function.
1107 /// Floating point has one special value 'NaN'. Therefore, there is no total
1108 /// order. However, if we can ignore the 'NaN' value (for example, because of a
1109 /// 'no-nans-float-math' flag) a combination of a fcmp and select has 'minimum'
1110 /// semantics. In the presence of 'NaN' we have to preserve the original
1111 /// select(fcmp(ult/le, L, R), L, R) semantics matched by this predicate.
1112 ///
1113 ///                          max(L, R)  iff L and R are not NaN
1114 ///  m_UnordFMin(L, R) =     L          iff L or R are NaN
1115 template <typename LHS, typename RHS>
1116 inline MaxMin_match<FCmpInst, LHS, RHS, ufmin_pred_ty>
m_UnordFMin(const LHS & L,const RHS & R)1117 m_UnordFMin(const LHS &L, const RHS &R) {
1118   return MaxMin_match<FCmpInst, LHS, RHS, ufmin_pred_ty>(L, R);
1119 }
1120 
1121 template <typename Opnd_t> struct Argument_match {
1122   unsigned OpI;
1123   Opnd_t Val;
Argument_matchArgument_match1124   Argument_match(unsigned OpIdx, const Opnd_t &V) : OpI(OpIdx), Val(V) {}
1125 
matchArgument_match1126   template <typename OpTy> bool match(OpTy *V) {
1127     CallSite CS(V);
1128     return CS.isCall() && Val.match(CS.getArgument(OpI));
1129   }
1130 };
1131 
1132 /// \brief Match an argument.
1133 template <unsigned OpI, typename Opnd_t>
m_Argument(const Opnd_t & Op)1134 inline Argument_match<Opnd_t> m_Argument(const Opnd_t &Op) {
1135   return Argument_match<Opnd_t>(OpI, Op);
1136 }
1137 
1138 /// \brief Intrinsic matchers.
1139 struct IntrinsicID_match {
1140   unsigned ID;
IntrinsicID_matchIntrinsicID_match1141   IntrinsicID_match(Intrinsic::ID IntrID) : ID(IntrID) {}
1142 
matchIntrinsicID_match1143   template <typename OpTy> bool match(OpTy *V) {
1144     if (const auto *CI = dyn_cast<CallInst>(V))
1145       if (const auto *F = CI->getCalledFunction())
1146         return F->getIntrinsicID() == ID;
1147     return false;
1148   }
1149 };
1150 
1151 /// Intrinsic matches are combinations of ID matchers, and argument
1152 /// matchers. Higher arity matcher are defined recursively in terms of and-ing
1153 /// them with lower arity matchers. Here's some convenient typedefs for up to
1154 /// several arguments, and more can be added as needed
1155 template <typename T0 = void, typename T1 = void, typename T2 = void,
1156           typename T3 = void, typename T4 = void, typename T5 = void,
1157           typename T6 = void, typename T7 = void, typename T8 = void,
1158           typename T9 = void, typename T10 = void>
1159 struct m_Intrinsic_Ty;
1160 template <typename T0> struct m_Intrinsic_Ty<T0> {
1161   typedef match_combine_and<IntrinsicID_match, Argument_match<T0>> Ty;
1162 };
1163 template <typename T0, typename T1> struct m_Intrinsic_Ty<T0, T1> {
1164   typedef match_combine_and<typename m_Intrinsic_Ty<T0>::Ty, Argument_match<T1>>
1165       Ty;
1166 };
1167 template <typename T0, typename T1, typename T2>
1168 struct m_Intrinsic_Ty<T0, T1, T2> {
1169   typedef match_combine_and<typename m_Intrinsic_Ty<T0, T1>::Ty,
1170                             Argument_match<T2>> Ty;
1171 };
1172 template <typename T0, typename T1, typename T2, typename T3>
1173 struct m_Intrinsic_Ty<T0, T1, T2, T3> {
1174   typedef match_combine_and<typename m_Intrinsic_Ty<T0, T1, T2>::Ty,
1175                             Argument_match<T3>> Ty;
1176 };
1177 
1178 /// \brief Match intrinsic calls like this:
1179 /// m_Intrinsic<Intrinsic::fabs>(m_Value(X))
1180 template <Intrinsic::ID IntrID> inline IntrinsicID_match m_Intrinsic() {
1181   return IntrinsicID_match(IntrID);
1182 }
1183 
1184 template <Intrinsic::ID IntrID, typename T0>
1185 inline typename m_Intrinsic_Ty<T0>::Ty m_Intrinsic(const T0 &Op0) {
1186   return m_CombineAnd(m_Intrinsic<IntrID>(), m_Argument<0>(Op0));
1187 }
1188 
1189 template <Intrinsic::ID IntrID, typename T0, typename T1>
1190 inline typename m_Intrinsic_Ty<T0, T1>::Ty m_Intrinsic(const T0 &Op0,
1191                                                        const T1 &Op1) {
1192   return m_CombineAnd(m_Intrinsic<IntrID>(Op0), m_Argument<1>(Op1));
1193 }
1194 
1195 template <Intrinsic::ID IntrID, typename T0, typename T1, typename T2>
1196 inline typename m_Intrinsic_Ty<T0, T1, T2>::Ty
1197 m_Intrinsic(const T0 &Op0, const T1 &Op1, const T2 &Op2) {
1198   return m_CombineAnd(m_Intrinsic<IntrID>(Op0, Op1), m_Argument<2>(Op2));
1199 }
1200 
1201 template <Intrinsic::ID IntrID, typename T0, typename T1, typename T2,
1202           typename T3>
1203 inline typename m_Intrinsic_Ty<T0, T1, T2, T3>::Ty
1204 m_Intrinsic(const T0 &Op0, const T1 &Op1, const T2 &Op2, const T3 &Op3) {
1205   return m_CombineAnd(m_Intrinsic<IntrID>(Op0, Op1, Op2), m_Argument<3>(Op3));
1206 }
1207 
1208 // Helper intrinsic matching specializations.
1209 template <typename Opnd0>
1210 inline typename m_Intrinsic_Ty<Opnd0>::Ty m_BSwap(const Opnd0 &Op0) {
1211   return m_Intrinsic<Intrinsic::bswap>(Op0);
1212 }
1213 
1214 template <typename Opnd0, typename Opnd1>
1215 inline typename m_Intrinsic_Ty<Opnd0, Opnd1>::Ty m_FMin(const Opnd0 &Op0,
1216                                                         const Opnd1 &Op1) {
1217   return m_Intrinsic<Intrinsic::minnum>(Op0, Op1);
1218 }
1219 
1220 template <typename Opnd0, typename Opnd1>
1221 inline typename m_Intrinsic_Ty<Opnd0, Opnd1>::Ty m_FMax(const Opnd0 &Op0,
1222                                                         const Opnd1 &Op1) {
1223   return m_Intrinsic<Intrinsic::maxnum>(Op0, Op1);
1224 }
1225 
1226 } // end namespace PatternMatch
1227 } // end namespace llvm
1228 
1229 #endif
1230