Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 1 | //===- TargetSelectionDAG.td - Common code for DAG isels ---*- tablegen -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the target-independent interfaces used by SelectionDAG |
| 11 | // instruction selection generators. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | // Selection DAG Type Constraint definitions. |
| 17 | // |
| 18 | // Note that the semantics of these constraints are hard coded into tblgen. To |
| 19 | // modify or add constraints, you have to hack tblgen. |
| 20 | // |
| 21 | |
| 22 | class SDTypeConstraint<int opnum> { |
| 23 | int OperandNum = opnum; |
| 24 | } |
| 25 | |
| 26 | // SDTCisVT - The specified operand has exactly this VT. |
| 27 | class SDTCisVT <int OpNum, ValueType vt> : SDTypeConstraint<OpNum> { |
| 28 | ValueType VT = vt; |
| 29 | } |
| 30 | |
| 31 | // SDTCisInt - The specified operand is has integer type. |
| 32 | class SDTCisInt<int OpNum> : SDTypeConstraint<OpNum>; |
| 33 | |
| 34 | // SDTCisFP - The specified operand is has floating point type. |
| 35 | class SDTCisFP <int OpNum> : SDTypeConstraint<OpNum>; |
| 36 | |
| 37 | // SDTCisSameAs - The two specified operands have identical types. |
| 38 | class SDTCisSameAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> { |
| 39 | int OtherOperandNum = OtherOp; |
| 40 | } |
| 41 | |
| 42 | // SDTCisVTSmallerThanOp - The specified operand is a VT SDNode, and its type is |
| 43 | // smaller than the 'Other' operand. |
| 44 | class SDTCisVTSmallerThanOp<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> { |
| 45 | int OtherOperandNum = OtherOp; |
| 46 | } |
| 47 | |
Chris Lattner | 13664a6 | 2005-10-14 04:55:10 +0000 | [diff] [blame] | 48 | class SDTCisOpSmallerThanOp<int SmallOp, int BigOp> : SDTypeConstraint<SmallOp>{ |
| 49 | int BigOperandNum = BigOp; |
| 50 | } |
| 51 | |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 52 | //===----------------------------------------------------------------------===// |
| 53 | // Selection DAG Type Profile definitions. |
| 54 | // |
| 55 | // These use the constraints defined above to describe the type requirements of |
| 56 | // the various nodes. These are not hard coded into tblgen, allowing targets to |
| 57 | // add their own if needed. |
| 58 | // |
| 59 | |
| 60 | // SDTypeProfile - This profile describes the type requirements of a Selection |
| 61 | // DAG node. |
| 62 | class SDTypeProfile<int numresults, int numoperands, |
| 63 | list<SDTypeConstraint> constraints> { |
| 64 | int NumResults = numresults; |
| 65 | int NumOperands = numoperands; |
| 66 | list<SDTypeConstraint> Constraints = constraints; |
| 67 | } |
| 68 | |
| 69 | // Builtin profiles. |
| 70 | def SDTImm : SDTypeProfile<1, 0, [SDTCisInt<0>]>; // for 'imm'. |
Evan Cheng | f8ac814 | 2005-12-04 08:13:17 +0000 | [diff] [blame] | 71 | def SDTOther : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'. |
Chris Lattner | 9789826 | 2005-10-25 21:03:14 +0000 | [diff] [blame] | 72 | def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'. |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 73 | def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc. |
| 74 | SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0> |
| 75 | ]>; |
| 76 | def SDTFPBinOp : SDTypeProfile<1, 2, [ // fadd, fmul, etc. |
| 77 | SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0> |
| 78 | ]>; |
| 79 | def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // ctlz |
| 80 | SDTCisSameAs<0, 1>, SDTCisInt<0> |
| 81 | ]>; |
Chris Lattner | 444215d | 2005-10-14 06:40:20 +0000 | [diff] [blame] | 82 | def SDTIntExtendOp : SDTypeProfile<1, 1, [ // sext, zext, anyext |
| 83 | SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<1, 0> |
| 84 | ]>; |
| 85 | def SDTIntTruncOp : SDTypeProfile<1, 1, [ // trunc |
| 86 | SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<0, 1> |
| 87 | ]>; |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 88 | def SDTFPUnaryOp : SDTypeProfile<1, 1, [ // fneg, fsqrt, etc |
| 89 | SDTCisSameAs<0, 1>, SDTCisFP<0> |
| 90 | ]>; |
Chris Lattner | 13664a6 | 2005-10-14 04:55:10 +0000 | [diff] [blame] | 91 | def SDTFPRoundOp : SDTypeProfile<1, 1, [ // fround |
| 92 | SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<0, 1> |
| 93 | ]>; |
| 94 | def SDTFPExtendOp : SDTypeProfile<1, 1, [ // fextend |
| 95 | SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<1, 0> |
| 96 | ]>; |
Duraid Madina | e2fd9e2 | 2005-11-01 03:07:25 +0000 | [diff] [blame] | 97 | def SDTIntToFPOp : SDTypeProfile<1, 1, [ // [su]int_to_fp |
| 98 | SDTCisFP<0>, SDTCisInt<1> |
| 99 | ]>; |
| 100 | def SDTFPToIntOp : SDTypeProfile<1, 1, [ // fp_to_[su]int |
| 101 | SDTCisInt<0>, SDTCisFP<1> |
| 102 | ]>; |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 103 | def SDTExtInreg : SDTypeProfile<1, 2, [ // sext_inreg |
| 104 | SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>, |
| 105 | SDTCisVTSmallerThanOp<2, 1> |
| 106 | ]>; |
| 107 | |
Chris Lattner | 1f426de | 2005-10-26 17:00:25 +0000 | [diff] [blame] | 108 | def SDTSetCC : SDTypeProfile<1, 3, [ // setcc |
| 109 | SDTCisInt<0>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT> |
| 110 | ]>; |
| 111 | |
Duraid Madina | 5966955 | 2005-11-02 02:37:18 +0000 | [diff] [blame] | 112 | def SDTSelect : SDTypeProfile<1, 3, [ // select |
| 113 | SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3> |
| 114 | ]>; |
| 115 | |
Evan Cheng | f8ac814 | 2005-12-04 08:13:17 +0000 | [diff] [blame] | 116 | def SDTBr : SDTypeProfile<0, 1, [ // br |
| 117 | SDTCisVT<0, OtherVT> |
| 118 | ]>; |
| 119 | |
| 120 | def SDTBrCond : SDTypeProfile<0, 2, [ // brcond |
| 121 | SDTCisInt<0>, SDTCisVT<1, OtherVT> |
| 122 | ]>; |
| 123 | |
| 124 | def SDTRet : SDTypeProfile<0, 0, [ // ret |
| 125 | ]>; |
| 126 | |
| 127 | def SDTWritePort : SDTypeProfile<0, 2, [ // writeport |
| 128 | SDTCisInt<0>, SDTCisInt<1> |
| 129 | ]>; |
| 130 | |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 131 | //===----------------------------------------------------------------------===// |
| 132 | // Selection DAG Node Properties. |
| 133 | // |
| 134 | // Note: These are hard coded into tblgen. |
| 135 | // |
| 136 | class SDNodeProperty; |
| 137 | def SDNPCommutative : SDNodeProperty; // X op Y == Y op X |
| 138 | def SDNPAssociative : SDNodeProperty; // (X op Y) op Z == X op (Y op Z) |
Evan Cheng | f8ac814 | 2005-12-04 08:13:17 +0000 | [diff] [blame] | 139 | def SDNPHasChain : SDNodeProperty; // R/W chain operand and result |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 140 | |
| 141 | //===----------------------------------------------------------------------===// |
| 142 | // Selection DAG Node definitions. |
| 143 | // |
| 144 | class SDNode<string opcode, SDTypeProfile typeprof, |
| 145 | list<SDNodeProperty> props = [], string sdclass = "SDNode"> { |
| 146 | string Opcode = opcode; |
| 147 | string SDClass = sdclass; |
| 148 | list<SDNodeProperty> Properties = props; |
| 149 | SDTypeProfile TypeProfile = typeprof; |
| 150 | } |
| 151 | |
| 152 | def set; |
| 153 | def node; |
| 154 | |
| 155 | def imm : SDNode<"ISD::Constant" , SDTImm , [], "ConstantSDNode">; |
Evan Cheng | f8ac814 | 2005-12-04 08:13:17 +0000 | [diff] [blame] | 156 | def vt : SDNode<"ISD::VALUETYPE" , SDTOther , [], "VTSDNode">; |
| 157 | def bb : SDNode<"ISD::BasicBlock", SDTOther , [], "BasicBlockSDNode">; |
| 158 | def cond : SDNode<"ISD::CONDCODE" , SDTOther , [], "CondCodeSDNode">; |
Chris Lattner | 9789826 | 2005-10-25 21:03:14 +0000 | [diff] [blame] | 159 | def undef : SDNode<"ISD::UNDEF" , SDTUNDEF , []>; |
Chris Lattner | db40dc2 | 2005-11-17 07:20:15 +0000 | [diff] [blame] | 160 | def globaladdr : SDNode<"ISD::GlobalAddress", SDTImm, [], |
| 161 | "GlobalAddressSDNode">; |
| 162 | def tglobaladdr : SDNode<"ISD::TargetGlobalAddress", SDTImm, [], |
| 163 | "GlobalAddressSDNode">; |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 164 | def add : SDNode<"ISD::ADD" , SDTIntBinOp , |
| 165 | [SDNPCommutative, SDNPAssociative]>; |
| 166 | def sub : SDNode<"ISD::SUB" , SDTIntBinOp>; |
| 167 | def mul : SDNode<"ISD::MUL" , SDTIntBinOp, |
| 168 | [SDNPCommutative, SDNPAssociative]>; |
| 169 | def mulhs : SDNode<"ISD::MULHS" , SDTIntBinOp, [SDNPCommutative]>; |
| 170 | def mulhu : SDNode<"ISD::MULHU" , SDTIntBinOp, [SDNPCommutative]>; |
| 171 | def sdiv : SDNode<"ISD::SDIV" , SDTIntBinOp>; |
| 172 | def udiv : SDNode<"ISD::UDIV" , SDTIntBinOp>; |
| 173 | def srem : SDNode<"ISD::SREM" , SDTIntBinOp>; |
| 174 | def urem : SDNode<"ISD::UREM" , SDTIntBinOp>; |
| 175 | def srl : SDNode<"ISD::SRL" , SDTIntBinOp>; |
| 176 | def sra : SDNode<"ISD::SRA" , SDTIntBinOp>; |
| 177 | def shl : SDNode<"ISD::SHL" , SDTIntBinOp>; |
| 178 | def and : SDNode<"ISD::AND" , SDTIntBinOp, |
| 179 | [SDNPCommutative, SDNPAssociative]>; |
| 180 | def or : SDNode<"ISD::OR" , SDTIntBinOp, |
| 181 | [SDNPCommutative, SDNPAssociative]>; |
| 182 | def xor : SDNode<"ISD::XOR" , SDTIntBinOp, |
| 183 | [SDNPCommutative, SDNPAssociative]>; |
Chris Lattner | 444215d | 2005-10-14 06:40:20 +0000 | [diff] [blame] | 184 | |
| 185 | def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>; |
| 186 | def ctlz : SDNode<"ISD::CTLZ" , SDTIntUnaryOp>; |
Andrew Lenharth | d684e1a | 2005-10-20 19:38:11 +0000 | [diff] [blame] | 187 | def cttz : SDNode<"ISD::CTTZ" , SDTIntUnaryOp>; |
| 188 | def ctpop : SDNode<"ISD::CTPOP" , SDTIntUnaryOp>; |
Chris Lattner | 444215d | 2005-10-14 06:40:20 +0000 | [diff] [blame] | 189 | def sext : SDNode<"ISD::SIGN_EXTEND", SDTIntExtendOp>; |
| 190 | def zext : SDNode<"ISD::ZERO_EXTEND", SDTIntExtendOp>; |
| 191 | def anyext : SDNode<"ISD::ANY_EXTEND" , SDTIntExtendOp>; |
| 192 | def trunc : SDNode<"ISD::TRUNCATE" , SDTIntTruncOp>; |
| 193 | |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 194 | def fadd : SDNode<"ISD::FADD" , SDTFPBinOp, [SDNPCommutative]>; |
| 195 | def fsub : SDNode<"ISD::FSUB" , SDTFPBinOp>; |
| 196 | def fmul : SDNode<"ISD::FMUL" , SDTFPBinOp, [SDNPCommutative]>; |
| 197 | def fdiv : SDNode<"ISD::FDIV" , SDTFPBinOp>; |
| 198 | def frem : SDNode<"ISD::FREM" , SDTFPBinOp>; |
| 199 | def fabs : SDNode<"ISD::FABS" , SDTFPUnaryOp>; |
| 200 | def fneg : SDNode<"ISD::FNEG" , SDTFPUnaryOp>; |
| 201 | def fsqrt : SDNode<"ISD::FSQRT" , SDTFPUnaryOp>; |
| 202 | |
Chris Lattner | 13664a6 | 2005-10-14 04:55:10 +0000 | [diff] [blame] | 203 | def fround : SDNode<"ISD::FP_ROUND" , SDTFPRoundOp>; |
| 204 | def fextend : SDNode<"ISD::FP_EXTEND" , SDTFPExtendOp>; |
| 205 | |
Duraid Madina | e2fd9e2 | 2005-11-01 03:07:25 +0000 | [diff] [blame] | 206 | def sint_to_fp : SDNode<"ISD::SINT_TO_FP" , SDTIntToFPOp>; |
| 207 | def uint_to_fp : SDNode<"ISD::UINT_TO_FP" , SDTIntToFPOp>; |
| 208 | def fp_to_sint : SDNode<"ISD::FP_TO_SINT" , SDTFPToIntOp>; |
| 209 | def fp_to_uint : SDNode<"ISD::FP_TO_UINT" , SDTFPToIntOp>; |
| 210 | |
Chris Lattner | 1f426de | 2005-10-26 17:00:25 +0000 | [diff] [blame] | 211 | def setcc : SDNode<"ISD::SETCC" , SDTSetCC>; |
Duraid Madina | 5966955 | 2005-11-02 02:37:18 +0000 | [diff] [blame] | 212 | def select : SDNode<"ISD::SELECT" , SDTSelect>; |
Chris Lattner | 1f426de | 2005-10-26 17:00:25 +0000 | [diff] [blame] | 213 | |
Evan Cheng | f8ac814 | 2005-12-04 08:13:17 +0000 | [diff] [blame] | 214 | def br : SDNode<"ISD::BR" , SDTBr, [SDNPHasChain]>; |
| 215 | def brcond : SDNode<"ISD::BRCOND" , SDTBrCond, [SDNPHasChain]>; |
| 216 | def ret : SDNode<"ISD::RET" , SDTRet, [SDNPHasChain]>; |
| 217 | |
| 218 | def writeport : SDNode<"ISD::WRITEPORT" , SDTWritePort, [SDNPHasChain]>; |
| 219 | |
Chris Lattner | 1f426de | 2005-10-26 17:00:25 +0000 | [diff] [blame] | 220 | //===----------------------------------------------------------------------===// |
| 221 | // Selection DAG Condition Codes |
| 222 | |
| 223 | class CondCode; // ISD::CondCode enums |
| 224 | def SETOEQ : CondCode; def SETOGT : CondCode; |
| 225 | def SETOGE : CondCode; def SETOLT : CondCode; def SETOLE : CondCode; |
| 226 | def SETONE : CondCode; def SETO : CondCode; def SETUO : CondCode; |
| 227 | def SETUEQ : CondCode; def SETUGT : CondCode; def SETUGE : CondCode; |
| 228 | def SETULT : CondCode; def SETULE : CondCode; def SETUNE : CondCode; |
| 229 | |
| 230 | def SETEQ : CondCode; def SETGT : CondCode; def SETGE : CondCode; |
| 231 | def SETLT : CondCode; def SETLE : CondCode; def SETNE : CondCode; |
| 232 | |
| 233 | |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 234 | //===----------------------------------------------------------------------===// |
| 235 | // Selection DAG Node Transformation Functions. |
| 236 | // |
| 237 | // This mechanism allows targets to manipulate nodes in the output DAG once a |
| 238 | // match has been formed. This is typically used to manipulate immediate |
| 239 | // values. |
| 240 | // |
| 241 | class SDNodeXForm<SDNode opc, code xformFunction> { |
| 242 | SDNode Opcode = opc; |
| 243 | code XFormFunction = xformFunction; |
| 244 | } |
| 245 | |
| 246 | def NOOP_SDNodeXForm : SDNodeXForm<imm, [{}]>; |
| 247 | |
| 248 | |
| 249 | //===----------------------------------------------------------------------===// |
| 250 | // Selection DAG Pattern Fragments. |
| 251 | // |
| 252 | // Pattern fragments are reusable chunks of dags that match specific things. |
| 253 | // They can take arguments and have C++ predicates that control whether they |
| 254 | // match. They are intended to make the patterns for common instructions more |
| 255 | // compact and readable. |
| 256 | // |
| 257 | |
| 258 | /// PatFrag - Represents a pattern fragment. This can match something on the |
| 259 | /// DAG, frame a single node to multiply nested other fragments. |
| 260 | /// |
| 261 | class PatFrag<dag ops, dag frag, code pred = [{}], |
| 262 | SDNodeXForm xform = NOOP_SDNodeXForm> { |
| 263 | dag Operands = ops; |
| 264 | dag Fragment = frag; |
| 265 | code Predicate = pred; |
| 266 | SDNodeXForm OperandTransform = xform; |
| 267 | } |
| 268 | |
| 269 | // PatLeaf's are pattern fragments that have no operands. This is just a helper |
| 270 | // to define immediates and other common things concisely. |
| 271 | class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm> |
| 272 | : PatFrag<(ops), frag, pred, xform>; |
| 273 | |
| 274 | // Leaf fragments. |
| 275 | |
| 276 | def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>; |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 277 | |
| 278 | def vtInt : PatLeaf<(vt), [{ return MVT::isInteger(N->getVT()); }]>; |
| 279 | def vtFP : PatLeaf<(vt), [{ return MVT::isFloatingPoint(N->getVT()); }]>; |
| 280 | |
| 281 | // Other helper fragments. |
| 282 | |
| 283 | def not : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>; |
Chris Lattner | eae6d64 | 2005-10-20 23:30:37 +0000 | [diff] [blame] | 284 | def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>; |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 1f426de | 2005-10-26 17:00:25 +0000 | [diff] [blame] | 286 | |
| 287 | // setcc convenience fragments. |
| 288 | def setoeq : PatFrag<(ops node:$lhs, node:$rhs), |
| 289 | (setcc node:$lhs, node:$rhs, SETOEQ)>; |
| 290 | def setogt : PatFrag<(ops node:$lhs, node:$rhs), |
| 291 | (setcc node:$lhs, node:$rhs, SETOGT)>; |
| 292 | def setoge : PatFrag<(ops node:$lhs, node:$rhs), |
| 293 | (setcc node:$lhs, node:$rhs, SETOGE)>; |
| 294 | def setolt : PatFrag<(ops node:$lhs, node:$rhs), |
| 295 | (setcc node:$lhs, node:$rhs, SETOLT)>; |
| 296 | def setole : PatFrag<(ops node:$lhs, node:$rhs), |
| 297 | (setcc node:$lhs, node:$rhs, SETOLE)>; |
| 298 | def setone : PatFrag<(ops node:$lhs, node:$rhs), |
| 299 | (setcc node:$lhs, node:$rhs, SETONE)>; |
| 300 | def seto : PatFrag<(ops node:$lhs, node:$rhs), |
| 301 | (setcc node:$lhs, node:$rhs, SETO)>; |
| 302 | def setuo : PatFrag<(ops node:$lhs, node:$rhs), |
| 303 | (setcc node:$lhs, node:$rhs, SETUO)>; |
| 304 | def setueq : PatFrag<(ops node:$lhs, node:$rhs), |
| 305 | (setcc node:$lhs, node:$rhs, SETUEQ)>; |
| 306 | def setugt : PatFrag<(ops node:$lhs, node:$rhs), |
| 307 | (setcc node:$lhs, node:$rhs, SETUGT)>; |
| 308 | def setuge : PatFrag<(ops node:$lhs, node:$rhs), |
| 309 | (setcc node:$lhs, node:$rhs, SETUGE)>; |
| 310 | def setult : PatFrag<(ops node:$lhs, node:$rhs), |
| 311 | (setcc node:$lhs, node:$rhs, SETULT)>; |
| 312 | def setule : PatFrag<(ops node:$lhs, node:$rhs), |
| 313 | (setcc node:$lhs, node:$rhs, SETULE)>; |
| 314 | def setune : PatFrag<(ops node:$lhs, node:$rhs), |
| 315 | (setcc node:$lhs, node:$rhs, SETUNE)>; |
| 316 | def seteq : PatFrag<(ops node:$lhs, node:$rhs), |
| 317 | (setcc node:$lhs, node:$rhs, SETEQ)>; |
| 318 | def setgt : PatFrag<(ops node:$lhs, node:$rhs), |
| 319 | (setcc node:$lhs, node:$rhs, SETGT)>; |
| 320 | def setge : PatFrag<(ops node:$lhs, node:$rhs), |
| 321 | (setcc node:$lhs, node:$rhs, SETGE)>; |
| 322 | def setlt : PatFrag<(ops node:$lhs, node:$rhs), |
| 323 | (setcc node:$lhs, node:$rhs, SETLT)>; |
| 324 | def setle : PatFrag<(ops node:$lhs, node:$rhs), |
| 325 | (setcc node:$lhs, node:$rhs, SETLE)>; |
| 326 | def setne : PatFrag<(ops node:$lhs, node:$rhs), |
| 327 | (setcc node:$lhs, node:$rhs, SETNE)>; |
| 328 | |
Chris Lattner | 17f2cf0 | 2005-10-10 06:00:30 +0000 | [diff] [blame] | 329 | //===----------------------------------------------------------------------===// |
| 330 | // Selection DAG Pattern Support. |
| 331 | // |
| 332 | // Patterns are what are actually matched against the target-flavored |
| 333 | // instruction selection DAG. Instructions defined by the target implicitly |
| 334 | // define patterns in most cases, but patterns can also be explicitly added when |
| 335 | // an operation is defined by a sequence of instructions (e.g. loading a large |
| 336 | // immediate value on RISC targets that do not support immediates as large as |
| 337 | // their GPRs). |
| 338 | // |
| 339 | |
| 340 | class Pattern<dag patternToMatch, list<dag> resultInstrs> { |
| 341 | dag PatternToMatch = patternToMatch; |
| 342 | list<dag> ResultInstrs = resultInstrs; |
| 343 | } |
| 344 | |
| 345 | // Pat - A simple (but common) form of a pattern, which produces a simple result |
| 346 | // not needing a full list. |
| 347 | class Pat<dag pattern, dag result> : Pattern<pattern, [result]>; |
| 348 | |