blob: f27fc90b18c7b0b1a0fc65d8b5aa1dcbe7644ec8 [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'.
71def SDTVT : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'
72def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.
73 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
74]>;
75def SDTFPBinOp : SDTypeProfile<1, 2, [ // fadd, fmul, etc.
76 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0>
77]>;
78def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // ctlz
79 SDTCisSameAs<0, 1>, SDTCisInt<0>
80]>;
Chris Lattner444215d2005-10-14 06:40:20 +000081def SDTIntExtendOp : SDTypeProfile<1, 1, [ // sext, zext, anyext
82 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<1, 0>
83]>;
84def SDTIntTruncOp : SDTypeProfile<1, 1, [ // trunc
85 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<0, 1>
86]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +000087def SDTFPUnaryOp : SDTypeProfile<1, 1, [ // fneg, fsqrt, etc
88 SDTCisSameAs<0, 1>, SDTCisFP<0>
89]>;
Chris Lattner13664a62005-10-14 04:55:10 +000090def SDTFPRoundOp : SDTypeProfile<1, 1, [ // fround
91 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<0, 1>
92]>;
93def SDTFPExtendOp : SDTypeProfile<1, 1, [ // fextend
94 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<1, 0>
95]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +000096def SDTExtInreg : SDTypeProfile<1, 2, [ // sext_inreg
97 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>,
98 SDTCisVTSmallerThanOp<2, 1>
99]>;
100
101//===----------------------------------------------------------------------===//
102// Selection DAG Node Properties.
103//
104// Note: These are hard coded into tblgen.
105//
106class SDNodeProperty;
107def SDNPCommutative : SDNodeProperty; // X op Y == Y op X
108def SDNPAssociative : SDNodeProperty; // (X op Y) op Z == X op (Y op Z)
109
110//===----------------------------------------------------------------------===//
111// Selection DAG Node definitions.
112//
113class SDNode<string opcode, SDTypeProfile typeprof,
114 list<SDNodeProperty> props = [], string sdclass = "SDNode"> {
115 string Opcode = opcode;
116 string SDClass = sdclass;
117 list<SDNodeProperty> Properties = props;
118 SDTypeProfile TypeProfile = typeprof;
119}
120
121def set;
122def node;
123
124def imm : SDNode<"ISD::Constant" , SDTImm , [], "ConstantSDNode">;
125def vt : SDNode<"ISD::VALUETYPE" , SDTVT , [], "VTSDNode">;
126def add : SDNode<"ISD::ADD" , SDTIntBinOp ,
127 [SDNPCommutative, SDNPAssociative]>;
128def sub : SDNode<"ISD::SUB" , SDTIntBinOp>;
129def mul : SDNode<"ISD::MUL" , SDTIntBinOp,
130 [SDNPCommutative, SDNPAssociative]>;
131def mulhs : SDNode<"ISD::MULHS" , SDTIntBinOp, [SDNPCommutative]>;
132def mulhu : SDNode<"ISD::MULHU" , SDTIntBinOp, [SDNPCommutative]>;
133def sdiv : SDNode<"ISD::SDIV" , SDTIntBinOp>;
134def udiv : SDNode<"ISD::UDIV" , SDTIntBinOp>;
135def srem : SDNode<"ISD::SREM" , SDTIntBinOp>;
136def urem : SDNode<"ISD::UREM" , SDTIntBinOp>;
137def srl : SDNode<"ISD::SRL" , SDTIntBinOp>;
138def sra : SDNode<"ISD::SRA" , SDTIntBinOp>;
139def shl : SDNode<"ISD::SHL" , SDTIntBinOp>;
140def and : SDNode<"ISD::AND" , SDTIntBinOp,
141 [SDNPCommutative, SDNPAssociative]>;
142def or : SDNode<"ISD::OR" , SDTIntBinOp,
143 [SDNPCommutative, SDNPAssociative]>;
144def xor : SDNode<"ISD::XOR" , SDTIntBinOp,
145 [SDNPCommutative, SDNPAssociative]>;
Chris Lattner444215d2005-10-14 06:40:20 +0000146
147def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>;
148def ctlz : SDNode<"ISD::CTLZ" , SDTIntUnaryOp>;
Andrew Lenharthd684e1a2005-10-20 19:38:11 +0000149def cttz : SDNode<"ISD::CTTZ" , SDTIntUnaryOp>;
150def ctpop : SDNode<"ISD::CTPOP" , SDTIntUnaryOp>;
Chris Lattner444215d2005-10-14 06:40:20 +0000151def sext : SDNode<"ISD::SIGN_EXTEND", SDTIntExtendOp>;
152def zext : SDNode<"ISD::ZERO_EXTEND", SDTIntExtendOp>;
153def anyext : SDNode<"ISD::ANY_EXTEND" , SDTIntExtendOp>;
154def trunc : SDNode<"ISD::TRUNCATE" , SDTIntTruncOp>;
155
Chris Lattner17f2cf02005-10-10 06:00:30 +0000156def fadd : SDNode<"ISD::FADD" , SDTFPBinOp, [SDNPCommutative]>;
157def fsub : SDNode<"ISD::FSUB" , SDTFPBinOp>;
158def fmul : SDNode<"ISD::FMUL" , SDTFPBinOp, [SDNPCommutative]>;
159def fdiv : SDNode<"ISD::FDIV" , SDTFPBinOp>;
160def frem : SDNode<"ISD::FREM" , SDTFPBinOp>;
161def fabs : SDNode<"ISD::FABS" , SDTFPUnaryOp>;
162def fneg : SDNode<"ISD::FNEG" , SDTFPUnaryOp>;
163def fsqrt : SDNode<"ISD::FSQRT" , SDTFPUnaryOp>;
164
Chris Lattner13664a62005-10-14 04:55:10 +0000165def fround : SDNode<"ISD::FP_ROUND" , SDTFPRoundOp>;
166def fextend : SDNode<"ISD::FP_EXTEND" , SDTFPExtendOp>;
167
Chris Lattner17f2cf02005-10-10 06:00:30 +0000168//===----------------------------------------------------------------------===//
169// Selection DAG Node Transformation Functions.
170//
171// This mechanism allows targets to manipulate nodes in the output DAG once a
172// match has been formed. This is typically used to manipulate immediate
173// values.
174//
175class SDNodeXForm<SDNode opc, code xformFunction> {
176 SDNode Opcode = opc;
177 code XFormFunction = xformFunction;
178}
179
180def NOOP_SDNodeXForm : SDNodeXForm<imm, [{}]>;
181
182
183//===----------------------------------------------------------------------===//
184// Selection DAG Pattern Fragments.
185//
186// Pattern fragments are reusable chunks of dags that match specific things.
187// They can take arguments and have C++ predicates that control whether they
188// match. They are intended to make the patterns for common instructions more
189// compact and readable.
190//
191
192/// PatFrag - Represents a pattern fragment. This can match something on the
193/// DAG, frame a single node to multiply nested other fragments.
194///
195class PatFrag<dag ops, dag frag, code pred = [{}],
196 SDNodeXForm xform = NOOP_SDNodeXForm> {
197 dag Operands = ops;
198 dag Fragment = frag;
199 code Predicate = pred;
200 SDNodeXForm OperandTransform = xform;
201}
202
203// PatLeaf's are pattern fragments that have no operands. This is just a helper
204// to define immediates and other common things concisely.
205class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm>
206 : PatFrag<(ops), frag, pred, xform>;
207
208// Leaf fragments.
209
210def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000211
212def vtInt : PatLeaf<(vt), [{ return MVT::isInteger(N->getVT()); }]>;
213def vtFP : PatLeaf<(vt), [{ return MVT::isFloatingPoint(N->getVT()); }]>;
214
215// Other helper fragments.
216
217def not : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>;
Chris Lattnereae6d642005-10-20 23:30:37 +0000218def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000219
220//===----------------------------------------------------------------------===//
221// Selection DAG Pattern Support.
222//
223// Patterns are what are actually matched against the target-flavored
224// instruction selection DAG. Instructions defined by the target implicitly
225// define patterns in most cases, but patterns can also be explicitly added when
226// an operation is defined by a sequence of instructions (e.g. loading a large
227// immediate value on RISC targets that do not support immediates as large as
228// their GPRs).
229//
230
231class Pattern<dag patternToMatch, list<dag> resultInstrs> {
232 dag PatternToMatch = patternToMatch;
233 list<dag> ResultInstrs = resultInstrs;
234}
235
236// Pat - A simple (but common) form of a pattern, which produces a simple result
237// not needing a full list.
238class Pat<dag pattern, dag result> : Pattern<pattern, [result]>;
239