X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FSupport%2FPatternMatch.h;h=fda925f5a9a8c2fe4b712df4618c0538a60a4423;hb=38b06447615440f935008a2141bd0a1fe078d437;hp=035dcf513f7ce76c1c5988ff1ea19ddc43d93920;hpb=630fcb86785f96501126e52009619b475403dc62;p=oota-llvm.git diff --git a/include/llvm/Support/PatternMatch.h b/include/llvm/Support/PatternMatch.h index 035dcf513f7..fda925f5a9a 100644 --- a/include/llvm/Support/PatternMatch.h +++ b/include/llvm/Support/PatternMatch.h @@ -51,20 +51,28 @@ inline leaf_ty m_Value() { return leaf_ty(); } /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it. inline leaf_ty m_ConstantInt() { return leaf_ty(); } +template struct constantint_ty { - int64_t Val; - explicit constantint_ty(int64_t val) : Val(val) {} - template bool match(ITy *V) { - return isa(V) && cast(V)->getSExtValue() == Val; + if (const ConstantInt *CI = dyn_cast(V)) { + const APInt &CIV = CI->getValue(); + if (Val >= 0) + return CIV == Val; + // If Val is negative, and CI is shorter than it, truncate to the right + // number of bits. If it is larger, then we have to sign extend. Just + // compare their negated values. + return -CIV == -Val; + } + return false; } }; /// m_ConstantInt(int64_t) - Match a ConstantInt with a specific value /// and ignore it. -inline constantint_ty m_ConstantInt(int64_t Val) { - return constantint_ty(Val); +template +inline constantint_ty m_ConstantInt() { + return constantint_ty(); } struct zero_ty { @@ -100,27 +108,27 @@ inline bind_ty m_Value(Value *&V) { return V; } /// m_ConstantInt - Match a ConstantInt, capturing the value if we match. inline bind_ty m_ConstantInt(ConstantInt *&CI) { return CI; } - + /// specificval_ty - Match a specified Value*. struct specificval_ty { const Value *Val; specificval_ty(const Value *V) : Val(V) {} - + template bool match(ITy *V) { return V == Val; } }; - + /// m_Specific - Match if we have a specific specified value. inline specificval_ty m_Specific(const Value *V) { return V; } - + //===----------------------------------------------------------------------===// // Matchers for specific binary operators. // -template struct BinaryOp_match { LHS_t L; @@ -148,18 +156,36 @@ inline BinaryOp_match m_Add(const LHS &L, return BinaryOp_match(L, R); } +template +inline BinaryOp_match m_FAdd(const LHS &L, + const RHS &R) { + return BinaryOp_match(L, R); +} + template inline BinaryOp_match m_Sub(const LHS &L, const RHS &R) { return BinaryOp_match(L, R); } +template +inline BinaryOp_match m_FSub(const LHS &L, + const RHS &R) { + return BinaryOp_match(L, R); +} + template inline BinaryOp_match m_Mul(const LHS &L, const RHS &R) { return BinaryOp_match(L, R); } +template +inline BinaryOp_match m_FMul(const LHS &L, + const RHS &R) { + return BinaryOp_match(L, R); +} + template inline BinaryOp_match m_UDiv(const LHS &L, const RHS &R) { @@ -215,19 +241,19 @@ inline BinaryOp_match m_Xor(const LHS &L, } template -inline BinaryOp_match m_Shl(const LHS &L, +inline BinaryOp_match m_Shl(const LHS &L, const RHS &R) { return BinaryOp_match(L, R); } template -inline BinaryOp_match m_LShr(const LHS &L, +inline BinaryOp_match m_LShr(const LHS &L, const RHS &R) { return BinaryOp_match(L, R); } template -inline BinaryOp_match m_AShr(const LHS &L, +inline BinaryOp_match m_AShr(const LHS &L, const RHS &R) { return BinaryOp_match(L, R); } @@ -302,14 +328,14 @@ struct BinaryOpClass_match { template inline BinaryOpClass_match m_Shift(Instruction::BinaryOps &Op, const LHS &L, const RHS &R) { - return BinaryOpClass_match(Op, L, R); } template inline BinaryOpClass_match m_Shift(const LHS &L, const RHS &R) { - return BinaryOpClass_match(L, R); } @@ -384,12 +410,12 @@ m_Select(const Cond &C, const LHS &L, const RHS &R) { /// m_SelectCst - This matches a select of two constants, e.g.: /// m_SelectCst(m_Value(V), -1, 0) -template -inline SelectClass_match -m_SelectCst(const Cond &C, int64_t L, int64_t R) { - return SelectClass_match(C, m_ConstantInt(L), - m_ConstantInt(R)); +template +inline SelectClass_match, constantint_ty > +m_SelectCst(const Cond &C) { + return SelectClass_match, + constantint_ty >(C, m_ConstantInt(), + m_ConstantInt()); } @@ -400,9 +426,9 @@ m_SelectCst(const Cond &C, int64_t L, int64_t R) { template struct CastClass_match { Op_t Op; - + CastClass_match(const Op_t &OpMatch) : Op(OpMatch) {} - + template bool match(OpTy *V) { if (Class *I = dyn_cast(V)) @@ -416,7 +442,7 @@ inline CastClass_match m_Cast(const OpTy &Op) { return CastClass_match(Op); } - + //===----------------------------------------------------------------------===// // Matchers for unary operators // @@ -460,9 +486,9 @@ inline not_match m_Not(const LHS &L) { return L; } template struct neg_match { LHS_t L; - + neg_match(const LHS_t &LHS) : L(LHS) {} - + template bool match(OpTy *V) { if (Instruction *I = dyn_cast(V)) @@ -486,6 +512,35 @@ template inline neg_match m_Neg(const LHS &L) { return L; } +template +struct fneg_match { + LHS_t L; + + fneg_match(const LHS_t &LHS) : L(LHS) {} + + template + bool match(OpTy *V) { + if (Instruction *I = dyn_cast(V)) + if (I->getOpcode() == Instruction::FSub) + return matchIfFNeg(I->getOperand(0), I->getOperand(1)); + if (ConstantExpr *CE = dyn_cast(V)) + if (CE->getOpcode() == Instruction::FSub) + return matchIfFNeg(CE->getOperand(0), CE->getOperand(1)); + if (ConstantFP *CF = dyn_cast(V)) + return L.match(ConstantExpr::getFNeg(CF)); + return false; + } +private: + bool matchIfFNeg(Value *LHS, Value *RHS) { + return LHS == ConstantExpr::getZeroValueForNegationExpr(LHS->getType()) && + L.match(RHS); + } +}; + +template +inline fneg_match m_FNeg(const LHS &L) { return L; } + + //===----------------------------------------------------------------------===// // Matchers for control flow //