blob: 5dba0bc9c058ac62795b801b0e0e8628b285c81a [file] [log] [blame]
Chris Lattner17f2cf02005-10-10 06:00:30 +00001//===- TargetSelectionDAG.td - Common code for DAG isels ---*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner17f2cf02005-10-10 06:00:30 +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.
Chris Lattnerd8fe3b32005-12-09 22:58:42 +000027class SDTCisVT<int OpNum, ValueType vt> : SDTypeConstraint<OpNum> {
Chris Lattner17f2cf02005-10-10 06:00:30 +000028 ValueType VT = vt;
29}
30
Chris Lattnerd8fe3b32005-12-09 22:58:42 +000031class SDTCisPtrTy<int OpNum> : SDTypeConstraint<OpNum>;
32
Chris Lattner17f2cf02005-10-10 06:00:30 +000033// 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.
Chris Lattnerd8fe3b32005-12-09 22:58:42 +000037class SDTCisFP<int OpNum> : SDTypeConstraint<OpNum>;
Chris Lattner17f2cf02005-10-10 06:00:30 +000038
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
Chris Lattner13664a62005-10-14 04:55:10 +000050class SDTCisOpSmallerThanOp<int SmallOp, int BigOp> : SDTypeConstraint<SmallOp>{
51 int BigOperandNum = BigOp;
52}
53
Chris Lattnerfa818d02006-03-20 05:40:45 +000054/// SDTCisIntVectorOfSameSize - This indicates that ThisOp and OtherOp are
Dan Gohman07a96762007-07-16 14:29:03 +000055/// vector types, and that ThisOp is the result of
Duncan Sands83ec4b62008-06-06 12:08:01 +000056/// MVT::getIntVectorWithNumElements with the number of elements
57/// that ThisOp has.
Chris Lattnerfa818d02006-03-20 05:40:45 +000058class SDTCisIntVectorOfSameSize<int ThisOp, int OtherOp>
59 : SDTypeConstraint<ThisOp> {
60 int OtherOpNum = OtherOp;
61}
62
Nate Begemanb5af3342008-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 Gohmane4c67cd2008-05-31 02:11:25 +000065class SDTCisEltOfVec<int ThisOp, int OtherOp>
Nate Begemanb5af3342008-02-09 01:37:05 +000066 : SDTypeConstraint<ThisOp> {
67 int OtherOpNum = OtherOp;
68}
69
Chris Lattner17f2cf02005-10-10 06:00:30 +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.
Chris Lattner84384542005-12-11 07:45:04 +000088def SDTIntLeaf: SDTypeProfile<1, 0, [SDTCisInt<0>]>; // for 'imm'.
Evan Cheng0a3a5e22006-01-05 02:07:49 +000089def SDTFPLeaf : SDTypeProfile<1, 0, [SDTCisFP<0>]>; // for 'fpimm'.
Chris Lattner84384542005-12-11 07:45:04 +000090def SDTPtrLeaf: SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>; // for '&g'.
Evan Chengf8ac8142005-12-04 08:13:17 +000091def SDTOther : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
Chris Lattner97898262005-10-25 21:03:14 +000092def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'.
Chris Lattnerc29e1262006-03-16 01:29:53 +000093def SDTUnaryOp : SDTypeProfile<1, 1, []>; // bitconvert
94
Chris Lattner17f2cf02005-10-10 06:00:30 +000095def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.
96 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
97]>;
Chris Lattner68bfd9c2005-12-05 02:37:26 +000098def SDTIntShiftOp : SDTypeProfile<1, 2, [ // shl, sra, srl
99 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisInt<2>
100]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000101def SDTFPBinOp : SDTypeProfile<1, 2, [ // fadd, fmul, etc.
102 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0>
103]>;
Andrew Lenharthd26b8f92006-03-09 17:47:22 +0000104def SDTFPSignOp : SDTypeProfile<1, 2, [ // fcopysign.
105 SDTCisSameAs<0, 1>, SDTCisFP<0>, SDTCisFP<2>
106]>;
Nate Begeman993aeb22005-12-13 22:55:22 +0000107def SDTFPTernaryOp : SDTypeProfile<1, 3, [ // fmadd, fnmsub, etc.
108 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, SDTCisFP<0>
109]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000110def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // ctlz
111 SDTCisSameAs<0, 1>, SDTCisInt<0>
112]>;
Chris Lattner444215d2005-10-14 06:40:20 +0000113def 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]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000119def SDTFPUnaryOp : SDTypeProfile<1, 1, [ // fneg, fsqrt, etc
120 SDTCisSameAs<0, 1>, SDTCisFP<0>
121]>;
Chris Lattner13664a62005-10-14 04:55:10 +0000122def 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]>;
Duraid Madinae2fd9e22005-11-01 03:07:25 +0000128def 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]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000134def SDTExtInreg : SDTypeProfile<1, 2, [ // sext_inreg
135 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>,
136 SDTCisVTSmallerThanOp<2, 1>
137]>;
138
Chris Lattner1f426de2005-10-26 17:00:25 +0000139def SDTSetCC : SDTypeProfile<1, 3, [ // setcc
140 SDTCisInt<0>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT>
141]>;
142
Duraid Madina59669552005-11-02 02:37:18 +0000143def SDTSelect : SDTypeProfile<1, 3, [ // select
144 SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>
145]>;
146
Chris Lattnerd2c339c2005-12-11 18:43:13 +0000147def SDTSelectCC : SDTypeProfile<1, 5, [ // select_cc
Chris Lattner3aed79e2005-12-11 08:35:54 +0000148 SDTCisSameAs<1, 2>, SDTCisSameAs<3, 4>, SDTCisSameAs<0, 3>,
149 SDTCisVT<5, OtherVT>
150]>;
151
Evan Chengf8ac8142005-12-04 08:13:17 +0000152def SDTBr : SDTypeProfile<0, 1, [ // br
153 SDTCisVT<0, OtherVT>
154]>;
155
Andrew Lenharth993ff1c2006-01-01 22:16:43 +0000156def SDTBrcond : SDTypeProfile<0, 2, [ // brcond
157 SDTCisInt<0>, SDTCisVT<1, OtherVT>
158]>;
159
Nate Begeman37efe672006-04-22 18:53:45 +0000160def SDTBrind : SDTypeProfile<0, 1, [ // brind
161 SDTCisPtrTy<0>
162]>;
163
Chris Lattner48be23c2008-01-15 22:02:54 +0000164def SDTNone : SDTypeProfile<0, 0, []>; // ret, trap
Evan Chengf8ac8142005-12-04 08:13:17 +0000165
Evan Chengf20da7e2005-12-08 04:28:48 +0000166def SDTLoad : SDTypeProfile<1, 1, [ // load
Chris Lattnerd8fe3b32005-12-09 22:58:42 +0000167 SDTCisPtrTy<1>
Evan Chengf20da7e2005-12-08 04:28:48 +0000168]>;
169
Evan Chengb51a0592005-12-10 00:48:20 +0000170def SDTStore : SDTypeProfile<0, 2, [ // store
Evan Chengb612ff92005-12-10 01:59:36 +0000171 SDTCisPtrTy<1>
Evan Chengb51a0592005-12-10 00:48:20 +0000172]>;
173
Evan Cheng81fd6072006-11-08 23:02:11 +0000174def SDTIStore : SDTypeProfile<1, 3, [ // indexed store
175 SDTCisSameAs<0, 2>, SDTCisPtrTy<0>, SDTCisPtrTy<3>
176]>;
177
Chris Lattnerfa818d02006-03-20 05:40:45 +0000178def SDTVecShuffle : SDTypeProfile<1, 3, [
179 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisIntVectorOfSameSize<3, 0>
180]>;
Nate Begemanb5af3342008-02-09 01:37:05 +0000181def SDTVecExtract : SDTypeProfile<1, 2, [ // vector extract
182 SDTCisEltOfVec<0, 1>, SDTCisPtrTy<2>
183]>;
Nate Begeman14d12ca2008-02-11 04:19:36 +0000184def SDTVecInsert : SDTypeProfile<1, 3, [ // vector insert
185 SDTCisEltOfVec<2, 1>, SDTCisSameAs<0, 1>, SDTCisPtrTy<3>
Nate Begemanb5af3342008-02-09 01:37:05 +0000186]>;
Chris Lattnerfa818d02006-03-20 05:40:45 +0000187
Evan Cheng27b7db52008-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 Lenharth22c5c1b2008-02-16 01:24:58 +0000193 SDTCisSameAs<0,1>, SDTCisSameAs<0,2>, SDTCisSameAs<0,3>, SDTCisSameAs<0,4>,
194 SDTCisInt<0>
195]>;
Andrew Lenharthab0b9492008-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 Lenharth22c5c1b2008-02-16 01:24:58 +0000202
Bill Wendlingc69107c2007-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
Chris Lattner17f2cf02005-10-10 06:00:30 +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)
Evan Chengf8ac8142005-12-04 08:13:17 +0000216def SDNPHasChain : SDNodeProperty; // R/W chain operand and result
Evan Cheng6da8d992006-01-09 18:28:21 +0000217def SDNPOutFlag : SDNodeProperty; // Write a flag result
218def SDNPInFlag : SDNodeProperty; // Read a flag operand
219def SDNPOptInFlag : SDNodeProperty; // Optionally read a flag operand
Chris Lattner2e48a702008-01-06 08:36:04 +0000220def SDNPMayStore : SDNodeProperty; // May write to memory, sets 'mayStore'.
Chris Lattner8947dd52008-01-10 04:44:32 +0000221def SDNPMayLoad : SDNodeProperty; // May read memory, sets 'mayLoad'.
Chris Lattnerb8f217f2008-01-10 05:48:23 +0000222def SDNPSideEffect : SDNodeProperty; // Sets 'HasUnmodelledSideEffects'.
Mon P Wang28873102008-06-25 08:15:39 +0000223def SDNPMemOperand : SDNodeProperty; // Touches memory, has assoc MemOperand
Chris Lattner17f2cf02005-10-10 06:00:30 +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 Chengd23aa5a2007-09-25 01:48:59 +0000237def implicit;
Evan Cheng85dbe1a2007-09-12 23:30:14 +0000238def parallel;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000239def node;
Evan Cheng3d2331d2005-12-14 02:21:01 +0000240def srcvalue;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000241
Chris Lattner84384542005-12-11 07:45:04 +0000242def imm : SDNode<"ISD::Constant" , SDTIntLeaf , [], "ConstantSDNode">;
Nate Begemane1795842008-02-14 08:57:00 +0000243def fpimm : SDNode<"ISD::ConstantFP", SDTFPLeaf , [], "ConstantFPSDNode">;
Evan Chengf8ac8142005-12-04 08:13:17 +0000244def vt : SDNode<"ISD::VALUETYPE" , SDTOther , [], "VTSDNode">;
245def bb : SDNode<"ISD::BasicBlock", SDTOther , [], "BasicBlockSDNode">;
246def cond : SDNode<"ISD::CONDCODE" , SDTOther , [], "CondCodeSDNode">;
Chris Lattner97898262005-10-25 21:03:14 +0000247def undef : SDNode<"ISD::UNDEF" , SDTUNDEF , []>;
Andrew Lenharth330851a2005-12-24 23:36:59 +0000248def globaladdr : SDNode<"ISD::GlobalAddress", SDTPtrLeaf, [],
Chris Lattnerdb40dc22005-11-17 07:20:15 +0000249 "GlobalAddressSDNode">;
Andrew Lenharth330851a2005-12-24 23:36:59 +0000250def tglobaladdr : SDNode<"ISD::TargetGlobalAddress", SDTPtrLeaf, [],
251 "GlobalAddressSDNode">;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000252def globaltlsaddr : SDNode<"ISD::GlobalTLSAddress", SDTPtrLeaf, [],
253 "GlobalAddressSDNode">;
254def tglobaltlsaddr : SDNode<"ISD::TargetGlobalTLSAddress", SDTPtrLeaf, [],
255 "GlobalAddressSDNode">;
Andrew Lenharth330851a2005-12-24 23:36:59 +0000256def constpool : SDNode<"ISD::ConstantPool", SDTPtrLeaf, [],
257 "ConstantPoolSDNode">;
258def tconstpool : SDNode<"ISD::TargetConstantPool", SDTPtrLeaf, [],
259 "ConstantPoolSDNode">;
Nate Begeman37efe672006-04-22 18:53:45 +0000260def jumptable : SDNode<"ISD::JumpTable", SDTPtrLeaf, [],
261 "JumpTableSDNode">;
262def tjumptable : SDNode<"ISD::TargetJumpTable", SDTPtrLeaf, [],
263 "JumpTableSDNode">;
Andrew Lenharth330851a2005-12-24 23:36:59 +0000264def 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
Chris Lattner17f2cf02005-10-10 06:00:30 +0000273def 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>;
Chris Lattner68bfd9c2005-12-05 02:37:26 +0000284def srl : SDNode<"ISD::SRL" , SDTIntShiftOp>;
285def sra : SDNode<"ISD::SRA" , SDTIntShiftOp>;
286def shl : SDNode<"ISD::SHL" , SDTIntShiftOp>;
Nate Begeman35ef9132006-01-11 21:21:00 +0000287def rotl : SDNode<"ISD::ROTL" , SDTIntShiftOp>;
288def rotr : SDNode<"ISD::ROTR" , SDTIntShiftOp>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000289def 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]>;
Nate Begeman551bf3f2006-02-17 05:43:56 +0000295def 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]>;
Chris Lattner444215d2005-10-14 06:40:20 +0000303
304def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>;
Nate Begemand88fc032006-01-14 03:14:10 +0000305def bswap : SDNode<"ISD::BSWAP" , SDTIntUnaryOp>;
Chris Lattner444215d2005-10-14 06:40:20 +0000306def ctlz : SDNode<"ISD::CTLZ" , SDTIntUnaryOp>;
Andrew Lenharthd684e1a2005-10-20 19:38:11 +0000307def cttz : SDNode<"ISD::CTTZ" , SDTIntUnaryOp>;
308def ctpop : SDNode<"ISD::CTPOP" , SDTIntUnaryOp>;
Chris Lattner444215d2005-10-14 06:40:20 +0000309def 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>;
Chris Lattnerc29e1262006-03-16 01:29:53 +0000313def bitconvert : SDNode<"ISD::BIT_CONVERT", SDTUnaryOp>;
Nate Begemanb5af3342008-02-09 01:37:05 +0000314def extractelt : SDNode<"ISD::EXTRACT_VECTOR_ELT", SDTVecExtract>;
315def insertelt : SDNode<"ISD::INSERT_VECTOR_ELT", SDTVecInsert>;
316
Chris Lattner444215d2005-10-14 06:40:20 +0000317
Chris Lattner17f2cf02005-10-10 06:00:30 +0000318def 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>;
Chris Lattner5c82f4d2005-12-21 16:22:46 +0000326def fsin : SDNode<"ISD::FSIN" , SDTFPUnaryOp>;
327def fcos : SDNode<"ISD::FCOS" , SDTFPUnaryOp>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000328
Chris Lattner13664a62005-10-14 04:55:10 +0000329def fround : SDNode<"ISD::FP_ROUND" , SDTFPRoundOp>;
330def fextend : SDNode<"ISD::FP_EXTEND" , SDTFPExtendOp>;
Andrew Lenharthd26b8f92006-03-09 17:47:22 +0000331def fcopysign : SDNode<"ISD::FCOPYSIGN" , SDTFPSignOp>;
Chris Lattner13664a62005-10-14 04:55:10 +0000332
Duraid Madinae2fd9e22005-11-01 03:07:25 +0000333def 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
Chris Lattner1f426de2005-10-26 17:00:25 +0000338def setcc : SDNode<"ISD::SETCC" , SDTSetCC>;
Duraid Madina59669552005-11-02 02:37:18 +0000339def select : SDNode<"ISD::SELECT" , SDTSelect>;
Chris Lattner3aed79e2005-12-11 08:35:54 +0000340def selectcc : SDNode<"ISD::SELECT_CC" , SDTSelectCC>;
Nate Begemanb43e9c12008-05-12 19:40:03 +0000341def vsetcc : SDNode<"ISD::VSETCC" , SDTSetCC>;
Chris Lattner1f426de2005-10-26 17:00:25 +0000342
Andrew Lenharth993ff1c2006-01-01 22:16:43 +0000343def brcond : SDNode<"ISD::BRCOND" , SDTBrcond, [SDNPHasChain]>;
Nate Begeman37efe672006-04-22 18:53:45 +0000344def brind : SDNode<"ISD::BRIND" , SDTBrind, [SDNPHasChain]>;
Evan Chengf8ac8142005-12-04 08:13:17 +0000345def br : SDNode<"ISD::BR" , SDTBr, [SDNPHasChain]>;
Chris Lattner48be23c2008-01-15 22:02:54 +0000346def ret : SDNode<"ISD::RET" , SDTNone, [SDNPHasChain]>;
347def trap : SDNode<"ISD::TRAP" , SDTNone,
348 [SDNPHasChain, SDNPSideEffect]>;
Evan Cheng27b7db52008-03-08 00:58:38 +0000349
350def prefetch : SDNode<"ISD::PREFETCH" , STDPrefetch,
351 [SDNPHasChain, SDNPMayLoad, SDNPMayStore]>;
352
353def membarrier : SDNode<"ISD::MEMBARRIER" , STDMemBarrier,
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +0000354 [SDNPHasChain, SDNPSideEffect]>;
Evan Cheng27b7db52008-03-08 00:58:38 +0000355
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000356// Do not use atomic_* directly, use atomic_*_size (see below)
Mon P Wang28873102008-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]>;
361def atomic_swap : SDNode<"ISD::ATOMIC_SWAP", STDAtomic2,
362 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
363def atomic_load_sub : SDNode<"ISD::ATOMIC_LOAD_SUB" , STDAtomic2,
364 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000365def atomic_load_and : SDNode<"ISD::ATOMIC_LOAD_AND" , STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000366 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000367def atomic_load_or : SDNode<"ISD::ATOMIC_LOAD_OR" , STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000368 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000369def atomic_load_xor : SDNode<"ISD::ATOMIC_LOAD_XOR" , STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000370 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Andrew Lenharth507a58a2008-06-14 05:48:15 +0000371def atomic_load_nand: SDNode<"ISD::ATOMIC_LOAD_NAND", STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000372 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000373def atomic_load_min : SDNode<"ISD::ATOMIC_LOAD_MIN", STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000374 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000375def atomic_load_max : SDNode<"ISD::ATOMIC_LOAD_MAX", STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000376 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000377def atomic_load_umin : SDNode<"ISD::ATOMIC_LOAD_UMIN", STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000378 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Mon P Wang63307c32008-05-05 19:05:59 +0000379def atomic_load_umax : SDNode<"ISD::ATOMIC_LOAD_UMAX", STDAtomic2,
Mon P Wang28873102008-06-25 08:15:39 +0000380 [SDNPHasChain, SDNPMayStore, SDNPMayLoad, SDNPMemOperand]>;
Evan Chengf8ac8142005-12-04 08:13:17 +0000381
Evan Cheng8b2794a2006-10-13 21:14:26 +0000382// Do not use ld, st directly. Use load, extload, sextload, zextload, store,
383// and truncst (see below).
Chris Lattner8947dd52008-01-10 04:44:32 +0000384def ld : SDNode<"ISD::LOAD" , SDTLoad,
Mon P Wang28873102008-06-25 08:15:39 +0000385 [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +0000386def st : SDNode<"ISD::STORE" , SDTStore,
Mon P Wang28873102008-06-25 08:15:39 +0000387 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +0000388def ist : SDNode<"ISD::STORE" , SDTIStore,
Mon P Wang28873102008-06-25 08:15:39 +0000389 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Evan Cheng3d2331d2005-12-14 02:21:01 +0000390
Chris Lattnerfa818d02006-03-20 05:40:45 +0000391def vector_shuffle : SDNode<"ISD::VECTOR_SHUFFLE", SDTVecShuffle, []>;
Duncan Sands53388fc2008-07-28 19:17:21 +0000392def build_vector : SDNode<"ISD::BUILD_VECTOR", SDTypeProfile<1, -1, []>, []>;
Evan Cheng811ec1c2006-03-21 00:33:35 +0000393def scalar_to_vector : SDNode<"ISD::SCALAR_TO_VECTOR", SDTypeProfile<1, 1, []>,
394 []>;
Evan Cheng1eda6e72006-03-31 19:21:16 +0000395def vector_extract : SDNode<"ISD::EXTRACT_VECTOR_ELT",
Evan Cheng31f7be92006-06-15 08:19:05 +0000396 SDTypeProfile<1, 2, [SDTCisPtrTy<2>]>, []>;
Evan Cheng1eda6e72006-03-31 19:21:16 +0000397def vector_insert : SDNode<"ISD::INSERT_VECTOR_ELT",
Evan Cheng31f7be92006-06-15 08:19:05 +0000398 SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>, SDTCisPtrTy<3>]>, []>;
Christopher Lamb557c3632007-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, []>>;
Chris Lattnerfa818d02006-03-20 05:40:45 +0000404
Chris Lattnerea93f632006-03-25 02:29:35 +0000405// Nodes for intrinsics, you should use the intrinsic itself and let tblgen use
406// these internally. Don't reference these directly.
Chris Lattner48b61a72006-03-28 00:40:33 +0000407def intrinsic_void : SDNode<"ISD::INTRINSIC_VOID",
Chris Lattnerea93f632006-03-25 02:29:35 +0000408 SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>,
409 [SDNPHasChain]>;
Chris Lattner48b61a72006-03-28 00:40:33 +0000410def intrinsic_w_chain : SDNode<"ISD::INTRINSIC_W_CHAIN",
Chris Lattnerea93f632006-03-25 02:29:35 +0000411 SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>,
412 [SDNPHasChain]>;
Chris Lattner48b61a72006-03-28 00:40:33 +0000413def intrinsic_wo_chain : SDNode<"ISD::INTRINSIC_WO_CHAIN",
Chris Lattnerea93f632006-03-25 02:29:35 +0000414 SDTypeProfile<1, -1, [SDTCisPtrTy<1>]>, []>;
415
416
Chris Lattner1f426de2005-10-26 17:00:25 +0000417//===----------------------------------------------------------------------===//
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
Chris Lattner17f2cf02005-10-10 06:00:30 +0000431//===----------------------------------------------------------------------===//
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 Sands83ec4b62008-06-06 12:08:01 +0000473def vtInt : PatLeaf<(vt), [{ return N->getVT().isInteger(); }]>;
474def vtFP : PatLeaf<(vt), [{ return N->getVT().isFloatingPoint(); }]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000475
Chris Lattnerc985d822006-03-25 23:00:08 +0000476def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
477def immAllOnesV: PatLeaf<(build_vector), [{
Evan Cheng999f3b52006-03-27 06:59:32 +0000478 return ISD::isBuildVectorAllOnes(N);
Chris Lattnerc985d822006-03-25 23:00:08 +0000479}]>;
Chris Lattner1fcee4e2006-04-15 23:39:14 +0000480def immAllOnesV_bc: PatLeaf<(bitconvert), [{
481 return ISD::isBuildVectorAllOnes(N);
482}]>;
Chris Lattnerffc04d32007-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
Chris Lattner1fcee4e2006-04-15 23:39:14 +0000490
491
Chris Lattnerc985d822006-03-25 23:00:08 +0000492// Other helper fragments.
Chris Lattner17f2cf02005-10-10 06:00:30 +0000493def not : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>;
Chris Lattnerc985d822006-03-25 23:00:08 +0000494def vnot : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV)>;
Chris Lattner1fcee4e2006-04-15 23:39:14 +0000495def vnot_conv : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV_bc)>;
Chris Lattnereae6d642005-10-20 23:30:37 +0000496def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000497
Evan Cheng87e08132006-10-26 21:55:50 +0000498// load fragments.
Evan Cheng466685d2006-10-09 20:57:25 +0000499def load : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000500 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
501 return LD->getExtensionType() == ISD::NON_EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000502 LD->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng87e08132006-10-26 21:55:50 +0000503 return false;
Evan Cheng466685d2006-10-09 20:57:25 +0000504}]>;
505
Evan Cheng8b2794a2006-10-13 21:14:26 +0000506// extending load fragments.
Evan Cheng466685d2006-10-09 20:57:25 +0000507def extloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000508 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
509 return LD->getExtensionType() == ISD::EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000510 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000511 LD->getMemoryVT() == MVT::i1;
Evan Cheng466685d2006-10-09 20:57:25 +0000512 return false;
513}]>;
514def extloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000515 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
516 return LD->getExtensionType() == ISD::EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000517 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000518 LD->getMemoryVT() == MVT::i8;
Evan Cheng466685d2006-10-09 20:57:25 +0000519 return false;
520}]>;
521def extloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000522 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
523 return LD->getExtensionType() == ISD::EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000524 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000525 LD->getMemoryVT() == MVT::i16;
Evan Cheng466685d2006-10-09 20:57:25 +0000526 return false;
527}]>;
528def extloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000529 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
530 return LD->getExtensionType() == ISD::EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000531 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000532 LD->getMemoryVT() == MVT::i32;
Evan Cheng466685d2006-10-09 20:57:25 +0000533 return false;
534}]>;
535def extloadf32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000536 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
537 return LD->getExtensionType() == ISD::EXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000538 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000539 LD->getMemoryVT() == MVT::f32;
Evan Cheng466685d2006-10-09 20:57:25 +0000540 return false;
541}]>;
Dale Johannesen59a58732007-08-05 18:49:15 +0000542def extloadf64 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
543 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
544 return LD->getExtensionType() == ISD::EXTLOAD &&
545 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000546 LD->getMemoryVT() == MVT::f64;
Dale Johannesen59a58732007-08-05 18:49:15 +0000547 return false;
548}]>;
Evan Cheng466685d2006-10-09 20:57:25 +0000549
Evan Cheng87e08132006-10-26 21:55:50 +0000550def sextloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
551 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
552 return LD->getExtensionType() == ISD::SEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000553 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000554 LD->getMemoryVT() == MVT::i1;
Evan Cheng466685d2006-10-09 20:57:25 +0000555 return false;
556}]>;
Evan Cheng87e08132006-10-26 21:55:50 +0000557def sextloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
558 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
559 return LD->getExtensionType() == ISD::SEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000560 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000561 LD->getMemoryVT() == MVT::i8;
Evan Cheng466685d2006-10-09 20:57:25 +0000562 return false;
563}]>;
564def sextloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000565 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
566 return LD->getExtensionType() == ISD::SEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000567 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000568 LD->getMemoryVT() == MVT::i16;
Evan Cheng466685d2006-10-09 20:57:25 +0000569 return false;
570}]>;
571def sextloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000572 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
573 return LD->getExtensionType() == ISD::SEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000574 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000575 LD->getMemoryVT() == MVT::i32;
Evan Cheng466685d2006-10-09 20:57:25 +0000576 return false;
577}]>;
578
Evan Cheng87e08132006-10-26 21:55:50 +0000579def zextloadi1 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
580 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
581 return LD->getExtensionType() == ISD::ZEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000582 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000583 LD->getMemoryVT() == MVT::i1;
Evan Cheng466685d2006-10-09 20:57:25 +0000584 return false;
585}]>;
Evan Cheng87e08132006-10-26 21:55:50 +0000586def zextloadi8 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
587 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
588 return LD->getExtensionType() == ISD::ZEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000589 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000590 LD->getMemoryVT() == MVT::i8;
Evan Cheng466685d2006-10-09 20:57:25 +0000591 return false;
592}]>;
593def zextloadi16 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000594 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
595 return LD->getExtensionType() == ISD::ZEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000596 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000597 LD->getMemoryVT() == MVT::i16;
Evan Cheng466685d2006-10-09 20:57:25 +0000598 return false;
599}]>;
600def zextloadi32 : PatFrag<(ops node:$ptr), (ld node:$ptr), [{
Evan Cheng87e08132006-10-26 21:55:50 +0000601 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
602 return LD->getExtensionType() == ISD::ZEXTLOAD &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000603 LD->getAddressingMode() == ISD::UNINDEXED &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000604 LD->getMemoryVT() == MVT::i32;
Evan Cheng466685d2006-10-09 20:57:25 +0000605 return false;
606}]>;
607
Evan Cheng87e08132006-10-26 21:55:50 +0000608// store fragments.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000609def store : PatFrag<(ops node:$val, node:$ptr),
610 (st node:$val, node:$ptr), [{
Evan Cheng81fd6072006-11-08 23:02:11 +0000611 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Chris Lattnerfc14b312006-11-14 19:13:39 +0000612 return !ST->isTruncatingStore() &&
613 ST->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng81fd6072006-11-08 23:02:11 +0000614 return false;
Evan Cheng8b2794a2006-10-13 21:14:26 +0000615}]>;
616
617// truncstore fragments.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000618def truncstorei8 : PatFrag<(ops node:$val, node:$ptr),
619 (st node:$val, node:$ptr), [{
Evan Cheng81fd6072006-11-08 23:02:11 +0000620 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000621 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8 &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000622 ST->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng8b2794a2006-10-13 21:14:26 +0000623 return false;
624}]>;
625def truncstorei16 : PatFrag<(ops node:$val, node:$ptr),
626 (st node:$val, node:$ptr), [{
Evan Cheng81fd6072006-11-08 23:02:11 +0000627 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000628 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16 &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000629 ST->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng8b2794a2006-10-13 21:14:26 +0000630 return false;
631}]>;
632def truncstorei32 : PatFrag<(ops node:$val, node:$ptr),
633 (st node:$val, node:$ptr), [{
Evan Cheng81fd6072006-11-08 23:02:11 +0000634 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000635 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32 &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000636 ST->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng8b2794a2006-10-13 21:14:26 +0000637 return false;
638}]>;
639def truncstoref32 : PatFrag<(ops node:$val, node:$ptr),
640 (st node:$val, node:$ptr), [{
Evan Cheng81fd6072006-11-08 23:02:11 +0000641 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000642 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32 &&
Chris Lattnerfc14b312006-11-14 19:13:39 +0000643 ST->getAddressingMode() == ISD::UNINDEXED;
Evan Cheng81fd6072006-11-08 23:02:11 +0000644 return false;
645}]>;
Dale Johannesen59a58732007-08-05 18:49:15 +0000646def truncstoref64 : PatFrag<(ops node:$val, node:$ptr),
647 (st node:$val, node:$ptr), [{
648 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N))
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000649 return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f64 &&
Dale Johannesen59a58732007-08-05 18:49:15 +0000650 ST->getAddressingMode() == ISD::UNINDEXED;
651 return false;
652}]>;
Evan Cheng81fd6072006-11-08 23:02:11 +0000653
654// indexed store fragments.
655def pre_store : PatFrag<(ops node:$val, node:$base, node:$offset),
656 (ist node:$val, node:$base, node:$offset), [{
657 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000658 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000659 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
660 !ST->isTruncatingStore();
661 }
662 return false;
663}]>;
664
665def pre_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
666 (ist node:$val, node:$base, node:$offset), [{
667 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000668 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000669 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000670 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i1;
Evan Cheng81fd6072006-11-08 23:02:11 +0000671 }
672 return false;
673}]>;
674def pre_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
675 (ist node:$val, node:$base, node:$offset), [{
676 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000677 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000678 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000679 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8;
Evan Cheng81fd6072006-11-08 23:02:11 +0000680 }
681 return false;
682}]>;
683def pre_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
684 (ist node:$val, node:$base, node:$offset), [{
685 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000686 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000687 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000688 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16;
Evan Cheng81fd6072006-11-08 23:02:11 +0000689 }
690 return false;
691}]>;
692def pre_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
693 (ist node:$val, node:$base, node:$offset), [{
694 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000695 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000696 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000697 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32;
Evan Cheng81fd6072006-11-08 23:02:11 +0000698 }
699 return false;
700}]>;
701def pre_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
702 (ist node:$val, node:$base, node:$offset), [{
703 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000704 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000705 return (AM == ISD::PRE_INC || AM == ISD::PRE_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000706 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32;
Evan Cheng81fd6072006-11-08 23:02:11 +0000707 }
708 return false;
709}]>;
710
711def post_store : PatFrag<(ops node:$val, node:$ptr, node:$offset),
712 (ist node:$val, node:$ptr, node:$offset), [{
713 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000714 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000715 return !ST->isTruncatingStore() &&
716 (AM == ISD::POST_INC || AM == ISD::POST_DEC);
717 }
718 return false;
719}]>;
720
721def post_truncsti1 : PatFrag<(ops node:$val, node:$base, node:$offset),
722 (ist node:$val, node:$base, node:$offset), [{
723 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000724 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000725 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000726 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i1;
Evan Cheng81fd6072006-11-08 23:02:11 +0000727 }
728 return false;
729}]>;
730def post_truncsti8 : PatFrag<(ops node:$val, node:$base, node:$offset),
731 (ist node:$val, node:$base, node:$offset), [{
732 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000733 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000734 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000735 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i8;
Evan Cheng81fd6072006-11-08 23:02:11 +0000736 }
737 return false;
738}]>;
739def post_truncsti16 : PatFrag<(ops node:$val, node:$base, node:$offset),
740 (ist node:$val, node:$base, node:$offset), [{
741 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000742 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000743 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000744 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i16;
Evan Cheng81fd6072006-11-08 23:02:11 +0000745 }
746 return false;
747}]>;
748def post_truncsti32 : PatFrag<(ops node:$val, node:$base, node:$offset),
749 (ist node:$val, node:$base, node:$offset), [{
750 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000751 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000752 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000753 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32;
Evan Cheng81fd6072006-11-08 23:02:11 +0000754 }
755 return false;
756}]>;
757def post_truncstf32 : PatFrag<(ops node:$val, node:$base, node:$offset),
758 (ist node:$val, node:$base, node:$offset), [{
759 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Evan Cheng00305822006-11-09 18:44:21 +0000760 ISD::MemIndexedMode AM = ST->getAddressingMode();
Evan Cheng81fd6072006-11-08 23:02:11 +0000761 return (AM == ISD::POST_INC || AM == ISD::POST_DEC) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000762 ST->isTruncatingStore() && ST->getMemoryVT() == MVT::f32;
Evan Cheng81fd6072006-11-08 23:02:11 +0000763 }
Evan Cheng8b2794a2006-10-13 21:14:26 +0000764 return false;
765}]>;
Chris Lattner1f426de2005-10-26 17:00:25 +0000766
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000767//Atomic patterns
Mon P Wang28873102008-06-25 08:15:39 +0000768def atomic_cmp_swap_8 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
769 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000770 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000771 return V->getValueType(0) == MVT::i8;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000772 return false;
773}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000774def atomic_cmp_swap_16 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
775 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000776 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000777 return V->getValueType(0) == MVT::i16;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000778 return false;
779}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000780def atomic_cmp_swap_32 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
781 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000782 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000783 return V->getValueType(0) == MVT::i32;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000784 return false;
785}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000786def atomic_cmp_swap_64 : PatFrag<(ops node:$ptr, node:$cmp, node:$swp),
787 (atomic_cmp_swap node:$ptr, node:$cmp, node:$swp), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000788 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000789 return V->getValueType(0) == MVT::i64;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000790 return false;
791}]>;
792
Mon P Wang28873102008-06-25 08:15:39 +0000793def atomic_load_add_8 : PatFrag<(ops node:$ptr, node:$inc),
794 (atomic_load_add node:$ptr, node:$inc), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000795 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000796 return V->getValueType(0) == MVT::i8;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000797 return false;
798}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000799def atomic_load_add_16 : PatFrag<(ops node:$ptr, node:$inc),
800 (atomic_load_add node:$ptr, node:$inc), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000801 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000802 return V->getValueType(0) == MVT::i16;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000803 return false;
804}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000805def atomic_load_add_32 : PatFrag<(ops node:$ptr, node:$inc),
806 (atomic_load_add node:$ptr, node:$inc), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000807 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000808 return V->getValueType(0) == MVT::i32;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000809 return false;
810}]>;
Mon P Wang28873102008-06-25 08:15:39 +0000811def atomic_load_add_64 : PatFrag<(ops node:$ptr, node:$inc),
812 (atomic_load_add node:$ptr, node:$inc), [{
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000813 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000814 return V->getValueType(0) == MVT::i64;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000815 return false;
816}]>;
817
818def atomic_swap_8 : PatFrag<(ops node:$ptr, node:$inc),
819 (atomic_swap node:$ptr, node:$inc), [{
820 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000821 return V->getValueType(0) == MVT::i8;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000822 return false;
823}]>;
824def atomic_swap_16 : PatFrag<(ops node:$ptr, node:$inc),
825 (atomic_swap node:$ptr, node:$inc), [{
826 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000827 return V->getValueType(0) == MVT::i16;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000828 return false;
829}]>;
830def atomic_swap_32 : PatFrag<(ops node:$ptr, node:$inc),
831 (atomic_swap node:$ptr, node:$inc), [{
832 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000833 return V->getValueType(0) == MVT::i32;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000834 return false;
835}]>;
836def atomic_swap_64 : PatFrag<(ops node:$ptr, node:$inc),
837 (atomic_swap node:$ptr, node:$inc), [{
838 if (AtomicSDNode* V = dyn_cast<AtomicSDNode>(N))
Dan Gohmanfd4418f2008-06-25 16:07:49 +0000839 return V->getValueType(0) == MVT::i64;
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000840 return false;
841}]>;
842
843
844
Chris Lattner1f426de2005-10-26 17:00:25 +0000845// setcc convenience fragments.
846def setoeq : PatFrag<(ops node:$lhs, node:$rhs),
847 (setcc node:$lhs, node:$rhs, SETOEQ)>;
848def setogt : PatFrag<(ops node:$lhs, node:$rhs),
849 (setcc node:$lhs, node:$rhs, SETOGT)>;
850def setoge : PatFrag<(ops node:$lhs, node:$rhs),
851 (setcc node:$lhs, node:$rhs, SETOGE)>;
852def setolt : PatFrag<(ops node:$lhs, node:$rhs),
853 (setcc node:$lhs, node:$rhs, SETOLT)>;
854def setole : PatFrag<(ops node:$lhs, node:$rhs),
855 (setcc node:$lhs, node:$rhs, SETOLE)>;
856def setone : PatFrag<(ops node:$lhs, node:$rhs),
857 (setcc node:$lhs, node:$rhs, SETONE)>;
858def seto : PatFrag<(ops node:$lhs, node:$rhs),
859 (setcc node:$lhs, node:$rhs, SETO)>;
860def setuo : PatFrag<(ops node:$lhs, node:$rhs),
861 (setcc node:$lhs, node:$rhs, SETUO)>;
862def setueq : PatFrag<(ops node:$lhs, node:$rhs),
863 (setcc node:$lhs, node:$rhs, SETUEQ)>;
864def setugt : PatFrag<(ops node:$lhs, node:$rhs),
865 (setcc node:$lhs, node:$rhs, SETUGT)>;
866def setuge : PatFrag<(ops node:$lhs, node:$rhs),
867 (setcc node:$lhs, node:$rhs, SETUGE)>;
868def setult : PatFrag<(ops node:$lhs, node:$rhs),
869 (setcc node:$lhs, node:$rhs, SETULT)>;
870def setule : PatFrag<(ops node:$lhs, node:$rhs),
871 (setcc node:$lhs, node:$rhs, SETULE)>;
872def setune : PatFrag<(ops node:$lhs, node:$rhs),
873 (setcc node:$lhs, node:$rhs, SETUNE)>;
874def seteq : PatFrag<(ops node:$lhs, node:$rhs),
875 (setcc node:$lhs, node:$rhs, SETEQ)>;
876def setgt : PatFrag<(ops node:$lhs, node:$rhs),
877 (setcc node:$lhs, node:$rhs, SETGT)>;
878def setge : PatFrag<(ops node:$lhs, node:$rhs),
879 (setcc node:$lhs, node:$rhs, SETGE)>;
880def setlt : PatFrag<(ops node:$lhs, node:$rhs),
881 (setcc node:$lhs, node:$rhs, SETLT)>;
882def setle : PatFrag<(ops node:$lhs, node:$rhs),
883 (setcc node:$lhs, node:$rhs, SETLE)>;
884def setne : PatFrag<(ops node:$lhs, node:$rhs),
885 (setcc node:$lhs, node:$rhs, SETNE)>;
886
Chris Lattner17f2cf02005-10-10 06:00:30 +0000887//===----------------------------------------------------------------------===//
888// Selection DAG Pattern Support.
889//
890// Patterns are what are actually matched against the target-flavored
891// instruction selection DAG. Instructions defined by the target implicitly
892// define patterns in most cases, but patterns can also be explicitly added when
893// an operation is defined by a sequence of instructions (e.g. loading a large
894// immediate value on RISC targets that do not support immediates as large as
895// their GPRs).
896//
897
898class Pattern<dag patternToMatch, list<dag> resultInstrs> {
Evan Chengf5e1dc22006-04-19 20:38:28 +0000899 dag PatternToMatch = patternToMatch;
900 list<dag> ResultInstrs = resultInstrs;
901 list<Predicate> Predicates = []; // See class Instruction in Target.td.
902 int AddedComplexity = 0; // See class Instruction in Target.td.
Chris Lattner17f2cf02005-10-10 06:00:30 +0000903}
904
905// Pat - A simple (but common) form of a pattern, which produces a simple result
906// not needing a full list.
907class Pat<dag pattern, dag result> : Pattern<pattern, [result]>;
908
Evan Chengf20da7e2005-12-08 04:28:48 +0000909//===----------------------------------------------------------------------===//
910// Complex pattern definitions.
911//
Christopher Lamb85356242008-01-31 07:27:46 +0000912
913class CPAttribute;
914// Pass the parent Operand as root to CP function rather
915// than the root of the sub-DAG
916def CPAttrParentAsRoot : CPAttribute;
917
Evan Chengf20da7e2005-12-08 04:28:48 +0000918// Complex patterns, e.g. X86 addressing mode, requires pattern matching code
919// in C++. NumOperands is the number of operands returned by the select function;
920// SelectFunc is the name of the function used to pattern match the max. pattern;
921// RootNodes are the list of possible root nodes of the sub-dags to match.
922// e.g. X86 addressing mode - def addr : ComplexPattern<4, "SelectAddr", [add]>;
923//
Evan Chengaf9db752006-10-11 21:03:53 +0000924class ComplexPattern<ValueType ty, int numops, string fn,
Christopher Lamb85356242008-01-31 07:27:46 +0000925 list<SDNode> roots = [], list<SDNodeProperty> props = [],
926 list<CPAttribute> attrs = []> {
Evan Chengf20da7e2005-12-08 04:28:48 +0000927 ValueType Ty = ty;
928 int NumOperands = numops;
929 string SelectFunc = fn;
930 list<SDNode> RootNodes = roots;
Evan Chengaf9db752006-10-11 21:03:53 +0000931 list<SDNodeProperty> Properties = props;
Christopher Lamb85356242008-01-31 07:27:46 +0000932 list<CPAttribute> Attributes = attrs;
Evan Chengf20da7e2005-12-08 04:28:48 +0000933}
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000934
935//===----------------------------------------------------------------------===//
936// Dwarf support.
937//
Jim Laskeyabf6d172006-01-05 01:25:28 +0000938def SDT_dwarf_loc : SDTypeProfile<0, 3,
939 [SDTCisInt<0>, SDTCisInt<1>, SDTCisInt<2>]>;
940def dwarf_loc : SDNode<"ISD::DEBUG_LOC", SDT_dwarf_loc,[SDNPHasChain]>;