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