blob: 83f559300d925877e67fd094cf250cf45d17fa20 [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.
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 Lattner17f2cf02005-10-10 06:00:30 +000054//===----------------------------------------------------------------------===//
55// Selection DAG Type Profile definitions.
56//
57// These use the constraints defined above to describe the type requirements of
58// the various nodes. These are not hard coded into tblgen, allowing targets to
59// add their own if needed.
60//
61
62// SDTypeProfile - This profile describes the type requirements of a Selection
63// DAG node.
64class SDTypeProfile<int numresults, int numoperands,
65 list<SDTypeConstraint> constraints> {
66 int NumResults = numresults;
67 int NumOperands = numoperands;
68 list<SDTypeConstraint> Constraints = constraints;
69}
70
71// Builtin profiles.
Chris Lattner84384542005-12-11 07:45:04 +000072def SDTIntLeaf: SDTypeProfile<1, 0, [SDTCisInt<0>]>; // for 'imm'.
73def SDTPtrLeaf: SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>; // for '&g'.
Evan Chengf8ac8142005-12-04 08:13:17 +000074def SDTOther : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
Chris Lattner97898262005-10-25 21:03:14 +000075def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'.
Chris Lattner17f2cf02005-10-10 06:00:30 +000076def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.
77 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
78]>;
Chris Lattner68bfd9c2005-12-05 02:37:26 +000079def SDTIntShiftOp : SDTypeProfile<1, 2, [ // shl, sra, srl
80 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisInt<2>
81]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +000082def SDTFPBinOp : SDTypeProfile<1, 2, [ // fadd, fmul, etc.
83 SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisFP<0>
84]>;
85def SDTIntUnaryOp : SDTypeProfile<1, 1, [ // ctlz
86 SDTCisSameAs<0, 1>, SDTCisInt<0>
87]>;
Chris Lattner444215d2005-10-14 06:40:20 +000088def SDTIntExtendOp : SDTypeProfile<1, 1, [ // sext, zext, anyext
89 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<1, 0>
90]>;
91def SDTIntTruncOp : SDTypeProfile<1, 1, [ // trunc
92 SDTCisInt<0>, SDTCisInt<1>, SDTCisOpSmallerThanOp<0, 1>
93]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +000094def SDTFPUnaryOp : SDTypeProfile<1, 1, [ // fneg, fsqrt, etc
95 SDTCisSameAs<0, 1>, SDTCisFP<0>
96]>;
Chris Lattner13664a62005-10-14 04:55:10 +000097def SDTFPRoundOp : SDTypeProfile<1, 1, [ // fround
98 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<0, 1>
99]>;
100def SDTFPExtendOp : SDTypeProfile<1, 1, [ // fextend
101 SDTCisFP<0>, SDTCisFP<1>, SDTCisOpSmallerThanOp<1, 0>
102]>;
Duraid Madinae2fd9e22005-11-01 03:07:25 +0000103def SDTIntToFPOp : SDTypeProfile<1, 1, [ // [su]int_to_fp
104 SDTCisFP<0>, SDTCisInt<1>
105]>;
106def SDTFPToIntOp : SDTypeProfile<1, 1, [ // fp_to_[su]int
107 SDTCisInt<0>, SDTCisFP<1>
108]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000109def SDTExtInreg : SDTypeProfile<1, 2, [ // sext_inreg
110 SDTCisSameAs<0, 1>, SDTCisInt<0>, SDTCisVT<2, OtherVT>,
111 SDTCisVTSmallerThanOp<2, 1>
112]>;
113
Chris Lattner1f426de2005-10-26 17:00:25 +0000114def SDTSetCC : SDTypeProfile<1, 3, [ // setcc
115 SDTCisInt<0>, SDTCisSameAs<1, 2>, SDTCisVT<3, OtherVT>
116]>;
117
Duraid Madina59669552005-11-02 02:37:18 +0000118def SDTSelect : SDTypeProfile<1, 3, [ // select
119 SDTCisInt<1>, SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>
120]>;
121
Chris Lattnerd2c339c2005-12-11 18:43:13 +0000122def SDTSelectCC : SDTypeProfile<1, 5, [ // select_cc
Chris Lattner3aed79e2005-12-11 08:35:54 +0000123 SDTCisSameAs<1, 2>, SDTCisSameAs<3, 4>, SDTCisSameAs<0, 3>,
124 SDTCisVT<5, OtherVT>
125]>;
126
Evan Chengf8ac8142005-12-04 08:13:17 +0000127def SDTBr : SDTypeProfile<0, 1, [ // br
128 SDTCisVT<0, OtherVT>
129]>;
130
131def SDTBrCond : SDTypeProfile<0, 2, [ // brcond
132 SDTCisInt<0>, SDTCisVT<1, OtherVT>
133]>;
134
135def SDTRet : SDTypeProfile<0, 0, [ // ret
136]>;
137
138def SDTWritePort : SDTypeProfile<0, 2, [ // writeport
139 SDTCisInt<0>, SDTCisInt<1>
140]>;
141
Evan Chengf20da7e2005-12-08 04:28:48 +0000142def SDTLoad : SDTypeProfile<1, 1, [ // load
Chris Lattnerd8fe3b32005-12-09 22:58:42 +0000143 SDTCisPtrTy<1>
Evan Chengf20da7e2005-12-08 04:28:48 +0000144]>;
145
Evan Chengb51a0592005-12-10 00:48:20 +0000146def SDTStore : SDTypeProfile<0, 2, [ // store
Evan Chengb612ff92005-12-10 01:59:36 +0000147 SDTCisPtrTy<1>
Evan Chengb51a0592005-12-10 00:48:20 +0000148]>;
149
Chris Lattner17f2cf02005-10-10 06:00:30 +0000150//===----------------------------------------------------------------------===//
151// Selection DAG Node Properties.
152//
153// Note: These are hard coded into tblgen.
154//
155class SDNodeProperty;
156def SDNPCommutative : SDNodeProperty; // X op Y == Y op X
157def SDNPAssociative : SDNodeProperty; // (X op Y) op Z == X op (Y op Z)
Evan Chengf8ac8142005-12-04 08:13:17 +0000158def SDNPHasChain : SDNodeProperty; // R/W chain operand and result
Chris Lattner17f2cf02005-10-10 06:00:30 +0000159
160//===----------------------------------------------------------------------===//
161// Selection DAG Node definitions.
162//
163class SDNode<string opcode, SDTypeProfile typeprof,
164 list<SDNodeProperty> props = [], string sdclass = "SDNode"> {
165 string Opcode = opcode;
166 string SDClass = sdclass;
167 list<SDNodeProperty> Properties = props;
168 SDTypeProfile TypeProfile = typeprof;
169}
170
171def set;
172def node;
173
Chris Lattner84384542005-12-11 07:45:04 +0000174def imm : SDNode<"ISD::Constant" , SDTIntLeaf , [], "ConstantSDNode">;
Evan Chengf8ac8142005-12-04 08:13:17 +0000175def vt : SDNode<"ISD::VALUETYPE" , SDTOther , [], "VTSDNode">;
176def bb : SDNode<"ISD::BasicBlock", SDTOther , [], "BasicBlockSDNode">;
177def cond : SDNode<"ISD::CONDCODE" , SDTOther , [], "CondCodeSDNode">;
Chris Lattner97898262005-10-25 21:03:14 +0000178def undef : SDNode<"ISD::UNDEF" , SDTUNDEF , []>;
Chris Lattner84384542005-12-11 07:45:04 +0000179def globaladdr : SDNode<"ISD::GlobalAddress", SDTPtrLeaf, [],
Chris Lattnerdb40dc22005-11-17 07:20:15 +0000180 "GlobalAddressSDNode">;
Chris Lattner84384542005-12-11 07:45:04 +0000181def tglobaladdr : SDNode<"ISD::TargetGlobalAddress", SDTPtrLeaf, [],
Chris Lattnerdb40dc22005-11-17 07:20:15 +0000182 "GlobalAddressSDNode">;
Chris Lattner84384542005-12-11 07:45:04 +0000183def tconstpool : SDNode<"ISD::TargetConstantPool", SDTPtrLeaf, [],
Nate Begeman28a6b022005-12-10 02:36:00 +0000184 "ConstantPoolSDNode">;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000185def add : SDNode<"ISD::ADD" , SDTIntBinOp ,
186 [SDNPCommutative, SDNPAssociative]>;
187def sub : SDNode<"ISD::SUB" , SDTIntBinOp>;
188def mul : SDNode<"ISD::MUL" , SDTIntBinOp,
189 [SDNPCommutative, SDNPAssociative]>;
190def mulhs : SDNode<"ISD::MULHS" , SDTIntBinOp, [SDNPCommutative]>;
191def mulhu : SDNode<"ISD::MULHU" , SDTIntBinOp, [SDNPCommutative]>;
192def sdiv : SDNode<"ISD::SDIV" , SDTIntBinOp>;
193def udiv : SDNode<"ISD::UDIV" , SDTIntBinOp>;
194def srem : SDNode<"ISD::SREM" , SDTIntBinOp>;
195def urem : SDNode<"ISD::UREM" , SDTIntBinOp>;
Chris Lattner68bfd9c2005-12-05 02:37:26 +0000196def srl : SDNode<"ISD::SRL" , SDTIntShiftOp>;
197def sra : SDNode<"ISD::SRA" , SDTIntShiftOp>;
198def shl : SDNode<"ISD::SHL" , SDTIntShiftOp>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000199def and : SDNode<"ISD::AND" , SDTIntBinOp,
200 [SDNPCommutative, SDNPAssociative]>;
201def or : SDNode<"ISD::OR" , SDTIntBinOp,
202 [SDNPCommutative, SDNPAssociative]>;
203def xor : SDNode<"ISD::XOR" , SDTIntBinOp,
204 [SDNPCommutative, SDNPAssociative]>;
Chris Lattner444215d2005-10-14 06:40:20 +0000205
206def sext_inreg : SDNode<"ISD::SIGN_EXTEND_INREG", SDTExtInreg>;
207def ctlz : SDNode<"ISD::CTLZ" , SDTIntUnaryOp>;
Andrew Lenharthd684e1a2005-10-20 19:38:11 +0000208def cttz : SDNode<"ISD::CTTZ" , SDTIntUnaryOp>;
209def ctpop : SDNode<"ISD::CTPOP" , SDTIntUnaryOp>;
Chris Lattner444215d2005-10-14 06:40:20 +0000210def sext : SDNode<"ISD::SIGN_EXTEND", SDTIntExtendOp>;
211def zext : SDNode<"ISD::ZERO_EXTEND", SDTIntExtendOp>;
212def anyext : SDNode<"ISD::ANY_EXTEND" , SDTIntExtendOp>;
213def trunc : SDNode<"ISD::TRUNCATE" , SDTIntTruncOp>;
214
Chris Lattner17f2cf02005-10-10 06:00:30 +0000215def fadd : SDNode<"ISD::FADD" , SDTFPBinOp, [SDNPCommutative]>;
216def fsub : SDNode<"ISD::FSUB" , SDTFPBinOp>;
217def fmul : SDNode<"ISD::FMUL" , SDTFPBinOp, [SDNPCommutative]>;
218def fdiv : SDNode<"ISD::FDIV" , SDTFPBinOp>;
219def frem : SDNode<"ISD::FREM" , SDTFPBinOp>;
220def fabs : SDNode<"ISD::FABS" , SDTFPUnaryOp>;
221def fneg : SDNode<"ISD::FNEG" , SDTFPUnaryOp>;
222def fsqrt : SDNode<"ISD::FSQRT" , SDTFPUnaryOp>;
223
Chris Lattner13664a62005-10-14 04:55:10 +0000224def fround : SDNode<"ISD::FP_ROUND" , SDTFPRoundOp>;
225def fextend : SDNode<"ISD::FP_EXTEND" , SDTFPExtendOp>;
226
Duraid Madinae2fd9e22005-11-01 03:07:25 +0000227def sint_to_fp : SDNode<"ISD::SINT_TO_FP" , SDTIntToFPOp>;
228def uint_to_fp : SDNode<"ISD::UINT_TO_FP" , SDTIntToFPOp>;
229def fp_to_sint : SDNode<"ISD::FP_TO_SINT" , SDTFPToIntOp>;
230def fp_to_uint : SDNode<"ISD::FP_TO_UINT" , SDTFPToIntOp>;
231
Chris Lattner1f426de2005-10-26 17:00:25 +0000232def setcc : SDNode<"ISD::SETCC" , SDTSetCC>;
Duraid Madina59669552005-11-02 02:37:18 +0000233def select : SDNode<"ISD::SELECT" , SDTSelect>;
Chris Lattner3aed79e2005-12-11 08:35:54 +0000234def selectcc : SDNode<"ISD::SELECT_CC" , SDTSelectCC>;
Chris Lattner1f426de2005-10-26 17:00:25 +0000235
Evan Chengf8ac8142005-12-04 08:13:17 +0000236def br : SDNode<"ISD::BR" , SDTBr, [SDNPHasChain]>;
237def brcond : SDNode<"ISD::BRCOND" , SDTBrCond, [SDNPHasChain]>;
238def ret : SDNode<"ISD::RET" , SDTRet, [SDNPHasChain]>;
239
240def writeport : SDNode<"ISD::WRITEPORT" , SDTWritePort, [SDNPHasChain]>;
241
Evan Chengb612ff92005-12-10 01:59:36 +0000242def load : SDNode<"ISD::LOAD" , SDTLoad, [SDNPHasChain]>;
Evan Chengb51a0592005-12-10 00:48:20 +0000243def store : SDNode<"ISD::STORE" , SDTStore, [SDNPHasChain]>;
Evan Chengf20da7e2005-12-08 04:28:48 +0000244
Chris Lattner1f426de2005-10-26 17:00:25 +0000245//===----------------------------------------------------------------------===//
246// Selection DAG Condition Codes
247
248class CondCode; // ISD::CondCode enums
249def SETOEQ : CondCode; def SETOGT : CondCode;
250def SETOGE : CondCode; def SETOLT : CondCode; def SETOLE : CondCode;
251def SETONE : CondCode; def SETO : CondCode; def SETUO : CondCode;
252def SETUEQ : CondCode; def SETUGT : CondCode; def SETUGE : CondCode;
253def SETULT : CondCode; def SETULE : CondCode; def SETUNE : CondCode;
254
255def SETEQ : CondCode; def SETGT : CondCode; def SETGE : CondCode;
256def SETLT : CondCode; def SETLE : CondCode; def SETNE : CondCode;
257
258
Chris Lattner17f2cf02005-10-10 06:00:30 +0000259//===----------------------------------------------------------------------===//
260// Selection DAG Node Transformation Functions.
261//
262// This mechanism allows targets to manipulate nodes in the output DAG once a
263// match has been formed. This is typically used to manipulate immediate
264// values.
265//
266class SDNodeXForm<SDNode opc, code xformFunction> {
267 SDNode Opcode = opc;
268 code XFormFunction = xformFunction;
269}
270
271def NOOP_SDNodeXForm : SDNodeXForm<imm, [{}]>;
272
273
274//===----------------------------------------------------------------------===//
275// Selection DAG Pattern Fragments.
276//
277// Pattern fragments are reusable chunks of dags that match specific things.
278// They can take arguments and have C++ predicates that control whether they
279// match. They are intended to make the patterns for common instructions more
280// compact and readable.
281//
282
283/// PatFrag - Represents a pattern fragment. This can match something on the
284/// DAG, frame a single node to multiply nested other fragments.
285///
286class PatFrag<dag ops, dag frag, code pred = [{}],
287 SDNodeXForm xform = NOOP_SDNodeXForm> {
288 dag Operands = ops;
289 dag Fragment = frag;
290 code Predicate = pred;
291 SDNodeXForm OperandTransform = xform;
292}
293
294// PatLeaf's are pattern fragments that have no operands. This is just a helper
295// to define immediates and other common things concisely.
296class PatLeaf<dag frag, code pred = [{}], SDNodeXForm xform = NOOP_SDNodeXForm>
297 : PatFrag<(ops), frag, pred, xform>;
298
299// Leaf fragments.
300
301def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000302
303def vtInt : PatLeaf<(vt), [{ return MVT::isInteger(N->getVT()); }]>;
304def vtFP : PatLeaf<(vt), [{ return MVT::isFloatingPoint(N->getVT()); }]>;
305
306// Other helper fragments.
307
308def not : PatFrag<(ops node:$in), (xor node:$in, immAllOnes)>;
Chris Lattnereae6d642005-10-20 23:30:37 +0000309def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>;
Chris Lattner17f2cf02005-10-10 06:00:30 +0000310
Chris Lattner1f426de2005-10-26 17:00:25 +0000311
312// setcc convenience fragments.
313def setoeq : PatFrag<(ops node:$lhs, node:$rhs),
314 (setcc node:$lhs, node:$rhs, SETOEQ)>;
315def setogt : PatFrag<(ops node:$lhs, node:$rhs),
316 (setcc node:$lhs, node:$rhs, SETOGT)>;
317def setoge : PatFrag<(ops node:$lhs, node:$rhs),
318 (setcc node:$lhs, node:$rhs, SETOGE)>;
319def setolt : PatFrag<(ops node:$lhs, node:$rhs),
320 (setcc node:$lhs, node:$rhs, SETOLT)>;
321def setole : PatFrag<(ops node:$lhs, node:$rhs),
322 (setcc node:$lhs, node:$rhs, SETOLE)>;
323def setone : PatFrag<(ops node:$lhs, node:$rhs),
324 (setcc node:$lhs, node:$rhs, SETONE)>;
325def seto : PatFrag<(ops node:$lhs, node:$rhs),
326 (setcc node:$lhs, node:$rhs, SETO)>;
327def setuo : PatFrag<(ops node:$lhs, node:$rhs),
328 (setcc node:$lhs, node:$rhs, SETUO)>;
329def setueq : PatFrag<(ops node:$lhs, node:$rhs),
330 (setcc node:$lhs, node:$rhs, SETUEQ)>;
331def setugt : PatFrag<(ops node:$lhs, node:$rhs),
332 (setcc node:$lhs, node:$rhs, SETUGT)>;
333def setuge : PatFrag<(ops node:$lhs, node:$rhs),
334 (setcc node:$lhs, node:$rhs, SETUGE)>;
335def setult : PatFrag<(ops node:$lhs, node:$rhs),
336 (setcc node:$lhs, node:$rhs, SETULT)>;
337def setule : PatFrag<(ops node:$lhs, node:$rhs),
338 (setcc node:$lhs, node:$rhs, SETULE)>;
339def setune : PatFrag<(ops node:$lhs, node:$rhs),
340 (setcc node:$lhs, node:$rhs, SETUNE)>;
341def seteq : PatFrag<(ops node:$lhs, node:$rhs),
342 (setcc node:$lhs, node:$rhs, SETEQ)>;
343def setgt : PatFrag<(ops node:$lhs, node:$rhs),
344 (setcc node:$lhs, node:$rhs, SETGT)>;
345def setge : PatFrag<(ops node:$lhs, node:$rhs),
346 (setcc node:$lhs, node:$rhs, SETGE)>;
347def setlt : PatFrag<(ops node:$lhs, node:$rhs),
348 (setcc node:$lhs, node:$rhs, SETLT)>;
349def setle : PatFrag<(ops node:$lhs, node:$rhs),
350 (setcc node:$lhs, node:$rhs, SETLE)>;
351def setne : PatFrag<(ops node:$lhs, node:$rhs),
352 (setcc node:$lhs, node:$rhs, SETNE)>;
353
Chris Lattner17f2cf02005-10-10 06:00:30 +0000354//===----------------------------------------------------------------------===//
355// Selection DAG Pattern Support.
356//
357// Patterns are what are actually matched against the target-flavored
358// instruction selection DAG. Instructions defined by the target implicitly
359// define patterns in most cases, but patterns can also be explicitly added when
360// an operation is defined by a sequence of instructions (e.g. loading a large
361// immediate value on RISC targets that do not support immediates as large as
362// their GPRs).
363//
364
365class Pattern<dag patternToMatch, list<dag> resultInstrs> {
366 dag PatternToMatch = patternToMatch;
367 list<dag> ResultInstrs = resultInstrs;
368}
369
370// Pat - A simple (but common) form of a pattern, which produces a simple result
371// not needing a full list.
372class Pat<dag pattern, dag result> : Pattern<pattern, [result]>;
373
Evan Chengf20da7e2005-12-08 04:28:48 +0000374//===----------------------------------------------------------------------===//
375// Complex pattern definitions.
376//
377// Complex patterns, e.g. X86 addressing mode, requires pattern matching code
378// in C++. NumOperands is the number of operands returned by the select function;
379// SelectFunc is the name of the function used to pattern match the max. pattern;
380// RootNodes are the list of possible root nodes of the sub-dags to match.
381// e.g. X86 addressing mode - def addr : ComplexPattern<4, "SelectAddr", [add]>;
382//
383class ComplexPattern<ValueType ty, int numops, string fn, list<SDNode> roots = []> {
384 ValueType Ty = ty;
385 int NumOperands = numops;
386 string SelectFunc = fn;
387 list<SDNode> RootNodes = roots;
388}