]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
Merge ^/head r357855 through r357920.
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / include / llvm / Target / TargetSelectionDAG.td
1 //===- TargetSelectionDAG.td - Common code for DAG isels ---*- tablegen -*-===//
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 defines the target-independent interfaces used by SelectionDAG
10 // instruction selection generators.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // Selection DAG Type Constraint definitions.
16 //
17 // Note that the semantics of these constraints are hard coded into tblgen.  To
18 // modify or add constraints, you have to hack tblgen.
19 //
20
21 class SDTypeConstraint<int opnum> {
22   int OperandNum = opnum;
23 }
24
25 // SDTCisVT - The specified operand has exactly this VT.
26 class SDTCisVT<int OpNum, ValueType vt> : SDTypeConstraint<OpNum> {
27   ValueType VT = vt;
28 }
29
30 class SDTCisPtrTy<int OpNum> : SDTypeConstraint<OpNum>;
31
32 // SDTCisInt - The specified operand has integer type.
33 class SDTCisInt<int OpNum> : SDTypeConstraint<OpNum>;
34
35 // SDTCisFP - The specified operand has floating-point type.
36 class SDTCisFP<int OpNum> : SDTypeConstraint<OpNum>;
37
38 // SDTCisVec - The specified operand has a vector type.
39 class SDTCisVec<int OpNum> : SDTypeConstraint<OpNum>;
40
41 // SDTCisSameAs - The two specified operands have identical types.
42 class SDTCisSameAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
43   int OtherOperandNum = OtherOp;
44 }
45
46 // SDTCisVTSmallerThanOp - The specified operand is a VT SDNode, and its type is
47 // smaller than the 'Other' operand.
48 class SDTCisVTSmallerThanOp<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
49   int OtherOperandNum = OtherOp;
50 }
51
52 class SDTCisOpSmallerThanOp<int SmallOp, int BigOp> : SDTypeConstraint<SmallOp>{
53   int BigOperandNum = BigOp;
54 }
55
56 /// SDTCisEltOfVec - This indicates that ThisOp is a scalar type of the same
57 /// type as the element type of OtherOp, which is a vector type.
58 class SDTCisEltOfVec<int ThisOp, int OtherOp>
59   : SDTypeConstraint<ThisOp> {
60   int OtherOpNum = OtherOp;
61 }
62
63 /// SDTCisSubVecOfVec - This indicates that ThisOp is a vector type
64 /// with length less that of OtherOp, which is a vector type.
65 class SDTCisSubVecOfVec<int ThisOp, int OtherOp>
66   : SDTypeConstraint<ThisOp> {
67   int OtherOpNum = OtherOp;
68 }
69
70 // SDTCVecEltisVT - The specified operand is vector type with element type
71 // of VT.
72 class SDTCVecEltisVT<int OpNum, ValueType vt> : SDTypeConstraint<OpNum> {
73   ValueType VT = vt;
74 }
75
76 // SDTCisSameNumEltsAs - The two specified operands have identical number
77 // of elements.
78 class SDTCisSameNumEltsAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
79   int OtherOperandNum = OtherOp;
80 }
81
82 // SDTCisSameSizeAs - The two specified operands have identical size.
83 class SDTCisSameSizeAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
84   int OtherOperandNum = OtherOp;
85 }
86
87 //===----------------------------------------------------------------------===//
88 // Selection DAG Type Profile definitions.
89 //
90 // These use the constraints defined above to describe the type requirements of
91 // the various nodes.  These are not hard coded into tblgen, allowing targets to
92 // add their own if needed.
93 //
94
95 // SDTypeProfile - This profile describes the type requirements of a Selection
96 // DAG node.
97 class SDTypeProfile<int numresults, int numoperands,
98                     list<SDTypeConstraint> constraints> {
99   int NumResults = numresults;
100   int NumOperands = numoperands;
101   list<SDTypeConstraint> Constraints = constraints;
102 }
103
104 // Builtin profiles.
105 def SDTIntLeaf: SDTypeProfile<1, 0, [SDTCisInt<0>]>;         // for 'imm'.
106 def SDTFPLeaf : SDTypeProfile<1, 0, [SDTCisFP<0>]>;          // for 'fpimm'.
107 def SDTPtrLeaf: SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>;       // for '&g'.
108 def SDTOther  : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
109 def SDTUNDEF  : SDTypeProfile<1, 0, []>;                     // for 'undef'.
110 def SDTUnaryOp  : SDTypeProfile<1, 1, []>;                   // for bitconvert.
111
112 def SDTIntBinOp : SDTypeProfile<1, 2, [     // add, and, or, xor, udiv, etc.
113   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
114 ]>;
115 def SDTIntShiftOp : SDTypeProfile<1, 2, [   // shl, sra, srl
116   SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisInt<2>
117 ]>;
118 def SDTIntShiftDOp: SDTypeProfile<1, 3, [   // fshl, fshr
119   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>, SDTCisInt<3>
120 ]>;
121 def SDTIntSatNoShOp : SDTypeProfile<1, 2, [   // ssat with no shift
122   SDTCisSameAs<0, 1>, SDTCisInt<2>
123 ]>;
124 def SDTIntBinHiLoOp : SDTypeProfile<2, 2, [ // mulhi, mullo, sdivrem, udivrem
125   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,SDTCisInt<0>
126 ]>;
127 def SDTIntScaledBinOp : SDTypeProfile<1, 3, [  // smulfix, sdivfix, etc
128   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>, SDTCisInt<3>
129 ]>;
130
131 def SDTFPBinOp : SDTypeProfile<1, 2, [      // fadd, fmul, etc.
132   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0>
133 ]>;
134 def SDTFPSignOp : SDTypeProfile<1, 2, [     // fcopysign.
135   SDTCisSameAs<0, 1>, SDTCisFP<0>, SDTCisFP<2>
136 ]>;
137 def SDTFPTernaryOp : SDTypeProfile<1, 3, [  // fmadd, fnmsub, etc.
138   SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, SDTCisFP<0>
139 ]>;
140 def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // bitreverse
141   SDTCisSameAs<0, 1>, SDTCisInt<0>
142 ]>;
143 def SDTIntBitCountUnaryOp : SDTypeProfile<1, 1, [   // ctlz, cttz
144   SDTCisInt<0>, SDTCisInt<1>
145 ]>;
146 def SDTIntExtendOp : SDTypeProfile<1, 1, [  // sext, zext, anyext
147   SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<1, 0>, SDTCisSameNumEltsAs<0, 1>
148 ]>;
149 def SDTIntTruncOp  : SDTypeProfile<1, 1, [  // trunc
150   SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<0, 1>, SDTCisSameNumEltsAs<0, 1>
151 ]>;
152 def SDTFPUnaryOp  : SDTypeProfile<1, 1, [   // fneg, fsqrt, etc
153   SDTCisSameAs<0, 1>, SDTCisFP<0>
154 ]>;
155 def SDTFPRoundOp  : SDTypeProfile<1, 1, [   // fround
156   SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<0, 1>, SDTCisSameNumEltsAs<0, 1>
157 ]>;
158 def SDTFPExtendOp  : SDTypeProfile<1, 1, [  // fextend
159   SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<1, 0>, SDTCisSameNumEltsAs<0, 1>
160 ]>;
161 def SDTIntToFPOp : SDTypeProfile<1, 1, [    // [su]int_to_fp
162   SDTCisFP<0>, SDTCisInt<1>, SDTCisSameNumEltsAs<0, 1>
163 ]>;
164 def SDTFPToIntOp : SDTypeProfile<1, 1, [    // fp_to_[su]int
165   SDTCisInt<0>, SDTCisFP<1>, SDTCisSameNumEltsAs<0, 1>
166 ]>;
167 def SDTExtInreg : SDTypeProfile<1, 2, [     // sext_inreg
168   SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>,
169   SDTCisVTSmallerThanOp<2, 1>
170 ]>;
171 def SDTExtInvec : SDTypeProfile<1, 1, [     // sext_invec
172   SDTCisInt<0>, SDTCisVec<0>, SDTCisInt<1>, SDTCisVec<1>,
173   SDTCisOpSmallerThanOp<1, 0>
174 ]>;
175
176 def SDTSetCC : SDTypeProfile<1, 3, [        // setcc
177   SDTCisInt<0>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT>
178 ]>;
179
180 def SDTSelect : SDTypeProfile<1, 3, [       // select
181   SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>
182 ]>;
183
184 def SDTVSelect : SDTypeProfile<1, 3, [       // vselect
185   SDTCisVec<0>, SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>, SDTCisSameNumEltsAs<0, 1>
186 ]>;
187
188 def SDTSelectCC : SDTypeProfile<1, 5, [     // select_cc
189   SDTCisSameAs<1, 2>, SDTCisSameAs<3, 4>, SDTCisSameAs<0, 3>,
190   SDTCisVT<5, OtherVT>
191 ]>;
192
193 def SDTBr : SDTypeProfile<0, 1, [           // br
194   SDTCisVT<0, OtherVT>
195 ]>;
196
197 def SDTBrCC : SDTypeProfile<0, 4, [       // brcc
198   SDTCisVT<0, OtherVT>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT>
199 ]>;
200
201 def SDTBrcond : SDTypeProfile<0, 2, [       // brcond
202   SDTCisInt<0>, SDTCisVT<1, OtherVT>
203 ]>;
204
205 def SDTBrind : SDTypeProfile<0, 1, [        // brind
206   SDTCisPtrTy<0>
207 ]>;
208
209 def SDTCatchret : SDTypeProfile<0, 2, [     // catchret
210   SDTCisVT<0, OtherVT>, SDTCisVT<1, OtherVT>
211 ]>;
212
213 def SDTNone : SDTypeProfile<0, 0, []>;      // ret, trap
214
215 def SDTLoad : SDTypeProfile<1, 1, [         // load
216   SDTCisPtrTy<1>
217 ]>;
218
219 def SDTStore : SDTypeProfile<0, 2, [        // store
220   SDTCisPtrTy<1>
221 ]>;
222
223 def SDTIStore : SDTypeProfile<1, 3, [       // indexed store
224   SDTCisSameAs<0, 2>, SDTCisPtrTy<0>, SDTCisPtrTy<3>
225 ]>;
226
227 def SDTMaskedStore: SDTypeProfile<0, 4, [       // masked store
228   SDTCisVec<0>, SDTCisPtrTy<1>, SDTCisPtrTy<2>, SDTCisVec<3>, SDTCisSameNumEltsAs<0, 3>
229 ]>;
230
231 def SDTMaskedLoad: SDTypeProfile<1, 4, [       // masked load
232   SDTCisVec<0>, SDTCisPtrTy<1>, SDTCisPtrTy<2>, SDTCisVec<3>, SDTCisSameAs<0, 4>,
233   SDTCisSameNumEltsAs<0, 3>
234 ]>;
235
236 def SDTVecShuffle : SDTypeProfile<1, 2, [
237   SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>
238 ]>;
239 def SDTVecExtract : SDTypeProfile<1, 2, [   // vector extract
240   SDTCisEltOfVec<0, 1>, SDTCisPtrTy<2>
241 ]>;
242 def SDTVecInsert : SDTypeProfile<1, 3, [    // vector insert
243   SDTCisEltOfVec<2, 1>, SDTCisSameAs<0, 1>, SDTCisPtrTy<3>
244 ]>;
245 def SDTVecReduce : SDTypeProfile<1, 1, [    // vector reduction
246   SDTCisInt<0>, SDTCisVec<1>
247 ]>;
248
249 def SDTSubVecExtract : SDTypeProfile<1, 2, [// subvector extract
250   SDTCisSubVecOfVec<0,1>, SDTCisInt<2>
251 ]>;
252 def SDTSubVecInsert : SDTypeProfile<1, 3, [ // subvector insert
253   SDTCisSubVecOfVec<2, 1>, SDTCisSameAs<0,1>, SDTCisInt<3>
254 ]>;
255
256 def SDTPrefetch : SDTypeProfile<0, 4, [     // prefetch
257   SDTCisPtrTy<0>, SDTCisSameAs<1, 2>, SDTCisSameAs<1, 3>, SDTCisInt<1>
258 ]>;
259
260 def SDTMemBarrier : SDTypeProfile<0, 5, [   // memory barrier
261   SDTCisSameAs<0,1>,  SDTCisSameAs<0,2>,  SDTCisSameAs<0,3>, SDTCisSameAs<0,4>,
262   SDTCisInt<0>
263 ]>;
264 def SDTAtomicFence : SDTypeProfile<0, 2, [
265   SDTCisSameAs<0,1>, SDTCisPtrTy<0>
266 ]>;
267 def SDTAtomic3 : SDTypeProfile<1, 3, [
268   SDTCisSameAs<0,2>,  SDTCisSameAs<0,3>, SDTCisInt<0>, SDTCisPtrTy<1>
269 ]>;
270 def SDTAtomic2 : SDTypeProfile<1, 2, [
271   SDTCisSameAs<0,2>, SDTCisInt<0>, SDTCisPtrTy<1>
272 ]>;
273
274 def SDTFPAtomic2 : SDTypeProfile<1, 2, [
275   SDTCisSameAs<0,2>, SDTCisFP<0>, SDTCisPtrTy<1>
276 ]>;
277
278 def SDTAtomicStore : SDTypeProfile<0, 2, [
279   SDTCisPtrTy<0>, SDTCisInt<1>
280 ]>;
281 def SDTAtomicLoad : SDTypeProfile<1, 1, [
282   SDTCisInt<0>, SDTCisPtrTy<1>
283 ]>;
284
285 def SDTConvertOp : SDTypeProfile<1, 5, [ //cvtss, su, us, uu, ff, fs, fu, sf, su
286   SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>, SDTCisPtrTy<4>, SDTCisPtrTy<5>
287 ]>;
288
289 class SDCallSeqStart<list<SDTypeConstraint> constraints> :
290         SDTypeProfile<0, 2, constraints>;
291 class SDCallSeqEnd<list<SDTypeConstraint> constraints> :
292         SDTypeProfile<0, 2, constraints>;
293
294 //===----------------------------------------------------------------------===//
295 // Selection DAG Node definitions.
296 //
297 class SDNode<string opcode, SDTypeProfile typeprof,
298              list<SDNodeProperty> props = [], string sdclass = "SDNode">
299              : SDPatternOperator {
300   string Opcode  = opcode;
301   string SDClass = sdclass;
302   let Properties = props;
303   SDTypeProfile TypeProfile = typeprof;
304 }
305
306 // Special TableGen-recognized dag nodes
307 def set;
308 def implicit;
309 def node;
310 def srcvalue;
311
312 def imm        : SDNode<"ISD::Constant"  , SDTIntLeaf , [], "ConstantSDNode">;
313 def timm       : SDNode<"ISD::TargetConstant",SDTIntLeaf, [], "ConstantSDNode">;
314 def fpimm      : SDNode<"ISD::ConstantFP", SDTFPLeaf  , [], "ConstantFPSDNode">;
315 def vt         : SDNode<"ISD::VALUETYPE" , SDTOther   , [], "VTSDNode">;
316 def bb         : SDNode<"ISD::BasicBlock", SDTOther   , [], "BasicBlockSDNode">;
317 def cond       : SDNode<"ISD::CONDCODE"  , SDTOther   , [], "CondCodeSDNode">;
318 def undef      : SDNode<"ISD::UNDEF"     , SDTUNDEF   , []>;
319 def globaladdr : SDNode<"ISD::GlobalAddress",         SDTPtrLeaf, [],
320                         "GlobalAddressSDNode">;
321 def tglobaladdr : SDNode<"ISD::TargetGlobalAddress",  SDTPtrLeaf, [],
322                          "GlobalAddressSDNode">;
323 def globaltlsaddr : SDNode<"ISD::GlobalTLSAddress",         SDTPtrLeaf, [],
324                           "GlobalAddressSDNode">;
325 def tglobaltlsaddr : SDNode<"ISD::TargetGlobalTLSAddress",  SDTPtrLeaf, [],
326                            "GlobalAddressSDNode">;
327 def constpool   : SDNode<"ISD::ConstantPool",         SDTPtrLeaf, [],
328                          "ConstantPoolSDNode">;
329 def tconstpool  : SDNode<"ISD::TargetConstantPool",   SDTPtrLeaf, [],
330                          "ConstantPoolSDNode">;
331 def jumptable   : SDNode<"ISD::JumpTable",            SDTPtrLeaf, [],
332                          "JumpTableSDNode">;
333 def tjumptable  : SDNode<"ISD::TargetJumpTable",      SDTPtrLeaf, [],
334                          "JumpTableSDNode">;
335 def frameindex  : SDNode<"ISD::FrameIndex",           SDTPtrLeaf, [],
336                          "FrameIndexSDNode">;
337 def tframeindex : SDNode<"ISD::TargetFrameIndex",     SDTPtrLeaf, [],
338                          "FrameIndexSDNode">;
339 def externalsym : SDNode<"ISD::ExternalSymbol",       SDTPtrLeaf, [],
340                          "ExternalSymbolSDNode">;
341 def texternalsym: SDNode<"ISD::TargetExternalSymbol", SDTPtrLeaf, [],
342                          "ExternalSymbolSDNode">;
343 def mcsym: SDNode<"ISD::MCSymbol", SDTPtrLeaf, [], "MCSymbolSDNode">;
344 def blockaddress : SDNode<"ISD::BlockAddress",        SDTPtrLeaf, [],
345                          "BlockAddressSDNode">;
346 def tblockaddress: SDNode<"ISD::TargetBlockAddress",  SDTPtrLeaf, [],
347                          "BlockAddressSDNode">;
348
349 def add        : SDNode<"ISD::ADD"       , SDTIntBinOp   ,
350                         [SDNPCommutative, SDNPAssociative]>;
351 def sub        : SDNode<"ISD::SUB"       , SDTIntBinOp>;
352 def mul        : SDNode<"ISD::MUL"       , SDTIntBinOp,
353                         [SDNPCommutative, SDNPAssociative]>;
354 def mulhs      : SDNode<"ISD::MULHS"     , SDTIntBinOp, [SDNPCommutative]>;
355 def mulhu      : SDNode<"ISD::MULHU"     , SDTIntBinOp, [SDNPCommutative]>;
356 def smullohi   : SDNode<"ISD::SMUL_LOHI" , SDTIntBinHiLoOp, [SDNPCommutative]>;
357 def umullohi   : SDNode<"ISD::UMUL_LOHI" , SDTIntBinHiLoOp, [SDNPCommutative]>;
358 def sdiv       : SDNode<"ISD::SDIV"      , SDTIntBinOp>;
359 def udiv       : SDNode<"ISD::UDIV"      , SDTIntBinOp>;
360 def srem       : SDNode<"ISD::SREM"      , SDTIntBinOp>;
361 def urem       : SDNode<"ISD::UREM"      , SDTIntBinOp>;
362 def sdivrem    : SDNode<"ISD::SDIVREM"   , SDTIntBinHiLoOp>;
363 def udivrem    : SDNode<"ISD::UDIVREM"   , SDTIntBinHiLoOp>;
364 def srl        : SDNode<"ISD::SRL"       , SDTIntShiftOp>;
365 def sra        : SDNode<"ISD::SRA"       , SDTIntShiftOp>;
366 def shl        : SDNode<"ISD::SHL"       , SDTIntShiftOp>;
367 def rotl       : SDNode<"ISD::ROTL"      , SDTIntShiftOp>;
368 def rotr       : SDNode<"ISD::ROTR"      , SDTIntShiftOp>;
369 def fshl       : SDNode<"ISD::FSHL"      , SDTIntShiftDOp>;
370 def fshr       : SDNode<"ISD::FSHR"      , SDTIntShiftDOp>;
371 def and        : SDNode<"ISD::AND"       , SDTIntBinOp,
372                         [SDNPCommutative, SDNPAssociative]>;
373 def or         : SDNode<"ISD::OR"        , SDTIntBinOp,
374                         [SDNPCommutative, SDNPAssociative]>;
375 def xor        : SDNode<"ISD::XOR"       , SDTIntBinOp,
376                         [SDNPCommutative, SDNPAssociative]>;
377 def addc       : SDNode<"ISD::ADDC"      , SDTIntBinOp,
378                         [SDNPCommutative, SDNPOutGlue]>;
379 def adde       : SDNode<"ISD::ADDE"      , SDTIntBinOp,
380                         [SDNPCommutative, SDNPOutGlue, SDNPInGlue]>;
381 def subc       : SDNode<"ISD::SUBC"      , SDTIntBinOp,
382                         [SDNPOutGlue]>;
383 def sube       : SDNode<"ISD::SUBE"      , SDTIntBinOp,
384                         [SDNPOutGlue, SDNPInGlue]>;
385 def smin       : SDNode<"ISD::SMIN"      , SDTIntBinOp,
386                                   [SDNPCommutative, SDNPAssociative]>;
387 def smax       : SDNode<"ISD::SMAX"      , SDTIntBinOp,
388                                   [SDNPCommutative, SDNPAssociative]>;
389 def umin       : SDNode<"ISD::UMIN"      , SDTIntBinOp,
390                                   [SDNPCommutative, SDNPAssociative]>;
391 def umax       : SDNode<"ISD::UMAX"      , SDTIntBinOp,
392                                   [SDNPCommutative, SDNPAssociative]>;
393
394 def saddsat    : SDNode<"ISD::SADDSAT"   , SDTIntBinOp, [SDNPCommutative]>;
395 def uaddsat    : SDNode<"ISD::UADDSAT"   , SDTIntBinOp, [SDNPCommutative]>;
396 def ssubsat    : SDNode<"ISD::SSUBSAT"   , SDTIntBinOp>;
397 def usubsat    : SDNode<"ISD::USUBSAT"   , SDTIntBinOp>;
398
399 def smulfix    : SDNode<"ISD::SMULFIX"   , SDTIntScaledBinOp, [SDNPCommutative]>;
400 def smulfixsat : SDNode<"ISD::SMULFIXSAT", SDTIntScaledBinOp, [SDNPCommutative]>;
401 def umulfix    : SDNode<"ISD::UMULFIX"   , SDTIntScaledBinOp, [SDNPCommutative]>;
402 def umulfixsat : SDNode<"ISD::UMULFIXSAT", SDTIntScaledBinOp, [SDNPCommutative]>;
403 def sdivfix    : SDNode<"ISD::SDIVFIX"   , SDTIntScaledBinOp>;
404 def udivfix    : SDNode<"ISD::UDIVFIX"   , SDTIntScaledBinOp>;
405
406 def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>;
407 def sext_invec : SDNode<"ISD::SIGN_EXTEND_VECTOR_INREG", SDTExtInvec>;
408 def zext_invec : SDNode<"ISD::ZERO_EXTEND_VECTOR_INREG", SDTExtInvec>;
409
410 def abs        : SDNode<"ISD::ABS"        , SDTIntUnaryOp>;
411 def bitreverse : SDNode<"ISD::BITREVERSE" , SDTIntUnaryOp>;
412 def bswap      : SDNode<"ISD::BSWAP"      , SDTIntUnaryOp>;
413 def ctlz       : SDNode<"ISD::CTLZ"       , SDTIntBitCountUnaryOp>;
414 def cttz       : SDNode<"ISD::CTTZ"       , SDTIntBitCountUnaryOp>;
415 def ctpop      : SDNode<"ISD::CTPOP"      , SDTIntBitCountUnaryOp>;
416 def ctlz_zero_undef : SDNode<"ISD::CTLZ_ZERO_UNDEF", SDTIntBitCountUnaryOp>;
417 def cttz_zero_undef : SDNode<"ISD::CTTZ_ZERO_UNDEF", SDTIntBitCountUnaryOp>;
418 def sext       : SDNode<"ISD::SIGN_EXTEND", SDTIntExtendOp>;
419 def zext       : SDNode<"ISD::ZERO_EXTEND", SDTIntExtendOp>;
420 def anyext     : SDNode<"ISD::ANY_EXTEND" , SDTIntExtendOp>;
421 def trunc      : SDNode<"ISD::TRUNCATE"   , SDTIntTruncOp>;
422 def bitconvert : SDNode<"ISD::BITCAST"    , SDTUnaryOp>;
423 def addrspacecast : SDNode<"ISD::ADDRSPACECAST", SDTUnaryOp>;
424 def extractelt : SDNode<"ISD::EXTRACT_VECTOR_ELT", SDTVecExtract>;
425 def insertelt  : SDNode<"ISD::INSERT_VECTOR_ELT", SDTVecInsert>;
426
427 def vecreduce_add  : SDNode<"ISD::VECREDUCE_ADD", SDTVecReduce>;
428 def vecreduce_smax  : SDNode<"ISD::VECREDUCE_SMAX", SDTVecReduce>;
429 def vecreduce_umax  : SDNode<"ISD::VECREDUCE_UMAX", SDTVecReduce>;
430 def vecreduce_smin  : SDNode<"ISD::VECREDUCE_SMIN", SDTVecReduce>;
431 def vecreduce_umin  : SDNode<"ISD::VECREDUCE_UMIN", SDTVecReduce>;
432
433 def fadd       : SDNode<"ISD::FADD"       , SDTFPBinOp, [SDNPCommutative]>;
434 def fsub       : SDNode<"ISD::FSUB"       , SDTFPBinOp>;
435 def fmul       : SDNode<"ISD::FMUL"       , SDTFPBinOp, [SDNPCommutative]>;
436 def fdiv       : SDNode<"ISD::FDIV"       , SDTFPBinOp>;
437 def frem       : SDNode<"ISD::FREM"       , SDTFPBinOp>;
438 def fma        : SDNode<"ISD::FMA"        , SDTFPTernaryOp>;
439 def fmad       : SDNode<"ISD::FMAD"       , SDTFPTernaryOp>;
440 def fabs       : SDNode<"ISD::FABS"       , SDTFPUnaryOp>;
441 def fminnum    : SDNode<"ISD::FMINNUM"    , SDTFPBinOp,
442                                   [SDNPCommutative, SDNPAssociative]>;
443 def fmaxnum    : SDNode<"ISD::FMAXNUM"    , SDTFPBinOp,
444                                   [SDNPCommutative, SDNPAssociative]>;
445 def fminnum_ieee : SDNode<"ISD::FMINNUM_IEEE", SDTFPBinOp,
446                           [SDNPCommutative]>;
447 def fmaxnum_ieee  : SDNode<"ISD::FMAXNUM_IEEE", SDTFPBinOp,
448                            [SDNPCommutative]>;
449 def fminimum   : SDNode<"ISD::FMINIMUM"   , SDTFPBinOp,
450                         [SDNPCommutative, SDNPAssociative]>;
451 def fmaximum   : SDNode<"ISD::FMAXIMUM"   , SDTFPBinOp,
452                         [SDNPCommutative, SDNPAssociative]>;
453 def fgetsign   : SDNode<"ISD::FGETSIGN"   , SDTFPToIntOp>;
454 def fcanonicalize : SDNode<"ISD::FCANONICALIZE", SDTFPUnaryOp>;
455 def fneg       : SDNode<"ISD::FNEG"       , SDTFPUnaryOp>;
456 def fsqrt      : SDNode<"ISD::FSQRT"      , SDTFPUnaryOp>;
457 def fsin       : SDNode<"ISD::FSIN"       , SDTFPUnaryOp>;
458 def fcos       : SDNode<"ISD::FCOS"       , SDTFPUnaryOp>;
459 def fexp2      : SDNode<"ISD::FEXP2"      , SDTFPUnaryOp>;
460 def fpow       : SDNode<"ISD::FPOW"       , SDTFPBinOp>;
461 def flog2      : SDNode<"ISD::FLOG2"      , SDTFPUnaryOp>;
462 def frint      : SDNode<"ISD::FRINT"      , SDTFPUnaryOp>;
463 def ftrunc     : SDNode<"ISD::FTRUNC"     , SDTFPUnaryOp>;
464 def fceil      : SDNode<"ISD::FCEIL"      , SDTFPUnaryOp>;
465 def ffloor     : SDNode<"ISD::FFLOOR"     , SDTFPUnaryOp>;
466 def fnearbyint : SDNode<"ISD::FNEARBYINT" , SDTFPUnaryOp>;
467 def fround     : SDNode<"ISD::FROUND"     , SDTFPUnaryOp>;
468
469 def lround     : SDNode<"ISD::LROUND"     , SDTFPToIntOp>;
470 def llround    : SDNode<"ISD::LLROUND"    , SDTFPToIntOp>;
471 def lrint      : SDNode<"ISD::LRINT"      , SDTFPToIntOp>;
472 def llrint     : SDNode<"ISD::LLRINT"     , SDTFPToIntOp>;
473
474 def fpround    : SDNode<"ISD::FP_ROUND"   , SDTFPRoundOp>;
475 def fpextend   : SDNode<"ISD::FP_EXTEND"  , SDTFPExtendOp>;
476 def fcopysign  : SDNode<"ISD::FCOPYSIGN"  , SDTFPSignOp>;
477
478 def sint_to_fp : SDNode<"ISD::SINT_TO_FP" , SDTIntToFPOp>;
479 def uint_to_fp : SDNode<"ISD::UINT_TO_FP" , SDTIntToFPOp>;
480 def fp_to_sint : SDNode<"ISD::FP_TO_SINT" , SDTFPToIntOp>;
481 def fp_to_uint : SDNode<"ISD::FP_TO_UINT" , SDTFPToIntOp>;
482 def f16_to_fp  : SDNode<"ISD::FP16_TO_FP" , SDTIntToFPOp>;
483 def fp_to_f16  : SDNode<"ISD::FP_TO_FP16" , SDTFPToIntOp>;
484
485 def strict_fadd       : SDNode<"ISD::STRICT_FADD",
486                                SDTFPBinOp, [SDNPHasChain, SDNPCommutative]>;
487 def strict_fsub       : SDNode<"ISD::STRICT_FSUB",
488                                SDTFPBinOp, [SDNPHasChain]>;
489 def strict_fmul       : SDNode<"ISD::STRICT_FMUL",
490                                SDTFPBinOp, [SDNPHasChain, SDNPCommutative]>;
491 def strict_fdiv       : SDNode<"ISD::STRICT_FDIV",
492                                SDTFPBinOp, [SDNPHasChain]>;
493 def strict_frem       : SDNode<"ISD::STRICT_FREM",
494                                SDTFPBinOp, [SDNPHasChain]>;
495 def strict_fma        : SDNode<"ISD::STRICT_FMA",
496                                SDTFPTernaryOp, [SDNPHasChain]>;
497 def strict_fsqrt      : SDNode<"ISD::STRICT_FSQRT",
498                                SDTFPUnaryOp, [SDNPHasChain]>;
499 def strict_fsin       : SDNode<"ISD::STRICT_FSIN",
500                                SDTFPUnaryOp, [SDNPHasChain]>;
501 def strict_fcos       : SDNode<"ISD::STRICT_FCOS",
502                                SDTFPUnaryOp, [SDNPHasChain]>;
503 def strict_fexp2      : SDNode<"ISD::STRICT_FEXP2",
504                                SDTFPUnaryOp, [SDNPHasChain]>;
505 def strict_fpow       : SDNode<"ISD::STRICT_FPOW",
506                                SDTFPBinOp, [SDNPHasChain]>;
507 def strict_flog2      : SDNode<"ISD::STRICT_FLOG2",
508                                SDTFPUnaryOp, [SDNPHasChain]>;
509 def strict_frint      : SDNode<"ISD::STRICT_FRINT",
510                                SDTFPUnaryOp, [SDNPHasChain]>;
511 def strict_lrint      : SDNode<"ISD::STRICT_LRINT",
512                                SDTFPToIntOp, [SDNPHasChain]>;
513 def strict_llrint     : SDNode<"ISD::STRICT_LLRINT",
514                                SDTFPToIntOp, [SDNPHasChain]>;
515 def strict_fnearbyint : SDNode<"ISD::STRICT_FNEARBYINT",
516                                SDTFPUnaryOp, [SDNPHasChain]>;
517 def strict_fceil      : SDNode<"ISD::STRICT_FCEIL",
518                                SDTFPUnaryOp, [SDNPHasChain]>;
519 def strict_ffloor     : SDNode<"ISD::STRICT_FFLOOR",
520                                SDTFPUnaryOp, [SDNPHasChain]>;
521 def strict_lround     : SDNode<"ISD::STRICT_LROUND",
522                                SDTFPToIntOp, [SDNPHasChain]>;
523 def strict_llround    : SDNode<"ISD::STRICT_LLROUND",
524                                SDTFPToIntOp, [SDNPHasChain]>;
525 def strict_fround     : SDNode<"ISD::STRICT_FROUND",
526                                SDTFPUnaryOp, [SDNPHasChain]>;
527 def strict_ftrunc     : SDNode<"ISD::STRICT_FTRUNC",
528                                SDTFPUnaryOp, [SDNPHasChain]>;
529 def strict_fminnum    : SDNode<"ISD::STRICT_FMINNUM",
530                                SDTFPBinOp, [SDNPHasChain,
531                                             SDNPCommutative, SDNPAssociative]>;
532 def strict_fmaxnum    : SDNode<"ISD::STRICT_FMAXNUM",
533                                SDTFPBinOp, [SDNPHasChain,
534                                             SDNPCommutative, SDNPAssociative]>;
535 def strict_fminimum   : SDNode<"ISD::STRICT_FMINIMUM",
536                                SDTFPBinOp, [SDNPHasChain,
537                                             SDNPCommutative, SDNPAssociative]>;
538 def strict_fmaximum   : SDNode<"ISD::STRICT_FMAXIMUM",
539                                SDTFPBinOp, [SDNPHasChain,
540                                             SDNPCommutative, SDNPAssociative]>;
541 def strict_fpround    : SDNode<"ISD::STRICT_FP_ROUND",
542                                SDTFPRoundOp, [SDNPHasChain]>;
543 def strict_fpextend   : SDNode<"ISD::STRICT_FP_EXTEND",
544                                SDTFPExtendOp, [SDNPHasChain]>;
545 def strict_fp_to_sint : SDNode<"ISD::STRICT_FP_TO_SINT",
546                                SDTFPToIntOp, [SDNPHasChain]>;
547 def strict_fp_to_uint : SDNode<"ISD::STRICT_FP_TO_UINT",
548                                SDTFPToIntOp, [SDNPHasChain]>;
549 def strict_sint_to_fp : SDNode<"ISD::STRICT_SINT_TO_FP",
550                                SDTIntToFPOp, [SDNPHasChain]>;
551 def strict_uint_to_fp : SDNode<"ISD::STRICT_UINT_TO_FP",
552                                SDTIntToFPOp, [SDNPHasChain]>;
553
554 def setcc      : SDNode<"ISD::SETCC"      , SDTSetCC>;
555 def select     : SDNode<"ISD::SELECT"     , SDTSelect>;
556 def vselect    : SDNode<"ISD::VSELECT"    , SDTVSelect>;
557 def selectcc   : SDNode<"ISD::SELECT_CC"  , SDTSelectCC>;
558
559 def brcc       : SDNode<"ISD::BR_CC"      , SDTBrCC,   [SDNPHasChain]>;
560 def brcond     : SDNode<"ISD::BRCOND"     , SDTBrcond, [SDNPHasChain]>;
561 def brind      : SDNode<"ISD::BRIND"      , SDTBrind,  [SDNPHasChain]>;
562 def br         : SDNode<"ISD::BR"         , SDTBr,     [SDNPHasChain]>;
563 def catchret   : SDNode<"ISD::CATCHRET"   , SDTCatchret,
564                         [SDNPHasChain, SDNPSideEffect]>;
565 def cleanupret : SDNode<"ISD::CLEANUPRET" , SDTNone,   [SDNPHasChain]>;
566 def catchpad   : SDNode<"ISD::CATCHPAD"   , SDTNone,
567                         [SDNPHasChain, SDNPSideEffect]>;
568
569 def trap       : SDNode<"ISD::TRAP"       , SDTNone,
570                         [SDNPHasChain, SDNPSideEffect]>;
571 def debugtrap  : SDNode<"ISD::DEBUGTRAP"  , SDTNone,
572                         [SDNPHasChain, SDNPSideEffect]>;
573
574 def prefetch   : SDNode<"ISD::PREFETCH"   , SDTPrefetch,
575                         [SDNPHasChain, SDNPMayLoad, SDNPMayStore,
576                          SDNPMemOperand]>;
577
578 def readcyclecounter : SDNode<"ISD::READCYCLECOUNTER", SDTIntLeaf,
579                      [SDNPHasChain, SDNPSideEffect]>;
580
581 def atomic_fence : SDNode<"ISD::ATOMIC_FENCE" , SDTAtomicFence,
582                           [SDNPHasChain, SDNPSideEffect]>;
583
584 def atomic_cmp_swap : SDNode<"ISD::ATOMIC_CMP_SWAP" , SDTAtomic3,
585                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
586 def atomic_load_add : SDNode<"ISD::ATOMIC_LOAD_ADD" , SDTAtomic2,
587                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
588 def atomic_swap     : SDNode<"ISD::ATOMIC_SWAP", SDTAtomic2,
589                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
590 def atomic_load_sub : SDNode<"ISD::ATOMIC_LOAD_SUB" , SDTAtomic2,
591                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
592 def atomic_load_and : SDNode<"ISD::ATOMIC_LOAD_AND" , SDTAtomic2,
593                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
594 def atomic_load_clr : SDNode<"ISD::ATOMIC_LOAD_CLR" , SDTAtomic2,
595                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
596 def atomic_load_or  : SDNode<"ISD::ATOMIC_LOAD_OR" , SDTAtomic2,
597                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
598 def atomic_load_xor : SDNode<"ISD::ATOMIC_LOAD_XOR" , SDTAtomic2,
599                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
600 def atomic_load_nand: SDNode<"ISD::ATOMIC_LOAD_NAND", SDTAtomic2,
601                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
602 def atomic_load_min : SDNode<"ISD::ATOMIC_LOAD_MIN", SDTAtomic2,
603                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
604 def atomic_load_max : SDNode<"ISD::ATOMIC_LOAD_MAX", SDTAtomic2,
605                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
606 def atomic_load_umin : SDNode<"ISD::ATOMIC_LOAD_UMIN", SDTAtomic2,
607                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
608 def atomic_load_umax : SDNode<"ISD::ATOMIC_LOAD_UMAX", SDTAtomic2,
609                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
610 def atomic_load_fadd : SDNode<"ISD::ATOMIC_LOAD_FADD" , SDTFPAtomic2,
611                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
612 def atomic_load_fsub : SDNode<"ISD::ATOMIC_LOAD_FSUB" , SDTFPAtomic2,
613                     [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
614
615 def atomic_load      : SDNode<"ISD::ATOMIC_LOAD", SDTAtomicLoad,
616                     [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
617 def atomic_store     : SDNode<"ISD::ATOMIC_STORE", SDTAtomicStore,
618                     [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
619
620 def masked_st    : SDNode<"ISD::MSTORE",  SDTMaskedStore,
621                        [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
622 def masked_ld    : SDNode<"ISD::MLOAD",  SDTMaskedLoad,
623                        [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
624
625 // Do not use ld, st directly. Use load, extload, sextload, zextload, store,
626 // and truncst (see below).
627 def ld         : SDNode<"ISD::LOAD"       , SDTLoad,
628                         [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
629 def st         : SDNode<"ISD::STORE"      , SDTStore,
630                         [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
631 def ist        : SDNode<"ISD::STORE"      , SDTIStore,
632                         [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
633
634 def vector_shuffle : SDNode<"ISD::VECTOR_SHUFFLE", SDTVecShuffle, []>;
635 def build_vector : SDNode<"ISD::BUILD_VECTOR", SDTypeProfile<1, -1, []>, []>;
636 def scalar_to_vector : SDNode<"ISD::SCALAR_TO_VECTOR", SDTypeProfile<1, 1, []>,
637                               []>;
638
639 // vector_extract/vector_insert are deprecated. extractelt/insertelt
640 // are preferred.
641 def vector_extract : SDNode<"ISD::EXTRACT_VECTOR_ELT",
642     SDTypeProfile<1, 2, [SDTCisPtrTy<2>]>, []>;
643 def vector_insert : SDNode<"ISD::INSERT_VECTOR_ELT",
644     SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>, SDTCisPtrTy<3>]>, []>;
645 def concat_vectors : SDNode<"ISD::CONCAT_VECTORS",
646     SDTypeProfile<1, 2, [SDTCisSubVecOfVec<1, 0>, SDTCisSameAs<1, 2>]>,[]>;
647
648 // This operator does not do subvector type checking.  The ARM
649 // backend, at least, needs it.
650 def vector_extract_subvec : SDNode<"ISD::EXTRACT_SUBVECTOR",
651     SDTypeProfile<1, 2, [SDTCisInt<2>, SDTCisVec<1>, SDTCisVec<0>]>,
652     []>;
653
654 // This operator does subvector type checking.
655 def extract_subvector : SDNode<"ISD::EXTRACT_SUBVECTOR", SDTSubVecExtract, []>;
656 def insert_subvector : SDNode<"ISD::INSERT_SUBVECTOR", SDTSubVecInsert, []>;
657
658 // Nodes for intrinsics, you should use the intrinsic itself and let tblgen use
659 // these internally.  Don't reference these directly.
660 def intrinsic_void : SDNode<"ISD::INTRINSIC_VOID",
661                             SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>,
662                             [SDNPHasChain]>;
663 def intrinsic_w_chain : SDNode<"ISD::INTRINSIC_W_CHAIN",
664                                SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>,
665                                [SDNPHasChain]>;
666 def intrinsic_wo_chain : SDNode<"ISD::INTRINSIC_WO_CHAIN",
667                                 SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>, []>;
668
669 def SDT_assertext : SDTypeProfile<1, 1,
670   [SDTCisInt<0>, SDTCisInt<1>, SDTCisSameAs<1, 0>]>;
671 def assertsext : SDNode<"ISD::AssertSext", SDT_assertext>;
672 def assertzext : SDNode<"ISD::AssertZext", SDT_assertext>;
673
674
675 //===----------------------------------------------------------------------===//
676 // Selection DAG Condition Codes
677
678 class CondCode<string fcmpName = "", string icmpName = ""> {
679   string ICmpPredicate = icmpName;
680   string FCmpPredicate = fcmpName;
681 }
682
683 // ISD::CondCode enums, and mapping to CmpInst::Predicate names
684 def SETOEQ : CondCode<"FCMP_OEQ">;
685 def SETOGT : CondCode<"FCMP_OGT">;
686 def SETOGE : CondCode<"FCMP_OGE">;
687 def SETOLT : CondCode<"FCMP_OLT">;
688 def SETOLE : CondCode<"FCMP_OLE">;
689 def SETONE : CondCode<"FCMP_ONE">;
690 def SETO   : CondCode<"FCMP_ORD">;
691 def SETUO  : CondCode<"FCMP_UNO">;
692 def SETUEQ : CondCode<"FCMP_UEQ">;
693 def SETUGT : CondCode<"FCMP_UGT", "ICMP_UGT">;
694 def SETUGE : CondCode<"FCMP_UGE", "ICMP_UGE">;
695 def SETULT : CondCode<"FCMP_ULT", "ICMP_ULT">;
696 def SETULE : CondCode<"FCMP_ULE", "ICMP_ULE">;
697 def SETUNE : CondCode<"FCMP_UNE">;
698 def SETEQ : CondCode<"", "ICMP_EQ">;
699 def SETGT : CondCode<"", "ICMP_SGT">;
700 def SETGE : CondCode<"", "ICMP_SGE">;
701 def SETLT : CondCode<"", "ICMP_SLT">;
702 def SETLE : CondCode<"", "ICMP_SLE">;
703 def SETNE : CondCode<"", "ICMP_NE">;
704
705 //===----------------------------------------------------------------------===//
706 // Selection DAG Node Transformation Functions.
707 //
708 // This mechanism allows targets to manipulate nodes in the output DAG once a
709 // match has been formed.  This is typically used to manipulate immediate
710 // values.
711 //
712 class SDNodeXForm<SDNode opc, code xformFunction> {
713   SDNode Opcode = opc;
714   code XFormFunction = xformFunction;
715 }
716
717 def NOOP_SDNodeXForm : SDNodeXForm<imm, [{}]>;
718
719 //===----------------------------------------------------------------------===//
720 // PatPred Subclasses.
721 //
722 // These allow specifying different sorts of predicates that control whether a
723 // node is matched.
724 //
725 class PatPred;
726
727 class CodePatPred<code predicate> : PatPred {
728   code PredicateCode = predicate;
729 }
730
731
732 //===----------------------------------------------------------------------===//
733 // Selection DAG Pattern Fragments.
734 //
735 // Pattern fragments are reusable chunks of dags that match specific things.
736 // They can take arguments and have C++ predicates that control whether they
737 // match.  They are intended to make the patterns for common instructions more
738 // compact and readable.
739 //
740
741 /// PatFrags - Represents a set of pattern fragments.  Each single fragment
742 /// can match something on the DAG, from a single node to multiple nested other
743 /// fragments.   The whole set of fragments matches if any of the single
744 /// fragemnts match.  This allows e.g. matching and "add with overflow" and
745 /// a regular "add" with the same fragment set.
746 ///
747 class PatFrags<dag ops, list<dag> frags, code pred = [{}],
748                SDNodeXForm xform = NOOP_SDNodeXForm> : SDPatternOperator {
749   dag Operands = ops;
750   list<dag> Fragments = frags;
751   code PredicateCode = pred;
752   code GISelPredicateCode = [{}];
753   code ImmediateCode = [{}];
754   SDNodeXForm OperandTransform = xform;
755
756   // When this is set, the PredicateCode may refer to a constant Operands
757   // vector which contains the captured nodes of the DAG, in the order listed
758   // by the Operands field above.
759   //
760   // This is useful when Fragments involves associative / commutative
761   // operators: a single piece of code can easily refer to all operands even
762   // when re-associated / commuted variants of the fragment are matched.
763   bit PredicateCodeUsesOperands = 0;
764
765   // Define a few pre-packaged predicates. This helps GlobalISel import
766   // existing rules from SelectionDAG for many common cases.
767   // They will be tested prior to the code in pred and must not be used in
768   // ImmLeaf and its subclasses.
769
770   // Is the desired pre-packaged predicate for a load?
771   bit IsLoad = ?;
772   // Is the desired pre-packaged predicate for a store?
773   bit IsStore = ?;
774   // Is the desired pre-packaged predicate for an atomic?
775   bit IsAtomic = ?;
776
777   // cast<LoadSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
778   // cast<StoreSDNode>(N)->getAddressingMode() == ISD::UNINDEXED;
779   bit IsUnindexed = ?;
780
781   // cast<LoadSDNode>(N)->getExtensionType() != ISD::NON_EXTLOAD
782   bit IsNonExtLoad = ?;
783   // cast<LoadSDNode>(N)->getExtensionType() == ISD::EXTLOAD;
784   bit IsAnyExtLoad = ?;
785   // cast<LoadSDNode>(N)->getExtensionType() == ISD::SEXTLOAD;
786   bit IsSignExtLoad = ?;
787   // cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
788   bit IsZeroExtLoad = ?;
789   // !cast<StoreSDNode>(N)->isTruncatingStore();
790   // cast<StoreSDNode>(N)->isTruncatingStore();
791   bit IsTruncStore = ?;
792
793   // cast<MemSDNode>(N)->getAddressSpace() ==
794   // If this empty, accept any address space.
795   list<int> AddressSpaces = ?;
796
797   // cast<MemSDNode>(N)->getAlignment() >=
798   // If this is empty, accept any alignment.
799   int MinAlignment = ?;
800
801   // cast<AtomicSDNode>(N)->getOrdering() == AtomicOrdering::Monotonic
802   bit IsAtomicOrderingMonotonic = ?;
803   // cast<AtomicSDNode>(N)->getOrdering() == AtomicOrdering::Acquire
804   bit IsAtomicOrderingAcquire = ?;
805   // cast<AtomicSDNode>(N)->getOrdering() == AtomicOrdering::Release
806   bit IsAtomicOrderingRelease = ?;
807   // cast<AtomicSDNode>(N)->getOrdering() == AtomicOrdering::AcquireRelease
808   bit IsAtomicOrderingAcquireRelease = ?;
809   // cast<AtomicSDNode>(N)->getOrdering() == AtomicOrdering::SequentiallyConsistent
810   bit IsAtomicOrderingSequentiallyConsistent = ?;
811
812   // isAcquireOrStronger(cast<AtomicSDNode>(N)->getOrdering())
813   // !isAcquireOrStronger(cast<AtomicSDNode>(N)->getOrdering())
814   bit IsAtomicOrderingAcquireOrStronger = ?;
815
816   // isReleaseOrStronger(cast<AtomicSDNode>(N)->getOrdering())
817   // !isReleaseOrStronger(cast<AtomicSDNode>(N)->getOrdering())
818   bit IsAtomicOrderingReleaseOrStronger = ?;
819
820   // cast<LoadSDNode>(N)->getMemoryVT() == MVT::<VT>;
821   // cast<StoreSDNode>(N)->getMemoryVT() == MVT::<VT>;
822   ValueType MemoryVT = ?;
823   // cast<LoadSDNode>(N)->getMemoryVT().getScalarType() == MVT::<VT>;
824   // cast<StoreSDNode>(N)->getMemoryVT().getScalarType() == MVT::<VT>;
825   ValueType ScalarMemoryVT = ?;
826 }
827
828 // PatFrag - A version of PatFrags matching only a single fragment.
829 class PatFrag<dag ops, dag frag, code pred = [{}],
830               SDNodeXForm xform = NOOP_SDNodeXForm>
831   : PatFrags<ops, [frag], pred, xform>;
832
833 // OutPatFrag is a pattern fragment that is used as part of an output pattern
834 // (not an input pattern). These do not have predicates or transforms, but are
835 // used to avoid repeated subexpressions in output patterns.
836 class OutPatFrag<dag ops, dag frag>
837  : PatFrag<ops, frag, [{}], NOOP_SDNodeXForm>;
838
839 // PatLeaf's are pattern fragments that have no operands.  This is just a helper
840 // to define immediates and other common things concisely.
841 class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm>
842  : PatFrag<(ops), frag, pred, xform>;
843
844
845 // ImmLeaf is a pattern fragment with a constraint on the immediate.  The
846 // constraint is a function that is run on the immediate (always with the value
847 // sign extended out to an int64_t) as Imm.  For example:
848 //
849 //  def immSExt8 : ImmLeaf<i16, [{ return (char)Imm == Imm; }]>;
850 //
851 // this is a more convenient form to match 'imm' nodes in than PatLeaf and also
852 // is preferred over using PatLeaf because it allows the code generator to
853 // reason more about the constraint.
854 //
855 // If FastIsel should ignore all instructions that have an operand of this type,
856 // the FastIselShouldIgnore flag can be set.  This is an optimization to reduce
857 // the code size of the generated fast instruction selector.
858 class ImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm,
859               SDNode ImmNode = imm>
860   : PatFrag<(ops), (vt ImmNode), [{}], xform> {
861   let ImmediateCode = pred;
862   bit FastIselShouldIgnore = 0;
863
864   // Is the data type of the immediate an APInt?
865   bit IsAPInt = 0;
866
867   // Is the data type of the immediate an APFloat?
868   bit IsAPFloat = 0;
869 }
870
871 // Convenience wrapper for ImmLeaf to use timm/TargetConstant instead
872 // of imm/Constant.
873 class TImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm,
874   SDNode ImmNode = timm> : ImmLeaf<vt, pred, xform, ImmNode>;
875
876 // An ImmLeaf except that Imm is an APInt. This is useful when you need to
877 // zero-extend the immediate instead of sign-extend it.
878 //
879 // Note that FastISel does not currently understand IntImmLeaf and will not
880 // generate code for rules that make use of it. As such, it does not make sense
881 // to replace ImmLeaf with IntImmLeaf. However, replacing PatLeaf with an
882 // IntImmLeaf will allow GlobalISel to import the rule.
883 class IntImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm>
884     : ImmLeaf<vt, pred, xform> {
885   let IsAPInt = 1;
886   let FastIselShouldIgnore = 1;
887 }
888
889 // An ImmLeaf except that Imm is an APFloat.
890 //
891 // Note that FastISel does not currently understand FPImmLeaf and will not
892 // generate code for rules that make use of it.
893 class FPImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm>
894   : ImmLeaf<vt, pred, xform, fpimm> {
895   let IsAPFloat = 1;
896   let FastIselShouldIgnore = 1;
897 }
898
899 // Leaf fragments.
900
901 def vtInt      : PatLeaf<(vt),  [{ return N->getVT().isInteger(); }]>;
902 def vtFP       : PatLeaf<(vt),  [{ return N->getVT().isFloatingPoint(); }]>;
903
904 // Use ISD::isBuildVectorAllOnes or ISD::isBuildVectorAllZeros to look for
905 // the corresponding build_vector. Will look through bitcasts except when used
906 // as a pattern root.
907 def immAllOnesV; // ISD::isBuildVectorAllOnes
908 def immAllZerosV; // ISD::isBuildVectorAllZeros
909
910 // Other helper fragments.
911 def not  : PatFrag<(ops node:$in), (xor node:$in, -1)>;
912 def vnot : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV)>;
913 def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
914
915 // null_frag - The null pattern operator is used in multiclass instantiations
916 // which accept an SDPatternOperator for use in matching patterns for internal
917 // definitions. When expanding a pattern, if the null fragment is referenced
918 // in the expansion, the pattern is discarded and it is as-if '[]' had been
919 // specified. This allows multiclasses to have the isel patterns be optional.
920 def null_frag : SDPatternOperator;
921
922 // load fragments.
923 def unindexedload : PatFrag<(ops node:$ptr), (ld node:$ptr)> {
924   let IsLoad = 1;
925   let IsUnindexed = 1;
926 }
927 def load : PatFrag<(ops node:$ptr), (unindexedload node:$ptr)> {
928   let IsLoad = 1;
929   let IsNonExtLoad = 1;
930 }
931
932 // extending load fragments.
933 def extload   : PatFrag<(ops node:$ptr), (unindexedload node:$ptr)> {
934   let IsLoad = 1;
935   let IsAnyExtLoad = 1;
936 }
937 def sextload  : PatFrag<(ops node:$ptr), (unindexedload node:$ptr)> {
938   let IsLoad = 1;
939   let IsSignExtLoad = 1;
940 }
941 def zextload  : PatFrag<(ops node:$ptr), (unindexedload node:$ptr)> {
942   let IsLoad = 1;
943   let IsZeroExtLoad = 1;
944 }
945
946 def extloadi1  : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
947   let IsLoad = 1;
948   let MemoryVT = i1;
949 }
950 def extloadi8  : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
951   let IsLoad = 1;
952   let MemoryVT = i8;
953 }
954 def extloadi16 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
955   let IsLoad = 1;
956   let MemoryVT = i16;
957 }
958 def extloadi32 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
959   let IsLoad = 1;
960   let MemoryVT = i32;
961 }
962 def extloadf32 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
963   let IsLoad = 1;
964   let MemoryVT = f32;
965 }
966 def extloadf64 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
967   let IsLoad = 1;
968   let MemoryVT = f64;
969 }
970
971 def sextloadi1  : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
972   let IsLoad = 1;
973   let MemoryVT = i1;
974 }
975 def sextloadi8  : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
976   let IsLoad = 1;
977   let MemoryVT = i8;
978 }
979 def sextloadi16 : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
980   let IsLoad = 1;
981   let MemoryVT = i16;
982 }
983 def sextloadi32 : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
984   let IsLoad = 1;
985   let MemoryVT = i32;
986 }
987
988 def zextloadi1  : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
989   let IsLoad = 1;
990   let MemoryVT = i1;
991 }
992 def zextloadi8  : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
993   let IsLoad = 1;
994   let MemoryVT = i8;
995 }
996 def zextloadi16 : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
997   let IsLoad = 1;
998   let MemoryVT = i16;
999 }
1000 def zextloadi32 : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
1001   let IsLoad = 1;
1002   let MemoryVT = i32;
1003 }
1004
1005 def extloadvi1  : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1006   let IsLoad = 1;
1007   let ScalarMemoryVT = i1;
1008 }
1009 def extloadvi8  : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1010   let IsLoad = 1;
1011   let ScalarMemoryVT = i8;
1012 }
1013 def extloadvi16 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1014   let IsLoad = 1;
1015   let ScalarMemoryVT = i16;
1016 }
1017 def extloadvi32 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1018   let IsLoad = 1;
1019   let ScalarMemoryVT = i32;
1020 }
1021 def extloadvf32 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1022   let IsLoad = 1;
1023   let ScalarMemoryVT = f32;
1024 }
1025 def extloadvf64 : PatFrag<(ops node:$ptr), (extload node:$ptr)> {
1026   let IsLoad = 1;
1027   let ScalarMemoryVT = f64;
1028 }
1029
1030 def sextloadvi1  : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
1031   let IsLoad = 1;
1032   let ScalarMemoryVT = i1;
1033 }
1034 def sextloadvi8  : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
1035   let IsLoad = 1;
1036   let ScalarMemoryVT = i8;
1037 }
1038 def sextloadvi16 : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
1039   let IsLoad = 1;
1040   let ScalarMemoryVT = i16;
1041 }
1042 def sextloadvi32 : PatFrag<(ops node:$ptr), (sextload node:$ptr)> {
1043   let IsLoad = 1;
1044   let ScalarMemoryVT = i32;
1045 }
1046
1047 def zextloadvi1  : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
1048   let IsLoad = 1;
1049   let ScalarMemoryVT = i1;
1050 }
1051 def zextloadvi8  : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
1052   let IsLoad = 1;
1053   let ScalarMemoryVT = i8;
1054 }
1055 def zextloadvi16 : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
1056   let IsLoad = 1;
1057   let ScalarMemoryVT = i16;
1058 }
1059 def zextloadvi32 : PatFrag<(ops node:$ptr), (zextload node:$ptr)> {
1060   let IsLoad = 1;
1061   let ScalarMemoryVT = i32;
1062 }
1063
1064 // store fragments.
1065 def unindexedstore : PatFrag<(ops node:$val, node:$ptr),
1066                              (st node:$val, node:$ptr)> {
1067   let IsStore = 1;
1068   let IsUnindexed = 1;
1069 }
1070 def store : PatFrag<(ops node:$val, node:$ptr),
1071                     (unindexedstore node:$val, node:$ptr)> {
1072   let IsStore = 1;
1073   let IsTruncStore = 0;
1074 }
1075
1076 // truncstore fragments.
1077 def truncstore : PatFrag<(ops node:$val, node:$ptr),
1078                          (unindexedstore node:$val, node:$ptr)> {
1079   let IsStore = 1;
1080   let IsTruncStore = 1;
1081 }
1082 def truncstorei8 : PatFrag<(ops node:$val, node:$ptr),
1083                            (truncstore node:$val, node:$ptr)> {
1084   let IsStore = 1;
1085   let MemoryVT = i8;
1086 }
1087 def truncstorei16 : PatFrag<(ops node:$val, node:$ptr),
1088                             (truncstore node:$val, node:$ptr)> {
1089   let IsStore = 1;
1090   let MemoryVT = i16;
1091 }
1092 def truncstorei32 : PatFrag<(ops node:$val, node:$ptr),
1093                             (truncstore node:$val, node:$ptr)> {
1094   let IsStore = 1;
1095   let MemoryVT = i32;
1096 }
1097 def truncstoref32 : PatFrag<(ops node:$val, node:$ptr),
1098                             (truncstore node:$val, node:$ptr)> {
1099   let IsStore = 1;
1100   let MemoryVT = f32;
1101 }
1102 def truncstoref64 : PatFrag<(ops node:$val, node:$ptr),
1103                             (truncstore node:$val, node:$ptr)> {
1104   let IsStore = 1;
1105   let MemoryVT = f64;
1106 }
1107
1108 def truncstorevi8 : PatFrag<(ops node:$val, node:$ptr),
1109                             (truncstore node:$val, node:$ptr)> {
1110   let IsStore = 1;
1111   let ScalarMemoryVT = i8;
1112 }
1113
1114 def truncstorevi16 : PatFrag<(ops node:$val, node:$ptr),
1115                              (truncstore node:$val, node:$ptr)> {
1116   let IsStore = 1;
1117   let ScalarMemoryVT = i16;
1118 }
1119
1120 def truncstorevi32 : PatFrag<(ops node:$val, node:$ptr),
1121                              (truncstore node:$val, node:$ptr)> {
1122   let IsStore = 1;
1123   let ScalarMemoryVT = i32;
1124 }
1125
1126 // indexed store fragments.
1127 def istore : PatFrag<(ops node:$val, node:$base, node:$offset),
1128                      (ist node:$val, node:$base, node:$offset)> {
1129   let IsStore = 1;
1130   let IsTruncStore = 0;
1131 }
1132
1133 def pre_store : PatFrag<(ops node:$val, node:$base, node:$offset),
1134                         (istore node:$val, node:$base, node:$offset), [{
1135   ISD::MemIndexedMode AM = cast<StoreSDNode>(N)->getAddressingMode();
1136   return AM == ISD::PRE_INC || AM == ISD::PRE_DEC;
1137 }]>;
1138
1139 def itruncstore : PatFrag<(ops node:$val, node:$base, node:$offset),
1140                           (ist node:$val, node:$base, node:$offset)> {
1141   let IsStore = 1;
1142   let IsTruncStore = 1;
1143 }
1144 def pre_truncst : PatFrag<(ops node:$val, node:$base, node:$offset),
1145                           (itruncstore node:$val, node:$base, node:$offset), [{
1146   ISD::MemIndexedMode AM = cast<StoreSDNode>(N)->getAddressingMode();
1147   return AM == ISD::PRE_INC || AM == ISD::PRE_DEC;
1148 }]>;
1149 def pre_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
1150                             (pre_truncst node:$val, node:$base, node:$offset)> {
1151   let IsStore = 1;
1152   let MemoryVT = i1;
1153 }
1154 def pre_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
1155                             (pre_truncst node:$val, node:$base, node:$offset)> {
1156   let IsStore = 1;
1157   let MemoryVT = i8;
1158 }
1159 def pre_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
1160                              (pre_truncst node:$val, node:$base, node:$offset)> {
1161   let IsStore = 1;
1162   let MemoryVT = i16;
1163 }
1164 def pre_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
1165                              (pre_truncst node:$val, node:$base, node:$offset)> {
1166   let IsStore = 1;
1167   let MemoryVT = i32;
1168 }
1169 def pre_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
1170                              (pre_truncst node:$val, node:$base, node:$offset)> {
1171   let IsStore = 1;
1172   let MemoryVT = f32;
1173 }
1174 def pre_truncstvi8 : PatFrag<(ops node:$val, node:$base, node:$offset),
1175                              (pre_truncst node:$val, node:$base, node:$offset)> {
1176   let IsStore = 1;
1177   let ScalarMemoryVT = i8;
1178 }
1179 def pre_truncstvi16 : PatFrag<(ops node:$val, node:$base, node:$offset),
1180                               (pre_truncst node:$val, node:$base, node:$offset)> {
1181   let IsStore = 1;
1182   let ScalarMemoryVT = i16;
1183 }
1184
1185 def post_store : PatFrag<(ops node:$val, node:$ptr, node:$offset),
1186                          (istore node:$val, node:$ptr, node:$offset), [{
1187   ISD::MemIndexedMode AM = cast<StoreSDNode>(N)->getAddressingMode();
1188   return AM == ISD::POST_INC || AM == ISD::POST_DEC;
1189 }]>;
1190
1191 def post_truncst : PatFrag<(ops node:$val, node:$base, node:$offset),
1192                            (itruncstore node:$val, node:$base, node:$offset), [{
1193   ISD::MemIndexedMode AM = cast<StoreSDNode>(N)->getAddressingMode();
1194   return AM == ISD::POST_INC || AM == ISD::POST_DEC;
1195 }]>;
1196 def post_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
1197                              (post_truncst node:$val, node:$base, node:$offset)> {
1198   let IsStore = 1;
1199   let MemoryVT = i1;
1200 }
1201 def post_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
1202                              (post_truncst node:$val, node:$base, node:$offset)> {
1203   let IsStore = 1;
1204   let MemoryVT = i8;
1205 }
1206 def post_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
1207                               (post_truncst node:$val, node:$base, node:$offset)> {
1208   let IsStore = 1;
1209   let MemoryVT = i16;
1210 }
1211 def post_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
1212                               (post_truncst node:$val, node:$base, node:$offset)> {
1213   let IsStore = 1;
1214   let MemoryVT = i32;
1215 }
1216 def post_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
1217                               (post_truncst node:$val, node:$base, node:$offset)> {
1218   let IsStore = 1;
1219   let MemoryVT = f32;
1220 }
1221 def post_truncstvi8 : PatFrag<(ops node:$val, node:$base, node:$offset),
1222                               (post_truncst node:$val, node:$base, node:$offset)> {
1223   let IsStore = 1;
1224   let ScalarMemoryVT = i8;
1225 }
1226 def post_truncstvi16 : PatFrag<(ops node:$val, node:$base, node:$offset),
1227                                (post_truncst node:$val, node:$base, node:$offset)> {
1228   let IsStore = 1;
1229   let ScalarMemoryVT = i16;
1230 }
1231
1232 // TODO: Split these into volatile and unordered flavors to enable
1233 // selectively legal optimizations for each.  (See D66309)
1234 def simple_load : PatFrag<(ops node:$ptr),
1235                           (load node:$ptr), [{
1236   return cast<LoadSDNode>(N)->isSimple();
1237 }]>;
1238 def simple_store : PatFrag<(ops node:$val, node:$ptr),
1239                            (store node:$val, node:$ptr), [{
1240   return cast<StoreSDNode>(N)->isSimple();
1241 }]>;
1242
1243 // nontemporal store fragments.
1244 def nontemporalstore : PatFrag<(ops node:$val, node:$ptr),
1245                                (store node:$val, node:$ptr), [{
1246   return cast<StoreSDNode>(N)->isNonTemporal();
1247 }]>;
1248
1249 def alignednontemporalstore : PatFrag<(ops node:$val, node:$ptr),
1250                                       (nontemporalstore node:$val, node:$ptr), [{
1251   StoreSDNode *St = cast<StoreSDNode>(N);
1252   return St->getAlignment() >= St->getMemoryVT().getStoreSize();
1253 }]>;
1254
1255 def unalignednontemporalstore : PatFrag<(ops node:$val, node:$ptr),
1256                                         (nontemporalstore node:$val, node:$ptr), [{
1257   StoreSDNode *St = cast<StoreSDNode>(N);
1258   return St->getAlignment() < St->getMemoryVT().getStoreSize();
1259 }]>;
1260
1261 // nontemporal load fragments.
1262 def nontemporalload : PatFrag<(ops node:$ptr),
1263                                (load node:$ptr), [{
1264   return cast<LoadSDNode>(N)->isNonTemporal();
1265 }]>;
1266
1267 def alignednontemporalload : PatFrag<(ops node:$ptr),
1268                                       (nontemporalload node:$ptr), [{
1269   LoadSDNode *Ld = cast<LoadSDNode>(N);
1270   return Ld->getAlignment() >= Ld->getMemoryVT().getStoreSize();
1271 }]>;
1272
1273 // setcc convenience fragments.
1274 def setoeq : PatFrag<(ops node:$lhs, node:$rhs),
1275                      (setcc node:$lhs, node:$rhs, SETOEQ)>;
1276 def setogt : PatFrag<(ops node:$lhs, node:$rhs),
1277                      (setcc node:$lhs, node:$rhs, SETOGT)>;
1278 def setoge : PatFrag<(ops node:$lhs, node:$rhs),
1279                      (setcc node:$lhs, node:$rhs, SETOGE)>;
1280 def setolt : PatFrag<(ops node:$lhs, node:$rhs),
1281                      (setcc node:$lhs, node:$rhs, SETOLT)>;
1282 def setole : PatFrag<(ops node:$lhs, node:$rhs),
1283                      (setcc node:$lhs, node:$rhs, SETOLE)>;
1284 def setone : PatFrag<(ops node:$lhs, node:$rhs),
1285                      (setcc node:$lhs, node:$rhs, SETONE)>;
1286 def seto   : PatFrag<(ops node:$lhs, node:$rhs),
1287                      (setcc node:$lhs, node:$rhs, SETO)>;
1288 def setuo  : PatFrag<(ops node:$lhs, node:$rhs),
1289                      (setcc node:$lhs, node:$rhs, SETUO)>;
1290 def setueq : PatFrag<(ops node:$lhs, node:$rhs),
1291                      (setcc node:$lhs, node:$rhs, SETUEQ)>;
1292 def setugt : PatFrag<(ops node:$lhs, node:$rhs),
1293                      (setcc node:$lhs, node:$rhs, SETUGT)>;
1294 def setuge : PatFrag<(ops node:$lhs, node:$rhs),
1295                      (setcc node:$lhs, node:$rhs, SETUGE)>;
1296 def setult : PatFrag<(ops node:$lhs, node:$rhs),
1297                      (setcc node:$lhs, node:$rhs, SETULT)>;
1298 def setule : PatFrag<(ops node:$lhs, node:$rhs),
1299                      (setcc node:$lhs, node:$rhs, SETULE)>;
1300 def setune : PatFrag<(ops node:$lhs, node:$rhs),
1301                      (setcc node:$lhs, node:$rhs, SETUNE)>;
1302 def seteq  : PatFrag<(ops node:$lhs, node:$rhs),
1303                      (setcc node:$lhs, node:$rhs, SETEQ)>;
1304 def setgt  : PatFrag<(ops node:$lhs, node:$rhs),
1305                      (setcc node:$lhs, node:$rhs, SETGT)>;
1306 def setge  : PatFrag<(ops node:$lhs, node:$rhs),
1307                      (setcc node:$lhs, node:$rhs, SETGE)>;
1308 def setlt  : PatFrag<(ops node:$lhs, node:$rhs),
1309                      (setcc node:$lhs, node:$rhs, SETLT)>;
1310 def setle  : PatFrag<(ops node:$lhs, node:$rhs),
1311                      (setcc node:$lhs, node:$rhs, SETLE)>;
1312 def setne  : PatFrag<(ops node:$lhs, node:$rhs),
1313                      (setcc node:$lhs, node:$rhs, SETNE)>;
1314
1315 // We don't have strict FP extended loads as single DAG nodes, but we can
1316 // still provide convenience fragments to match those operations.
1317 def strict_extloadf32 : PatFrag<(ops node:$ptr),
1318                                 (strict_fpextend (f32 (load node:$ptr)))>;
1319 def strict_extloadf64 : PatFrag<(ops node:$ptr),
1320                                 (strict_fpextend (f64 (load node:$ptr)))>;
1321
1322 // Convenience fragments to match both strict and non-strict fp operations
1323 def any_fadd       : PatFrags<(ops node:$lhs, node:$rhs),
1324                               [(strict_fadd node:$lhs, node:$rhs),
1325                                (fadd node:$lhs, node:$rhs)]>;
1326 def any_fsub       : PatFrags<(ops node:$lhs, node:$rhs),
1327                               [(strict_fsub node:$lhs, node:$rhs),
1328                                (fsub node:$lhs, node:$rhs)]>;
1329 def any_fmul       : PatFrags<(ops node:$lhs, node:$rhs),
1330                               [(strict_fmul node:$lhs, node:$rhs),
1331                                (fmul node:$lhs, node:$rhs)]>;
1332 def any_fdiv       : PatFrags<(ops node:$lhs, node:$rhs),
1333                               [(strict_fdiv node:$lhs, node:$rhs),
1334                                (fdiv node:$lhs, node:$rhs)]>;
1335 def any_frem       : PatFrags<(ops node:$lhs, node:$rhs),
1336                               [(strict_frem node:$lhs, node:$rhs),
1337                                (frem node:$lhs, node:$rhs)]>;
1338 def any_fma        : PatFrags<(ops node:$src1, node:$src2, node:$src3),
1339                               [(strict_fma node:$src1, node:$src2, node:$src3),
1340                                (fma node:$src1, node:$src2, node:$src3)]>;
1341 def any_fsqrt      : PatFrags<(ops node:$src),
1342                               [(strict_fsqrt node:$src),
1343                                (fsqrt node:$src)]>;
1344 def any_fsin       : PatFrags<(ops node:$src),
1345                               [(strict_fsin node:$src),
1346                                (fsin node:$src)]>;
1347 def any_fcos       : PatFrags<(ops node:$src),
1348                               [(strict_fcos node:$src),
1349                                (fcos node:$src)]>;
1350 def any_fexp2      : PatFrags<(ops node:$src),
1351                               [(strict_fexp2 node:$src),
1352                                (fexp2 node:$src)]>;
1353 def any_fpow       : PatFrags<(ops node:$lhs, node:$rhs),
1354                               [(strict_fpow node:$lhs, node:$rhs),
1355                                (fpow node:$lhs, node:$rhs)]>;
1356 def any_flog2      : PatFrags<(ops node:$src),
1357                               [(strict_flog2 node:$src),
1358                                (flog2 node:$src)]>;
1359 def any_frint      : PatFrags<(ops node:$src),
1360                               [(strict_frint node:$src),
1361                                (frint node:$src)]>;
1362 def any_lrint      : PatFrags<(ops node:$src),
1363                               [(strict_lrint node:$src),
1364                                (lrint node:$src)]>;
1365 def any_llrint     : PatFrags<(ops node:$src),
1366                               [(strict_llrint node:$src),
1367                                (llrint node:$src)]>;
1368 def any_fnearbyint : PatFrags<(ops node:$src),
1369                               [(strict_fnearbyint node:$src),
1370                                (fnearbyint node:$src)]>;
1371 def any_fceil      : PatFrags<(ops node:$src),
1372                               [(strict_fceil node:$src),
1373                                (fceil node:$src)]>;
1374 def any_ffloor     : PatFrags<(ops node:$src),
1375                               [(strict_ffloor node:$src),
1376                                (ffloor node:$src)]>;
1377 def any_lround     : PatFrags<(ops node:$src),
1378                               [(strict_lround node:$src),
1379                                (lround node:$src)]>;
1380 def any_llround    : PatFrags<(ops node:$src),
1381                               [(strict_llround node:$src),
1382                                (llround node:$src)]>;
1383 def any_fround     : PatFrags<(ops node:$src),
1384                               [(strict_fround node:$src),
1385                                (fround node:$src)]>;
1386 def any_ftrunc     : PatFrags<(ops node:$src),
1387                               [(strict_ftrunc node:$src),
1388                                (ftrunc node:$src)]>;
1389 def any_fmaxnum    : PatFrags<(ops node:$lhs, node:$rhs),
1390                               [(strict_fmaxnum node:$lhs, node:$rhs),
1391                                (fmaxnum node:$lhs, node:$rhs)]>;
1392 def any_fminnum    : PatFrags<(ops node:$lhs, node:$rhs),
1393                               [(strict_fminnum node:$lhs, node:$rhs),
1394                                (fminnum node:$lhs, node:$rhs)]>;
1395 def any_fmaximum   : PatFrags<(ops node:$lhs, node:$rhs),
1396                               [(strict_fmaximum node:$lhs, node:$rhs),
1397                                (fmaximum node:$lhs, node:$rhs)]>;
1398 def any_fminimum   : PatFrags<(ops node:$lhs, node:$rhs),
1399                               [(strict_fminimum node:$lhs, node:$rhs),
1400                                (fminimum node:$lhs, node:$rhs)]>;
1401 def any_fpround    : PatFrags<(ops node:$src),
1402                               [(strict_fpround node:$src),
1403                                (fpround node:$src)]>;
1404 def any_fpextend   : PatFrags<(ops node:$src),
1405                               [(strict_fpextend node:$src),
1406                                (fpextend node:$src)]>;
1407 def any_extloadf32 : PatFrags<(ops node:$ptr),
1408                               [(strict_extloadf32 node:$ptr),
1409                                (extloadf32 node:$ptr)]>;
1410 def any_extloadf64 : PatFrags<(ops node:$ptr),
1411                               [(strict_extloadf64 node:$ptr),
1412                                (extloadf64 node:$ptr)]>;
1413 def any_fp_to_sint : PatFrags<(ops node:$src),
1414                               [(strict_fp_to_sint node:$src),
1415                                (fp_to_sint node:$src)]>;
1416 def any_fp_to_uint : PatFrags<(ops node:$src),
1417                               [(strict_fp_to_uint node:$src),
1418                                (fp_to_uint node:$src)]>;
1419 def any_sint_to_fp : PatFrags<(ops node:$src),
1420                               [(strict_sint_to_fp node:$src),
1421                                (sint_to_fp node:$src)]>;
1422 def any_uint_to_fp : PatFrags<(ops node:$src),
1423                               [(strict_uint_to_fp node:$src),
1424                                (uint_to_fp node:$src)]>;
1425
1426 multiclass binary_atomic_op_ord<SDNode atomic_op> {
1427   def #NAME#_monotonic : PatFrag<(ops node:$ptr, node:$val),
1428       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$val)> {
1429     let IsAtomic = 1;
1430     let IsAtomicOrderingMonotonic = 1;
1431   }
1432   def #NAME#_acquire : PatFrag<(ops node:$ptr, node:$val),
1433       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$val)> {
1434     let IsAtomic = 1;
1435     let IsAtomicOrderingAcquire = 1;
1436   }
1437   def #NAME#_release : PatFrag<(ops node:$ptr, node:$val),
1438       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$val)> {
1439     let IsAtomic = 1;
1440     let IsAtomicOrderingRelease = 1;
1441   }
1442   def #NAME#_acq_rel : PatFrag<(ops node:$ptr, node:$val),
1443       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$val)> {
1444     let IsAtomic = 1;
1445     let IsAtomicOrderingAcquireRelease = 1;
1446   }
1447   def #NAME#_seq_cst : PatFrag<(ops node:$ptr, node:$val),
1448       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$val)> {
1449     let IsAtomic = 1;
1450     let IsAtomicOrderingSequentiallyConsistent = 1;
1451   }
1452 }
1453
1454 multiclass ternary_atomic_op_ord<SDNode atomic_op> {
1455   def #NAME#_monotonic : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1456       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$cmp, node:$val)> {
1457     let IsAtomic = 1;
1458     let IsAtomicOrderingMonotonic = 1;
1459   }
1460   def #NAME#_acquire : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1461       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$cmp, node:$val)> {
1462     let IsAtomic = 1;
1463     let IsAtomicOrderingAcquire = 1;
1464   }
1465   def #NAME#_release : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1466       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$cmp, node:$val)> {
1467     let IsAtomic = 1;
1468     let IsAtomicOrderingRelease = 1;
1469   }
1470   def #NAME#_acq_rel : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1471       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$cmp, node:$val)> {
1472     let IsAtomic = 1;
1473     let IsAtomicOrderingAcquireRelease = 1;
1474   }
1475   def #NAME#_seq_cst : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1476       (!cast<SDPatternOperator>(#NAME) node:$ptr, node:$cmp, node:$val)> {
1477     let IsAtomic = 1;
1478     let IsAtomicOrderingSequentiallyConsistent = 1;
1479   }
1480 }
1481
1482 multiclass binary_atomic_op<SDNode atomic_op, bit IsInt = 1> {
1483   def _8 : PatFrag<(ops node:$ptr, node:$val),
1484                    (atomic_op  node:$ptr, node:$val)> {
1485     let IsAtomic = 1;
1486     let MemoryVT = !if(IsInt, i8, ?);
1487   }
1488   def _16 : PatFrag<(ops node:$ptr, node:$val),
1489                     (atomic_op node:$ptr, node:$val)> {
1490     let IsAtomic = 1;
1491     let MemoryVT = !if(IsInt, i16, f16);
1492   }
1493   def _32 : PatFrag<(ops node:$ptr, node:$val),
1494                     (atomic_op node:$ptr, node:$val)> {
1495     let IsAtomic = 1;
1496     let MemoryVT = !if(IsInt, i32, f32);
1497   }
1498   def _64 : PatFrag<(ops node:$ptr, node:$val),
1499                     (atomic_op node:$ptr, node:$val)> {
1500     let IsAtomic = 1;
1501     let MemoryVT = !if(IsInt, i64, f64);
1502   }
1503
1504   defm NAME#_8  : binary_atomic_op_ord<atomic_op>;
1505   defm NAME#_16 : binary_atomic_op_ord<atomic_op>;
1506   defm NAME#_32 : binary_atomic_op_ord<atomic_op>;
1507   defm NAME#_64 : binary_atomic_op_ord<atomic_op>;
1508 }
1509
1510 multiclass ternary_atomic_op<SDNode atomic_op> {
1511   def _8 : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1512                    (atomic_op  node:$ptr, node:$cmp, node:$val)> {
1513     let IsAtomic = 1;
1514     let MemoryVT = i8;
1515   }
1516   def _16 : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1517                     (atomic_op node:$ptr, node:$cmp, node:$val)> {
1518     let IsAtomic = 1;
1519     let MemoryVT = i16;
1520   }
1521   def _32 : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1522                     (atomic_op node:$ptr, node:$cmp, node:$val)> {
1523     let IsAtomic = 1;
1524     let MemoryVT = i32;
1525   }
1526   def _64 : PatFrag<(ops node:$ptr, node:$cmp, node:$val),
1527                     (atomic_op node:$ptr, node:$cmp, node:$val)> {
1528     let IsAtomic = 1;
1529     let MemoryVT = i64;
1530   }
1531
1532   defm NAME#_8  : ternary_atomic_op_ord<atomic_op>;
1533   defm NAME#_16 : ternary_atomic_op_ord<atomic_op>;
1534   defm NAME#_32 : ternary_atomic_op_ord<atomic_op>;
1535   defm NAME#_64 : ternary_atomic_op_ord<atomic_op>;
1536 }
1537
1538 defm atomic_load_add  : binary_atomic_op<atomic_load_add>;
1539 defm atomic_swap      : binary_atomic_op<atomic_swap>;
1540 defm atomic_load_sub  : binary_atomic_op<atomic_load_sub>;
1541 defm atomic_load_and  : binary_atomic_op<atomic_load_and>;
1542 defm atomic_load_clr  : binary_atomic_op<atomic_load_clr>;
1543 defm atomic_load_or   : binary_atomic_op<atomic_load_or>;
1544 defm atomic_load_xor  : binary_atomic_op<atomic_load_xor>;
1545 defm atomic_load_nand : binary_atomic_op<atomic_load_nand>;
1546 defm atomic_load_min  : binary_atomic_op<atomic_load_min>;
1547 defm atomic_load_max  : binary_atomic_op<atomic_load_max>;
1548 defm atomic_load_umin : binary_atomic_op<atomic_load_umin>;
1549 defm atomic_load_umax : binary_atomic_op<atomic_load_umax>;
1550 defm atomic_store     : binary_atomic_op<atomic_store>;
1551 defm atomic_cmp_swap  : ternary_atomic_op<atomic_cmp_swap>;
1552
1553 def atomic_load_8 :
1554   PatFrag<(ops node:$ptr),
1555           (atomic_load node:$ptr)> {
1556   let IsAtomic = 1;
1557   let MemoryVT = i8;
1558 }
1559 def atomic_load_16 :
1560   PatFrag<(ops node:$ptr),
1561           (atomic_load node:$ptr)> {
1562   let IsAtomic = 1;
1563   let MemoryVT = i16;
1564 }
1565 def atomic_load_32 :
1566   PatFrag<(ops node:$ptr),
1567           (atomic_load node:$ptr)> {
1568   let IsAtomic = 1;
1569   let MemoryVT = i32;
1570 }
1571 def atomic_load_64 :
1572   PatFrag<(ops node:$ptr),
1573           (atomic_load node:$ptr)> {
1574   let IsAtomic = 1;
1575   let MemoryVT = i64;
1576 }
1577
1578 //===----------------------------------------------------------------------===//
1579 // Selection DAG Pattern Support.
1580 //
1581 // Patterns are what are actually matched against by the target-flavored
1582 // instruction selection DAG.  Instructions defined by the target implicitly
1583 // define patterns in most cases, but patterns can also be explicitly added when
1584 // an operation is defined by a sequence of instructions (e.g. loading a large
1585 // immediate value on RISC targets that do not support immediates as large as
1586 // their GPRs).
1587 //
1588
1589 class Pattern<dag patternToMatch, list<dag> resultInstrs> {
1590   dag             PatternToMatch  = patternToMatch;
1591   list<dag>       ResultInstrs    = resultInstrs;
1592   list<Predicate> Predicates      = [];  // See class Instruction in Target.td.
1593   int             AddedComplexity = 0;   // See class Instruction in Target.td.
1594 }
1595
1596 // Pat - A simple (but common) form of a pattern, which produces a simple result
1597 // not needing a full list.
1598 class Pat<dag pattern, dag result> : Pattern<pattern, [result]>;
1599
1600 //===----------------------------------------------------------------------===//
1601 // Complex pattern definitions.
1602 //
1603
1604 // Complex patterns, e.g. X86 addressing mode, requires pattern matching code
1605 // in C++. NumOperands is the number of operands returned by the select function;
1606 // SelectFunc is the name of the function used to pattern match the max. pattern;
1607 // RootNodes are the list of possible root nodes of the sub-dags to match.
1608 // e.g. X86 addressing mode - def addr : ComplexPattern<4, "SelectAddr", [add]>;
1609 //
1610 class ComplexPattern<ValueType ty, int numops, string fn,
1611                      list<SDNode> roots = [], list<SDNodeProperty> props = [],
1612                      int complexity = -1> {
1613   ValueType Ty = ty;
1614   int NumOperands = numops;
1615   string SelectFunc = fn;
1616   list<SDNode> RootNodes = roots;
1617   list<SDNodeProperty> Properties = props;
1618   int Complexity = complexity;
1619 }