blob: d04e56a4e9b472fc6ddc189816cf8caa0ca61ccf [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- TargetSelectionDAG.td - Common code for DAG isels ---*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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
22class SDTypeConstraint<int opnum> {
23 int OperandNum = opnum;
24}
25
26// SDTCisVT - The specified operand has exactly this VT.
27class SDTCisVT<int OpNum, ValueType vt> : SDTypeConstraint<OpNum> {
28 ValueType VT = vt;
29}
30
31class SDTCisPtrTy<int OpNum> : SDTypeConstraint<OpNum>;
32
33// SDTCisInt - The specified operand is has integer type.
34class SDTCisInt<int OpNum> : SDTypeConstraint<OpNum>;
35
36// SDTCisFP - The specified operand is has floating point type.
37class SDTCisFP<int OpNum> : SDTypeConstraint<OpNum>;
38
39// SDTCisSameAs - The two specified operands have identical types.
40class SDTCisSameAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
41 int OtherOperandNum = OtherOp;
42}
43
44// SDTCisVTSmallerThanOp - The specified operand is a VT SDNode, and its type is
45// smaller than the 'Other' operand.
46class SDTCisVTSmallerThanOp<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
47 int OtherOperandNum = OtherOp;
48}
49
50class SDTCisOpSmallerThanOp<int SmallOp, int BigOp> : SDTypeConstraint<SmallOp>{
51 int BigOperandNum = BigOp;
52}
53
54/// SDTCisIntVectorOfSameSize - This indicates that ThisOp and OtherOp are
55/// vector types, and that ThisOp is the result of
Duncan Sands92c43912008-06-06 12:08:01 +000056/// MVT::getIntVectorWithNumElements with the number of elements
57/// that ThisOp has.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058class SDTCisIntVectorOfSameSize<int ThisOp, int OtherOp>
59 : SDTypeConstraint<ThisOp> {
60 int OtherOpNum = OtherOp;
61}
62
Nate Begemanea391a22008-02-09 01:37:05 +000063/// SDTCisEltOfVec - This indicates that ThisOp is a scalar type of the same
64/// type as the element type of OtherOp, which is a vector type.
Dan Gohman2c4be2a2008-05-31 02:11:25 +000065class SDTCisEltOfVec<int ThisOp, int OtherOp>
Nate Begemanea391a22008-02-09 01:37:05 +000066 : SDTypeConstraint<ThisOp> {
67 int OtherOpNum = OtherOp;
68}
69
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070//===----------------------------------------------------------------------===//
71// Selection DAG Type Profile definitions.
72//
73// These use the constraints defined above to describe the type requirements of
74// the various nodes. These are not hard coded into tblgen, allowing targets to
75// add their own if needed.
76//
77
78// SDTypeProfile - This profile describes the type requirements of a Selection
79// DAG node.
80class SDTypeProfile<int numresults, int numoperands,
81 list<SDTypeConstraint> constraints> {
82 int NumResults = numresults;
83 int NumOperands = numoperands;
84 list<SDTypeConstraint> Constraints = constraints;
85}
86
87// Builtin profiles.
88def SDTIntLeaf: SDTypeProfile<1, 0, [SDTCisInt<0>]>; // for 'imm'.
89def SDTFPLeaf : SDTypeProfile<1, 0, [SDTCisFP<0>]>; // for 'fpimm'.
90def SDTPtrLeaf: SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>; // for '&g'.
91def SDTOther : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
92def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'.
93def SDTUnaryOp : SDTypeProfile<1, 1, []>; // bitconvert
94
95def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.
96 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
97]>;
98def SDTIntShiftOp : SDTypeProfile<1, 2, [ // shl, sra, srl
99 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisInt<2>
100]>;
101def SDTFPBinOp : SDTypeProfile<1, 2, [ // fadd, fmul, etc.
102 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0>
103]>;
104def SDTFPSignOp : SDTypeProfile<1, 2, [ // fcopysign.
105 SDTCisSameAs<0, 1>, SDTCisFP<0>, SDTCisFP<2>
106]>;
107def SDTFPTernaryOp : SDTypeProfile<1, 3, [ // fmadd, fnmsub, etc.
108 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, SDTCisFP<0>
109]>;
110def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // ctlz
111 SDTCisSameAs<0, 1>, SDTCisInt<0>
112]>;
113def SDTIntExtendOp : SDTypeProfile<1, 1, [ // sext, zext, anyext
114 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<1, 0>
115]>;
116def SDTIntTruncOp : SDTypeProfile<1, 1, [ // trunc
117 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<0, 1>
118]>;
119def SDTFPUnaryOp : SDTypeProfile<1, 1, [ // fneg, fsqrt, etc
120 SDTCisSameAs<0, 1>, SDTCisFP<0>
121]>;
122def SDTFPRoundOp : SDTypeProfile<1, 1, [ // fround
123 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<0, 1>
124]>;
125def SDTFPExtendOp : SDTypeProfile<1, 1, [ // fextend
126 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<1, 0>
127]>;
128def SDTIntToFPOp : SDTypeProfile<1, 1, [ // [su]int_to_fp
129 SDTCisFP<0>, SDTCisInt<1>
130]>;
131def SDTFPToIntOp : SDTypeProfile<1, 1, [ // fp_to_[su]int
132 SDTCisInt<0>, SDTCisFP<1>
133]>;
134def SDTExtInreg : SDTypeProfile<1, 2, [ // sext_inreg
135 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>,
136 SDTCisVTSmallerThanOp<2, 1>
137]>;
138
139def SDTSetCC : SDTypeProfile<1, 3, [ // setcc
140 SDTCisInt<0>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT>
141]>;
142
143def SDTSelect : SDTypeProfile<1, 3, [ // select
144 SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>
145]>;
146
147def SDTSelectCC : SDTypeProfile<1, 5, [ // select_cc
148 SDTCisSameAs<1, 2>, SDTCisSameAs<3, 4>, SDTCisSameAs<0, 3>,
149 SDTCisVT<5, OtherVT>
150]>;
151
152def SDTBr : SDTypeProfile<0, 1, [ // br
153 SDTCisVT<0, OtherVT>
154]>;
155
156def SDTBrcond : SDTypeProfile<0, 2, [ // brcond
157 SDTCisInt<0>, SDTCisVT<1, OtherVT>
158]>;
159
160def SDTBrind : SDTypeProfile<0, 1, [ // brind
161 SDTCisPtrTy<0>
162]>;
163
Chris Lattner3d254552008-01-15 22:02:54 +0000164def SDTNone : SDTypeProfile<0, 0, []>; // ret, trap
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165
166def SDTLoad : SDTypeProfile<1, 1, [ // load
167 SDTCisPtrTy<1>
168]>;
169
170def SDTStore : SDTypeProfile<0, 2, [ // store
171 SDTCisPtrTy<1>
172]>;
173
174def SDTIStore : SDTypeProfile<1, 3, [ // indexed store
175 SDTCisSameAs<0, 2>, SDTCisPtrTy<0>, SDTCisPtrTy<3>
176]>;
177
178def SDTVecShuffle : SDTypeProfile<1, 3, [
179 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisIntVectorOfSameSize<3, 0>
180]>;
Nate Begemanea391a22008-02-09 01:37:05 +0000181def SDTVecExtract : SDTypeProfile<1, 2, [ // vector extract
182 SDTCisEltOfVec<0, 1>, SDTCisPtrTy<2>
183]>;
Nate Begemand77e59e2008-02-11 04:19:36 +0000184def SDTVecInsert : SDTypeProfile<1, 3, [ // vector insert
185 SDTCisEltOfVec<2, 1>, SDTCisSameAs<0, 1>, SDTCisPtrTy<3>
Nate Begemanea391a22008-02-09 01:37:05 +0000186]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187
Evan Chengd1d68072008-03-08 00:58:38 +0000188def STDPrefetch : SDTypeProfile<0, 3, [ // prefetch
189 SDTCisPtrTy<0>, SDTCisSameAs<1, 2>, SDTCisInt<1>
190]>;
191
192def STDMemBarrier : SDTypeProfile<0, 5, [ // memory barier
Andrew Lenharth785610d2008-02-16 01:24:58 +0000193 SDTCisSameAs<0,1>, SDTCisSameAs<0,2>, SDTCisSameAs<0,3>, SDTCisSameAs<0,4>,
194 SDTCisInt<0>
195]>;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000196def STDAtomic3 : SDTypeProfile<1, 3, [
197 SDTCisSameAs<0,2>, SDTCisSameAs<0,3>, SDTCisInt<0>, SDTCisPtrTy<1>
198]>;
199def STDAtomic2 : SDTypeProfile<1, 2, [
200 SDTCisSameAs<0,2>, SDTCisInt<0>, SDTCisPtrTy<1>
201]>;
Andrew Lenharth785610d2008-02-16 01:24:58 +0000202
Bill Wendling7173da52007-11-13 09:19:02 +0000203class SDCallSeqStart<list<SDTypeConstraint> constraints> :
204 SDTypeProfile<0, 1, constraints>;
205class SDCallSeqEnd<list<SDTypeConstraint> constraints> :
206 SDTypeProfile<0, 2, constraints>;
207
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208//===----------------------------------------------------------------------===//
209// Selection DAG Node Properties.
210//
211// Note: These are hard coded into tblgen.
212//
213class SDNodeProperty;
214def SDNPCommutative : SDNodeProperty; // X op Y == Y op X
215def SDNPAssociative : SDNodeProperty; // (X op Y) op Z == X op (Y op Z)
216def SDNPHasChain : SDNodeProperty; // R/W chain operand and result
217def SDNPOutFlag : SDNodeProperty; // Write a flag result
218def SDNPInFlag : SDNodeProperty; // Read a flag operand
219def SDNPOptInFlag : SDNodeProperty; // Optionally read a flag operand
Chris Lattner6887b142008-01-06 08:36:04 +0000220def SDNPMayStore : SDNodeProperty; // May write to memory, sets 'mayStore'.
Chris Lattnerdfde8132008-01-10 04:44:32 +0000221def SDNPMayLoad : SDNodeProperty; // May read memory, sets 'mayLoad'.
Chris Lattner2e40ad12008-01-10 05:48:23 +0000222def SDNPSideEffect : SDNodeProperty; // Sets 'HasUnmodelledSideEffects'.
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000223def SDNPMemOperand : SDNodeProperty; // Touches memory, has assoc MemOperand
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224
225//===----------------------------------------------------------------------===//
226// Selection DAG Node definitions.
227//
228class SDNode<string opcode, SDTypeProfile typeprof,
229 list<SDNodeProperty> props = [], string sdclass = "SDNode"> {
230 string Opcode = opcode;
231 string SDClass = sdclass;
232 list<SDNodeProperty> Properties = props;
233 SDTypeProfile TypeProfile = typeprof;
234}
235
236def set;
Evan Chengf031fcb2007-09-25 01:48:59 +0000237def implicit;
Evan Cheng775baac2007-09-12 23:30:14 +0000238def parallel;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239def node;
240def srcvalue;
241
242def imm : SDNode<"ISD::Constant" , SDTIntLeaf , [], "ConstantSDNode">;
Nate Begemane2ba64f2008-02-14 08:57:00 +0000243def fpimm : SDNode<"ISD::ConstantFP", SDTFPLeaf , [], "ConstantFPSDNode">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244def vt : SDNode<"ISD::VALUETYPE" , SDTOther , [], "VTSDNode">;
245def bb : SDNode<"ISD::BasicBlock", SDTOther , [], "BasicBlockSDNode">;
246def cond : SDNode<"ISD::CONDCODE" , SDTOther , [], "CondCodeSDNode">;
247def undef : SDNode<"ISD::UNDEF" , SDTUNDEF , []>;
248def globaladdr : SDNode<"ISD::GlobalAddress", SDTPtrLeaf, [],
249 "GlobalAddressSDNode">;
250def tglobaladdr : SDNode<"ISD::TargetGlobalAddress", SDTPtrLeaf, [],
251 "GlobalAddressSDNode">;
252def globaltlsaddr : SDNode<"ISD::GlobalTLSAddress", SDTPtrLeaf, [],
253 "GlobalAddressSDNode">;
254def tglobaltlsaddr : SDNode<"ISD::TargetGlobalTLSAddress", SDTPtrLeaf, [],
255 "GlobalAddressSDNode">;
256def constpool : SDNode<"ISD::ConstantPool", SDTPtrLeaf, [],
257 "ConstantPoolSDNode">;
258def tconstpool : SDNode<"ISD::TargetConstantPool", SDTPtrLeaf, [],
259 "ConstantPoolSDNode">;
260def jumptable : SDNode<"ISD::JumpTable", SDTPtrLeaf, [],
261 "JumpTableSDNode">;
262def tjumptable : SDNode<"ISD::TargetJumpTable", SDTPtrLeaf, [],
263 "JumpTableSDNode">;
264def frameindex : SDNode<"ISD::FrameIndex", SDTPtrLeaf, [],
265 "FrameIndexSDNode">;
266def tframeindex : SDNode<"ISD::TargetFrameIndex", SDTPtrLeaf, [],
267 "FrameIndexSDNode">;
268def externalsym : SDNode<"ISD::ExternalSymbol", SDTPtrLeaf, [],
269 "ExternalSymbolSDNode">;
270def texternalsym: SDNode<"ISD::TargetExternalSymbol", SDTPtrLeaf, [],
271 "ExternalSymbolSDNode">;
272
273def add : SDNode<"ISD::ADD" , SDTIntBinOp ,
274 [SDNPCommutative, SDNPAssociative]>;
275def sub : SDNode<"ISD::SUB" , SDTIntBinOp>;
276def mul : SDNode<"ISD::MUL" , SDTIntBinOp,
277 [SDNPCommutative, SDNPAssociative]>;
278def mulhs : SDNode<"ISD::MULHS" , SDTIntBinOp, [SDNPCommutative]>;
279def mulhu : SDNode<"ISD::MULHU" , SDTIntBinOp, [SDNPCommutative]>;
280def sdiv : SDNode<"ISD::SDIV" , SDTIntBinOp>;
281def udiv : SDNode<"ISD::UDIV" , SDTIntBinOp>;
282def srem : SDNode<"ISD::SREM" , SDTIntBinOp>;
283def urem : SDNode<"ISD::UREM" , SDTIntBinOp>;
284def srl : SDNode<"ISD::SRL" , SDTIntShiftOp>;
285def sra : SDNode<"ISD::SRA" , SDTIntShiftOp>;
286def shl : SDNode<"ISD::SHL" , SDTIntShiftOp>;
287def rotl : SDNode<"ISD::ROTL" , SDTIntShiftOp>;
288def rotr : SDNode<"ISD::ROTR" , SDTIntShiftOp>;
289def and : SDNode<"ISD::AND" , SDTIntBinOp,
290 [SDNPCommutative, SDNPAssociative]>;
291def or : SDNode<"ISD::OR" , SDTIntBinOp,
292 [SDNPCommutative, SDNPAssociative]>;
293def xor : SDNode<"ISD::XOR" , SDTIntBinOp,
294 [SDNPCommutative, SDNPAssociative]>;
295def addc : SDNode<"ISD::ADDC" , SDTIntBinOp,
296 [SDNPCommutative, SDNPOutFlag]>;
297def adde : SDNode<"ISD::ADDE" , SDTIntBinOp,
298 [SDNPCommutative, SDNPOutFlag, SDNPInFlag]>;
299def subc : SDNode<"ISD::SUBC" , SDTIntBinOp,
300 [SDNPOutFlag]>;
301def sube : SDNode<"ISD::SUBE" , SDTIntBinOp,
302 [SDNPOutFlag, SDNPInFlag]>;
303
304def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>;
305def bswap : SDNode<"ISD::BSWAP" , SDTIntUnaryOp>;
306def ctlz : SDNode<"ISD::CTLZ" , SDTIntUnaryOp>;
307def cttz : SDNode<"ISD::CTTZ" , SDTIntUnaryOp>;
308def ctpop : SDNode<"ISD::CTPOP" , SDTIntUnaryOp>;
309def sext : SDNode<"ISD::SIGN_EXTEND", SDTIntExtendOp>;
310def zext : SDNode<"ISD::ZERO_EXTEND", SDTIntExtendOp>;
311def anyext : SDNode<"ISD::ANY_EXTEND" , SDTIntExtendOp>;
312def trunc : SDNode<"ISD::TRUNCATE" , SDTIntTruncOp>;
313def bitconvert : SDNode<"ISD::BIT_CONVERT", SDTUnaryOp>;
Nate Begemanea391a22008-02-09 01:37:05 +0000314def extractelt : SDNode<"ISD::EXTRACT_VECTOR_ELT", SDTVecExtract>;
315def insertelt : SDNode<"ISD::INSERT_VECTOR_ELT", SDTVecInsert>;
316
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317
318def fadd : SDNode<"ISD::FADD" , SDTFPBinOp, [SDNPCommutative]>;
319def fsub : SDNode<"ISD::FSUB" , SDTFPBinOp>;
320def fmul : SDNode<"ISD::FMUL" , SDTFPBinOp, [SDNPCommutative]>;
321def fdiv : SDNode<"ISD::FDIV" , SDTFPBinOp>;
322def frem : SDNode<"ISD::FREM" , SDTFPBinOp>;
323def fabs : SDNode<"ISD::FABS" , SDTFPUnaryOp>;
324def fneg : SDNode<"ISD::FNEG" , SDTFPUnaryOp>;
325def fsqrt : SDNode<"ISD::FSQRT" , SDTFPUnaryOp>;
326def fsin : SDNode<"ISD::FSIN" , SDTFPUnaryOp>;
327def fcos : SDNode<"ISD::FCOS" , SDTFPUnaryOp>;
328
329def fround : SDNode<"ISD::FP_ROUND" , SDTFPRoundOp>;
330def fextend : SDNode<"ISD::FP_EXTEND" , SDTFPExtendOp>;
331def fcopysign : SDNode<"ISD::FCOPYSIGN" , SDTFPSignOp>;
332
333def sint_to_fp : SDNode<"ISD::SINT_TO_FP" , SDTIntToFPOp>;
334def uint_to_fp : SDNode<"ISD::UINT_TO_FP" , SDTIntToFPOp>;
335def fp_to_sint : SDNode<"ISD::FP_TO_SINT" , SDTFPToIntOp>;
336def fp_to_uint : SDNode<"ISD::FP_TO_UINT" , SDTFPToIntOp>;
337
338def setcc : SDNode<"ISD::SETCC" , SDTSetCC>;
339def select : SDNode<"ISD::SELECT" , SDTSelect>;
340def selectcc : SDNode<"ISD::SELECT_CC" , SDTSelectCC>;
Nate Begeman9a1ce152008-05-12 19:40:03 +0000341def vsetcc : SDNode<"ISD::VSETCC" , SDTSetCC>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342
343def brcond : SDNode<"ISD::BRCOND" , SDTBrcond, [SDNPHasChain]>;
344def brind : SDNode<"ISD::BRIND" , SDTBrind, [SDNPHasChain]>;
345def br : SDNode<"ISD::BR" , SDTBr, [SDNPHasChain]>;
Chris Lattner3d254552008-01-15 22:02:54 +0000346def ret : SDNode<"ISD::RET" , SDTNone, [SDNPHasChain]>;
347def trap : SDNode<"ISD::TRAP" , SDTNone,
348 [SDNPHasChain, SDNPSideEffect]>;
Evan Chengd1d68072008-03-08 00:58:38 +0000349
350def prefetch : SDNode<"ISD::PREFETCH" , STDPrefetch,
351 [SDNPHasChain, SDNPMayLoad, SDNPMayStore]>;
352
353def membarrier : SDNode<"ISD::MEMBARRIER" , STDMemBarrier,
Andrew Lenharth785610d2008-02-16 01:24:58 +0000354 [SDNPHasChain, SDNPSideEffect]>;
Evan Chengd1d68072008-03-08 00:58:38 +0000355
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000356// Do not use atomic_* directly, use atomic_*_size (see below)
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000357def atomic_cmp_swap : SDNode<"ISD::ATOMIC_CMP_SWAP" , STDAtomic3,
358 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
359def atomic_load_add : SDNode<"ISD::ATOMIC_LOAD_ADD" , STDAtomic2,
360 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Bill Wendling6f189e22008-08-19 23:09:18 +0000361def atomic_swap : SDNode<"ISD::ATOMIC_SWAP", STDAtomic2,
362 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000363def atomic_load_sub : SDNode<"ISD::ATOMIC_LOAD_SUB" , STDAtomic2,
364 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000365def atomic_load_and : SDNode<"ISD::ATOMIC_LOAD_AND" , STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000366 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000367def atomic_load_or : SDNode<"ISD::ATOMIC_LOAD_OR" , STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000368 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000369def atomic_load_xor : SDNode<"ISD::ATOMIC_LOAD_XOR" , STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000370 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Andrew Lenharthaf02d592008-06-14 05:48:15 +0000371def atomic_load_nand: SDNode<"ISD::ATOMIC_LOAD_NAND", STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000372 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000373def atomic_load_min : SDNode<"ISD::ATOMIC_LOAD_MIN", STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000374 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000375def atomic_load_max : SDNode<"ISD::ATOMIC_LOAD_MAX", STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000376 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000377def atomic_load_umin : SDNode<"ISD::ATOMIC_LOAD_UMIN", STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000378 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang078a62d2008-05-05 19:05:59 +0000379def atomic_load_umax : SDNode<"ISD::ATOMIC_LOAD_UMAX", STDAtomic2,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000380 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381
382// Do not use ld, st directly. Use load, extload, sextload, zextload, store,
383// and truncst (see below).
Chris Lattnerdfde8132008-01-10 04:44:32 +0000384def ld : SDNode<"ISD::LOAD" , SDTLoad,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000385 [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000386def st : SDNode<"ISD::STORE" , SDTStore,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000387 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000388def ist : SDNode<"ISD::STORE" , SDTIStore,
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000389 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390
391def vector_shuffle : SDNode<"ISD::VECTOR_SHUFFLE", SDTVecShuffle, []>;
Duncan Sandse10a0cb2008-07-28 19:17:21 +0000392def build_vector : SDNode<"ISD::BUILD_VECTOR", SDTypeProfile<1, -1, []>, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393def scalar_to_vector : SDNode<"ISD::SCALAR_TO_VECTOR", SDTypeProfile<1, 1, []>,
394 []>;
395def vector_extract : SDNode<"ISD::EXTRACT_VECTOR_ELT",
396 SDTypeProfile<1, 2, [SDTCisPtrTy<2>]>, []>;
397def vector_insert : SDNode<"ISD::INSERT_VECTOR_ELT",
398 SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>, SDTCisPtrTy<3>]>, []>;
Christopher Lambb768c2e2007-07-26 07:34:40 +0000399
400def extract_subreg : SDNode<"ISD::EXTRACT_SUBREG",
401 SDTypeProfile<1, 2, []>>;
402def insert_subreg : SDNode<"ISD::INSERT_SUBREG",
403 SDTypeProfile<1, 3, []>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404
405// Nodes for intrinsics, you should use the intrinsic itself and let tblgen use
406// these internally. Don't reference these directly.
407def intrinsic_void : SDNode<"ISD::INTRINSIC_VOID",
408 SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>,
409 [SDNPHasChain]>;
410def intrinsic_w_chain : SDNode<"ISD::INTRINSIC_W_CHAIN",
411 SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>,
412 [SDNPHasChain]>;
413def intrinsic_wo_chain : SDNode<"ISD::INTRINSIC_WO_CHAIN",
414 SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>, []>;
415
416
417//===----------------------------------------------------------------------===//
418// Selection DAG Condition Codes
419
420class CondCode; // ISD::CondCode enums
421def SETOEQ : CondCode; def SETOGT : CondCode;
422def SETOGE : CondCode; def SETOLT : CondCode; def SETOLE : CondCode;
423def SETONE : CondCode; def SETO : CondCode; def SETUO : CondCode;
424def SETUEQ : CondCode; def SETUGT : CondCode; def SETUGE : CondCode;
425def SETULT : CondCode; def SETULE : CondCode; def SETUNE : CondCode;
426
427def SETEQ : CondCode; def SETGT : CondCode; def SETGE : CondCode;
428def SETLT : CondCode; def SETLE : CondCode; def SETNE : CondCode;
429
430
431//===----------------------------------------------------------------------===//
432// Selection DAG Node Transformation Functions.
433//
434// This mechanism allows targets to manipulate nodes in the output DAG once a
435// match has been formed. This is typically used to manipulate immediate
436// values.
437//
438class SDNodeXForm<SDNode opc, code xformFunction> {
439 SDNode Opcode = opc;
440 code XFormFunction = xformFunction;
441}
442
443def NOOP_SDNodeXForm : SDNodeXForm<imm, [{}]>;
444
445
446//===----------------------------------------------------------------------===//
447// Selection DAG Pattern Fragments.
448//
449// Pattern fragments are reusable chunks of dags that match specific things.
450// They can take arguments and have C++ predicates that control whether they
451// match. They are intended to make the patterns for common instructions more
452// compact and readable.
453//
454
455/// PatFrag - Represents a pattern fragment. This can match something on the
456/// DAG, frame a single node to multiply nested other fragments.
457///
458class PatFrag<dag ops, dag frag, code pred = [{}],
459 SDNodeXForm xform = NOOP_SDNodeXForm> {
460 dag Operands = ops;
461 dag Fragment = frag;
462 code Predicate = pred;
463 SDNodeXForm OperandTransform = xform;
464}
465
466// PatLeaf's are pattern fragments that have no operands. This is just a helper
467// to define immediates and other common things concisely.
468class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm>
469 : PatFrag<(ops), frag, pred, xform>;
470
471// Leaf fragments.
472
Duncan Sands92c43912008-06-06 12:08:01 +0000473def vtInt : PatLeaf<(vt), [{ return N->getVT().isInteger(); }]>;
474def vtFP : PatLeaf<(vt), [{ return N->getVT().isFloatingPoint(); }]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475
476def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
477def immAllOnesV: PatLeaf<(build_vector), [{
478 return ISD::isBuildVectorAllOnes(N);
479}]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480def immAllOnesV_bc: PatLeaf<(bitconvert), [{
481 return ISD::isBuildVectorAllOnes(N);
482}]>;
Chris Lattner8f259c02007-11-24 19:02:07 +0000483def immAllZerosV: PatLeaf<(build_vector), [{
484 return ISD::isBuildVectorAllZeros(N);
485}]>;
486def immAllZerosV_bc: PatLeaf<(bitconvert), [{
487 return ISD::isBuildVectorAllZeros(N);
488}]>;
489
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490
491
492// Other helper fragments.
493def not : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>;
494def vnot : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV)>;
495def vnot_conv : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV_bc)>;
496def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
497
498// load fragments.
499def load : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000500 LoadSDNode *LD = cast<LoadSDNode>(N);
501 return LD->getExtensionType() == ISD::NON_EXTLOAD &&
502 LD->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503}]>;
504
505// extending load fragments.
506def extloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000507 LoadSDNode *LD = cast<LoadSDNode>(N);
508 return LD->getExtensionType() == ISD::EXTLOAD &&
509 LD->getAddressingMode() == ISD::UNINDEXED &&
510 LD->getMemoryVT() == MVT::i1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511}]>;
512def extloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000513 LoadSDNode *LD = cast<LoadSDNode>(N);
514 return LD->getExtensionType() == ISD::EXTLOAD &&
515 LD->getAddressingMode() == ISD::UNINDEXED &&
516 LD->getMemoryVT() == MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517}]>;
518def extloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000519 LoadSDNode *LD = cast<LoadSDNode>(N);
520 return LD->getExtensionType() == ISD::EXTLOAD &&
521 LD->getAddressingMode() == ISD::UNINDEXED &&
522 LD->getMemoryVT() == MVT::i16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523}]>;
524def extloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000525 LoadSDNode *LD = cast<LoadSDNode>(N);
526 return LD->getExtensionType() == ISD::EXTLOAD &&
527 LD->getAddressingMode() == ISD::UNINDEXED &&
528 LD->getMemoryVT() == MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529}]>;
530def extloadf32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000531 LoadSDNode *LD = cast<LoadSDNode>(N);
532 return LD->getExtensionType() == ISD::EXTLOAD &&
533 LD->getAddressingMode() == ISD::UNINDEXED &&
534 LD->getMemoryVT() == MVT::f32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535}]>;
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000536def extloadf64 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000537 LoadSDNode *LD = cast<LoadSDNode>(N);
538 return LD->getExtensionType() == ISD::EXTLOAD &&
539 LD->getAddressingMode() == ISD::UNINDEXED &&
540 LD->getMemoryVT() == MVT::f64;
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000541}]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542
543def sextloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000544 LoadSDNode *LD = cast<LoadSDNode>(N);
545 return LD->getExtensionType() == ISD::SEXTLOAD &&
546 LD->getAddressingMode() == ISD::UNINDEXED &&
547 LD->getMemoryVT() == MVT::i1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548}]>;
549def sextloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000550 LoadSDNode *LD = cast<LoadSDNode>(N);
551 return LD->getExtensionType() == ISD::SEXTLOAD &&
552 LD->getAddressingMode() == ISD::UNINDEXED &&
553 LD->getMemoryVT() == MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554}]>;
555def sextloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000556 LoadSDNode *LD = cast<LoadSDNode>(N);
557 return LD->getExtensionType() == ISD::SEXTLOAD &&
558 LD->getAddressingMode() == ISD::UNINDEXED &&
559 LD->getMemoryVT() == MVT::i16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560}]>;
561def sextloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000562 LoadSDNode *LD = cast<LoadSDNode>(N);
563 return LD->getExtensionType() == ISD::SEXTLOAD &&
564 LD->getAddressingMode() == ISD::UNINDEXED &&
565 LD->getMemoryVT() == MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566}]>;
567
568def zextloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000569 LoadSDNode *LD = cast<LoadSDNode>(N);
570 return LD->getExtensionType() == ISD::ZEXTLOAD &&
571 LD->getAddressingMode() == ISD::UNINDEXED &&
572 LD->getMemoryVT() == MVT::i1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573}]>;
574def zextloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000575 LoadSDNode *LD = cast<LoadSDNode>(N);
576 return LD->getExtensionType() == ISD::ZEXTLOAD &&
577 LD->getAddressingMode() == ISD::UNINDEXED &&
578 LD->getMemoryVT() == MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579}]>;
580def zextloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000581 LoadSDNode *LD = cast<LoadSDNode>(N);
582 return LD->getExtensionType() == ISD::ZEXTLOAD &&
583 LD->getAddressingMode() == ISD::UNINDEXED &&
584 LD->getMemoryVT() == MVT::i16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585}]>;
586def zextloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000587 LoadSDNode *LD = cast<LoadSDNode>(N);
588 return LD->getExtensionType() == ISD::ZEXTLOAD &&
589 LD->getAddressingMode() == ISD::UNINDEXED &&
590 LD->getMemoryVT() == MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000591}]>;
592
593// store fragments.
594def store : PatFrag<(ops node:$val, node:$ptr),
595 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000596 StoreSDNode *ST = cast<StoreSDNode>(N);
597 return !ST->isTruncatingStore() &&
598 ST->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599}]>;
600
601// truncstore fragments.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602def truncstorei8 : PatFrag<(ops node:$val, node:$ptr),
603 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000604 StoreSDNode *ST = cast<StoreSDNode>(N);
605 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8 &&
606 ST->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607}]>;
608def truncstorei16 : PatFrag<(ops node:$val, node:$ptr),
609 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000610 StoreSDNode *ST = cast<StoreSDNode>(N);
611 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16 &&
612 ST->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613}]>;
614def truncstorei32 : PatFrag<(ops node:$val, node:$ptr),
615 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000616 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman41a458d2008-08-20 15:54:46 +0000617 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32 &&
618 ST->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619}]>;
620def truncstoref32 : PatFrag<(ops node:$val, node:$ptr),
621 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000622 StoreSDNode *ST = cast<StoreSDNode>(N);
623 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32 &&
624 ST->getAddressingMode() == ISD::UNINDEXED;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625}]>;
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000626def truncstoref64 : PatFrag<(ops node:$val, node:$ptr),
627 (st node:$val, node:$ptr), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000628 StoreSDNode *ST = cast<StoreSDNode>(N);
629 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f64 &&
630 ST->getAddressingMode() == ISD::UNINDEXED;
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000631}]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632
633// indexed store fragments.
634def pre_store : PatFrag<(ops node:$val, node:$base, node:$offset),
635 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000636 StoreSDNode *ST = cast<StoreSDNode>(N);
637 ISD::MemIndexedMode AM = ST->getAddressingMode();
638 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
639 !ST->isTruncatingStore();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640}]>;
641
642def pre_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
643 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000644 StoreSDNode *ST = cast<StoreSDNode>(N);
645 ISD::MemIndexedMode AM = ST->getAddressingMode();
646 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
647 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648}]>;
649def pre_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
650 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000651 StoreSDNode *ST = cast<StoreSDNode>(N);
652 ISD::MemIndexedMode AM = ST->getAddressingMode();
653 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
654 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655}]>;
656def pre_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
657 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000658 StoreSDNode *ST = cast<StoreSDNode>(N);
659 ISD::MemIndexedMode AM = ST->getAddressingMode();
660 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
661 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662}]>;
663def pre_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
664 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000665 StoreSDNode *ST = cast<StoreSDNode>(N);
666 ISD::MemIndexedMode AM = ST->getAddressingMode();
667 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
668 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669}]>;
670def pre_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
671 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000672 StoreSDNode *ST = cast<StoreSDNode>(N);
673 ISD::MemIndexedMode AM = ST->getAddressingMode();
674 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
675 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676}]>;
677
678def post_store : PatFrag<(ops node:$val, node:$ptr, node:$offset),
679 (ist node:$val, node:$ptr, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000680 StoreSDNode *ST = cast<StoreSDNode>(N);
681 ISD::MemIndexedMode AM = ST->getAddressingMode();
682 return !ST->isTruncatingStore() &&
683 (AM == ISD::POST_INC || AM == ISD::POST_DEC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684}]>;
685
686def post_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
687 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000688 StoreSDNode *ST = cast<StoreSDNode>(N);
689 ISD::MemIndexedMode AM = ST->getAddressingMode();
690 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
691 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692}]>;
693def post_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
694 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000695 StoreSDNode *ST = cast<StoreSDNode>(N);
696 ISD::MemIndexedMode AM = ST->getAddressingMode();
697 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
698 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699}]>;
700def post_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
701 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000702 StoreSDNode *ST = cast<StoreSDNode>(N);
703 ISD::MemIndexedMode AM = ST->getAddressingMode();
704 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
705 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706}]>;
707def post_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
708 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000709 StoreSDNode *ST = cast<StoreSDNode>(N);
710 ISD::MemIndexedMode AM = ST->getAddressingMode();
711 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
712 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713}]>;
714def post_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
715 (ist node:$val, node:$base, node:$offset), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000716 StoreSDNode *ST = cast<StoreSDNode>(N);
717 ISD::MemIndexedMode AM = ST->getAddressingMode();
718 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
719 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720}]>;
721
Dan Gohman8335c412008-08-20 15:24:22 +0000722// Atomic patterns
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000723def atomic_cmp_swap_8 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
724 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000725 AtomicSDNode* V = cast<AtomicSDNode>(N);
726 return V->getValueType(0) == MVT::i8;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000727}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000728def atomic_cmp_swap_16 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
729 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000730 AtomicSDNode* V = cast<AtomicSDNode>(N);
731 return V->getValueType(0) == MVT::i16;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000732}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000733def atomic_cmp_swap_32 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
734 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000735 AtomicSDNode* V = cast<AtomicSDNode>(N);
736 return V->getValueType(0) == MVT::i32;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000737}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000738def atomic_cmp_swap_64 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
739 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000740 AtomicSDNode* V = cast<AtomicSDNode>(N);
741 return V->getValueType(0) == MVT::i64;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000742}]>;
743
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000744def atomic_load_add_8 : PatFrag<(ops node:$ptr, node:$inc),
745 (atomic_load_add node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000746 AtomicSDNode* V = cast<AtomicSDNode>(N);
747 return V->getValueType(0) == MVT::i8;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000748}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000749def atomic_load_add_16 : PatFrag<(ops node:$ptr, node:$inc),
750 (atomic_load_add node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000751 AtomicSDNode* V = cast<AtomicSDNode>(N);
752 return V->getValueType(0) == MVT::i16;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000753}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000754def atomic_load_add_32 : PatFrag<(ops node:$ptr, node:$inc),
755 (atomic_load_add node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000756 AtomicSDNode* V = cast<AtomicSDNode>(N);
757 return V->getValueType(0) == MVT::i32;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000758}]>;
Mon P Wang6bde9ec2008-06-25 08:15:39 +0000759def atomic_load_add_64 : PatFrag<(ops node:$ptr, node:$inc),
760 (atomic_load_add node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000761 AtomicSDNode* V = cast<AtomicSDNode>(N);
762 return V->getValueType(0) == MVT::i64;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000763}]>;
764
765def atomic_swap_8 : PatFrag<(ops node:$ptr, node:$inc),
766 (atomic_swap node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000767 AtomicSDNode* V = cast<AtomicSDNode>(N);
768 return V->getValueType(0) == MVT::i8;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000769}]>;
770def atomic_swap_16 : PatFrag<(ops node:$ptr, node:$inc),
771 (atomic_swap node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000772 AtomicSDNode* V = cast<AtomicSDNode>(N);
773 return V->getValueType(0) == MVT::i16;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000774}]>;
775def atomic_swap_32 : PatFrag<(ops node:$ptr, node:$inc),
776 (atomic_swap node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000777 AtomicSDNode* V = cast<AtomicSDNode>(N);
778 return V->getValueType(0) == MVT::i32;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000779}]>;
780def atomic_swap_64 : PatFrag<(ops node:$ptr, node:$inc),
781 (atomic_swap node:$ptr, node:$inc), [{
Dan Gohman8335c412008-08-20 15:24:22 +0000782 AtomicSDNode* V = cast<AtomicSDNode>(N);
783 return V->getValueType(0) == MVT::i64;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000784}]>;
785
786
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000787
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788// setcc convenience fragments.
789def setoeq : PatFrag<(ops node:$lhs, node:$rhs),
790 (setcc node:$lhs, node:$rhs, SETOEQ)>;
791def setogt : PatFrag<(ops node:$lhs, node:$rhs),
792 (setcc node:$lhs, node:$rhs, SETOGT)>;
793def setoge : PatFrag<(ops node:$lhs, node:$rhs),
794 (setcc node:$lhs, node:$rhs, SETOGE)>;
795def setolt : PatFrag<(ops node:$lhs, node:$rhs),
796 (setcc node:$lhs, node:$rhs, SETOLT)>;
797def setole : PatFrag<(ops node:$lhs, node:$rhs),
798 (setcc node:$lhs, node:$rhs, SETOLE)>;
799def setone : PatFrag<(ops node:$lhs, node:$rhs),
800 (setcc node:$lhs, node:$rhs, SETONE)>;
801def seto : PatFrag<(ops node:$lhs, node:$rhs),
802 (setcc node:$lhs, node:$rhs, SETO)>;
803def setuo : PatFrag<(ops node:$lhs, node:$rhs),
804 (setcc node:$lhs, node:$rhs, SETUO)>;
805def setueq : PatFrag<(ops node:$lhs, node:$rhs),
806 (setcc node:$lhs, node:$rhs, SETUEQ)>;
807def setugt : PatFrag<(ops node:$lhs, node:$rhs),
808 (setcc node:$lhs, node:$rhs, SETUGT)>;
809def setuge : PatFrag<(ops node:$lhs, node:$rhs),
810 (setcc node:$lhs, node:$rhs, SETUGE)>;
811def setult : PatFrag<(ops node:$lhs, node:$rhs),
812 (setcc node:$lhs, node:$rhs, SETULT)>;
813def setule : PatFrag<(ops node:$lhs, node:$rhs),
814 (setcc node:$lhs, node:$rhs, SETULE)>;
815def setune : PatFrag<(ops node:$lhs, node:$rhs),
816 (setcc node:$lhs, node:$rhs, SETUNE)>;
817def seteq : PatFrag<(ops node:$lhs, node:$rhs),
818 (setcc node:$lhs, node:$rhs, SETEQ)>;
819def setgt : PatFrag<(ops node:$lhs, node:$rhs),
820 (setcc node:$lhs, node:$rhs, SETGT)>;
821def setge : PatFrag<(ops node:$lhs, node:$rhs),
822 (setcc node:$lhs, node:$rhs, SETGE)>;
823def setlt : PatFrag<(ops node:$lhs, node:$rhs),
824 (setcc node:$lhs, node:$rhs, SETLT)>;
825def setle : PatFrag<(ops node:$lhs, node:$rhs),
826 (setcc node:$lhs, node:$rhs, SETLE)>;
827def setne : PatFrag<(ops node:$lhs, node:$rhs),
828 (setcc node:$lhs, node:$rhs, SETNE)>;
829
830//===----------------------------------------------------------------------===//
831// Selection DAG Pattern Support.
832//
833// Patterns are what are actually matched against the target-flavored
834// instruction selection DAG. Instructions defined by the target implicitly
835// define patterns in most cases, but patterns can also be explicitly added when
836// an operation is defined by a sequence of instructions (e.g. loading a large
837// immediate value on RISC targets that do not support immediates as large as
838// their GPRs).
839//
840
841class Pattern<dag patternToMatch, list<dag> resultInstrs> {
842 dag PatternToMatch = patternToMatch;
843 list<dag> ResultInstrs = resultInstrs;
844 list<Predicate> Predicates = []; // See class Instruction in Target.td.
845 int AddedComplexity = 0; // See class Instruction in Target.td.
846}
847
848// Pat - A simple (but common) form of a pattern, which produces a simple result
849// not needing a full list.
850class Pat<dag pattern, dag result> : Pattern<pattern, [result]>;
851
852//===----------------------------------------------------------------------===//
853// Complex pattern definitions.
854//
Christopher Lamb059c7c92008-01-31 07:27:46 +0000855
856class CPAttribute;
857// Pass the parent Operand as root to CP function rather
858// than the root of the sub-DAG
859def CPAttrParentAsRoot : CPAttribute;
860
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861// Complex patterns, e.g. X86 addressing mode, requires pattern matching code
862// in C++. NumOperands is the number of operands returned by the select function;
863// SelectFunc is the name of the function used to pattern match the max. pattern;
864// RootNodes are the list of possible root nodes of the sub-dags to match.
865// e.g. X86 addressing mode - def addr : ComplexPattern<4, "SelectAddr", [add]>;
866//
867class ComplexPattern<ValueType ty, int numops, string fn,
Christopher Lamb059c7c92008-01-31 07:27:46 +0000868 list<SDNode> roots = [], list<SDNodeProperty> props = [],
869 list<CPAttribute> attrs = []> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870 ValueType Ty = ty;
871 int NumOperands = numops;
872 string SelectFunc = fn;
873 list<SDNode> RootNodes = roots;
874 list<SDNodeProperty> Properties = props;
Christopher Lamb059c7c92008-01-31 07:27:46 +0000875 list<CPAttribute> Attributes = attrs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876}
877
878//===----------------------------------------------------------------------===//
879// Dwarf support.
880//
881def SDT_dwarf_loc : SDTypeProfile<0, 3,
882 [SDTCisInt<0>, SDTCisInt<1>, SDTCisInt<2>]>;
883def dwarf_loc : SDNode<"ISD::DEBUG_LOC", SDT_dwarf_loc,[SDNPHasChain]>;