6c3b659199c850e6aa2a26cdf757501a4c6baecb
[oota-llvm.git] / lib / Target / SparcV9 / SparcV9.burg.in
1 %{               // -*- C++ -*-
2 Xinclude <stdio.h>
3 Xinclude <llvm/CodeGen/InstrForest.h>
4
5 typedef InstrTreeNode* NODEPTR_TYPE;
6 Xdefine OP_LABEL(p)     ((p)->opLabel)
7 Xdefine LEFT_CHILD(p)   ((p)->LeftChild)
8 Xdefine RIGHT_CHILD(p)  ((p)->RightChild)
9 Xdefine STATE_LABEL(p)  ((p)->state)
10 Xdefine PANIC           printf
11
12 // Get definitions for various instruction values that we will need...
13 #define HANDLE_TERM_INST(N, OPC, CLASS)   Ydefine OPC##OPCODE N
14 #define HANDLE_UNARY_INST(N, OPC, CLASS)  Ydefine OPC##OPCODE N
15 #define HANDLE_BINARY_INST(N, OPC, CLASS) Ydefine OPC##OPCODE N
16 #define HANDLE_MEMORY_INST(N, OPC, CLASS) Ydefine OPC##OPCODE N
17 #define HANDLE_OTHER_INST(N, OPC, CLASS)  Ydefine OPC##OPCODE N
18
19 #include "llvm/Instruction.def"
20
21 %}
22
23 %start stmt
24
25 %term Ret=RetOPCODE             /* return void from a function */
26 %term RetValue=101              /* return a value from a function */
27 %term BrUncond=BrOPCODE
28 %term BrCond=102
29 %term Switch=SwitchOPCODE
30                 /* 4 is unused */
31 %term Add=AddOPCODE
32 %term Sub=SubOPCODE
33 %term Mul=MulOPCODE
34 %term Div=DivOPCODE
35 %term Rem=RemOPCODE
36 %term And=AndOPCODE
37 %term Or=OrOPCODE
38 %term Xor=XorOPCODE
39                 /* Use the next 4 to distinguish bitwise operators from
40                  * logical operators.  This is no longer used for Sparc,
41                  * but may be useful for other target machines.
42                  * The last one is the bitwise Not(val) == XOR val, 11..1.
43                  * Note that it is also a binary operator, not unary.
44                  */
45 %term BAnd=111
46 %term BOr=112
47 %term BXor=113
48 %term BNot=213
49                 /* The next one is the boolean Not(val) == bool XOR val, true
50                  * Note that it is also a binary operator, not unary.
51                  */
52 %term  Not=313
53
54 %term SetCC=114 /* use this to match all SetCC instructions */
55         /* %term SetEQ=13 */
56         /* %term SetNE=14 */
57         /* %term SetLE=15 */
58         /* %term SetGE=16 */
59         /* %term SetLT=17 */
60         /* %term SetGT=18 */
61 %term Malloc=MallocOPCODE
62 %term Free=FreeOPCODE
63 %term Alloca=AllocaOPCODE
64 %term AllocaN=122               /* alloca with arg N */
65 %term Load=LoadOPCODE
66 %term Store=StoreOPCODE
67 %term GetElemPtr=GetElementPtrOPCODE
68 %term GetElemPtrIdx=125         /* getElemPtr with index vector */
69
70 %term Phi=PHINodeOPCODE
71
72 %term Cast=CastOPCODE /* cast that will be ignored. others are made explicit */
73 %term ToBoolTy=127
74 %term ToUByteTy=128
75 %term ToSByteTy=129
76 %term ToUShortTy=130
77 %term ToShortTy=131
78 %term ToUIntTy=132
79 %term ToIntTy=133
80 %term ToULongTy=134
81 %term ToLongTy=135
82 %term ToFloatTy=136
83 %term ToDoubleTy=137
84 %term ToArrayTy=138
85 %term ToPointerTy=139
86
87 %term Call=CallOPCODE
88 %term Shl=ShlOPCODE
89 %term Shr=ShrOPCODE
90 %term VaArg=VarArgOPCODE
91                 /* 32...46 are unused */
92     /*
93      * The foll. values should match the constants in InstrForest.h
94      */
95 %term VRegList=97
96 %term VReg=98
97 %term Constant=99
98 %term Label=100
99                 /* 50+i is a variant of i, as defined above */
100
101
102 %%
103 /*-----------------------------------------------------------------------*
104  * The productions of the grammar.
105  * Note that all chain rules are numbered 101 and above.
106  * Also, a special case of production X is numbered 100+X, 200+X, etc.
107  * The cost of a 1-cycle operation is represented as 10, to allow
108  * finer comparisons of costs (effectively, fractions of 1/10).
109  *-----------------------------------------------------------------------*/
110
111         /*
112          * The top-level statements
113          */
114 stmt:   Ret                     =   1 (30);
115 stmt:   RetValue(reg)           =   2 (30);
116 stmt:   Store(reg,reg)          =   3 (10);
117 stmt:   Store(reg,ptrreg)       =   4 (10);
118 stmt:   BrUncond                =   5 (20);
119 stmt:   BrCond(setCC)           =   6 (20);     /* branch on cond. code */
120 stmt:   BrCond(setCCconst)      = 206 (10);     /* may save one instruction */
121 stmt:   BrCond(reg)             =   8 (20);     /* may avoid an extra instr */
122 stmt:   BrCond(Constant)        = 208 (20);     /* may avoid an extra instr */
123 stmt:   Switch(reg)             =   9 (30);     /* cost = load + branch */
124
125 stmt:   reg                     =  111 (0);
126
127         /*
128          * List node used for nodes with more than 2 children
129          */
130 reg:    VRegList(reg,reg)       =  10 (0);
131
132         /*
133          * Special case non-terminals to help combine unary instructions.
134          *      Eg1:  zdouble <- todouble(xfloat) * todouble(yfloat)
135          *      Eg2:  c       <- a AND (NOT b).
136          * Note that the costs are counted for the special non-terminals here,
137          * and should not be counted again for the reg productions later.
138          */
139 not:      Not(reg,reg)          =   21 (10);
140 tobool:   ToBoolTy(reg)         =   22 (10);
141 not:      Not(tobool, reg)      =  322 (10); // fold cast-to-bool into not
142 toubyte:  ToUByteTy(reg)        =   23 (10);
143 tosbyte:  ToSByteTy(reg)        =   24 (10);
144 toushort: ToUShortTy(reg)       =   25 (10);
145 toshort:  ToShortTy(reg)        =   26 (10);
146 touint:   ToUIntTy(reg)         =   27 (10);
147 toint:    ToIntTy(reg)          =   28 (10);
148 toulong:  ToULongTy(reg)        =   29 (10);
149 tolong:   ToLongTy(reg)         =   30 (10);
150 tofloat:  ToFloatTy(reg)        =   31 (10);
151 todouble: ToDoubleTy(reg)       =   32 (10);
152 todoubleConst: ToDoubleTy(Constant) = 232 (10);
153
154         /*
155          * All the ways to produce a boolean value (Not and ToBoolTy are above):
156          * -- boolean operators: Not, And, Or, ..., ToBoolTy, SetCC
157          * -- an existing boolean register not in the same tree
158          * -- a boolean constant
159          * 
160          * For And, Or, Xor, we add special cases for when:
161          * (a) one operand is a constant.
162          * (b) one operand is a NOT, to use the ANDN, ORN, and XORN instrns.
163          * We do not need the cases when both operands are constant
164          * because constant folding should take care of that beforehand.
165          */
166 reg:    And(reg,reg)            =   38 (10);
167 reg:    And(reg,not)            =  138 (0);     /* cost is counted for not */
168 reg:    And(reg,Constant)       =  238 (10);
169 reg:    Or (reg,reg)            =   39 (10);
170 reg:    Or (reg,not)            =  139 (0);     /* cost is counted for not */
171 reg:    Or (reg,Constant)       =  239 (10);
172 reg:    Xor(reg,reg)            =   40 (10);
173 reg:    Xor(reg,not)            =  140 (0);     /* cost is counted for not */
174 reg:    Xor(reg,Constant)       =  240 (10);
175
176         /* Special case non-terms for BrCond(setCC) and BrCond(setCCconst) */
177 setCCconst: SetCC(reg,Constant) =   41 (5);
178 setCC:      SetCC(reg,reg)      =   42 (10);
179
180 reg:    not                     =  221 (0);
181 reg:    tobool                  =  222 (0);
182 reg:    setCCconst              =  241 (0);
183 reg:    setCC                   =  242 (0);
184
185         /*
186          * Special case non-terminals for the unary cast operators.
187          * Some of these can be folded into other operations (e.g., todouble).
188          * The rest are just for uniformity.
189          */
190 reg:    toubyte                 =  123 (0);
191 reg:    tosbyte                 =  124 (0);
192 reg:    toushort                =  125 (0);
193 reg:    toshort                 =  126 (0);
194 reg:    touint                  =  127 (0);
195 reg:    toint                   =  128 (0);
196 reg:    toulong                 =  129 (0);
197 reg:    tolong                  =  130 (0);
198 reg:    tofloat                 =  131 (0);
199 reg:    todouble                =  132 (0);
200 reg:    todoubleConst           =  133 (0);
201
202 reg:    ToArrayTy(reg)          =  19 (10);
203 reg:    ToPointerTy(reg)        =  20 (10);
204
205         /*
206          * The binary arithmetic operators.
207          */
208 reg:    Add(reg,reg)            =   33 (10);
209 reg:    Sub(reg,reg)            =   34 (10);
210 reg:    Mul(reg,reg)            =   35 (30);
211 reg:    Mul(todouble,todouble)  =  135 (20);    /* avoids 1-2 type converts */
212 reg:    Div(reg,reg)            =   36 (60);
213 reg:    Rem(reg,reg)            =   37 (60);
214
215         /*
216          * The binary bitwise logical operators.
217          */
218 reg:    BAnd(reg,reg)           =  338 (10);
219 reg:    BAnd(reg,bnot)          =  438 ( 0);    /* cost is counted for not */
220 reg:    BOr( reg,reg)           =  339 (10);
221 reg:    BOr( reg,bnot)          =  439 ( 0);    /* cost is counted for not */
222 reg:    BXor(reg,reg)           =  340 (10);
223 reg:    BXor(reg,bnot)          =  440 ( 0);    /* cost is counted for not */
224
225 reg:    bnot                    =  321 ( 0);
226 bnot:   BNot(reg,reg)           =  421 (10);
227
228         /*
229          * Special cases for the binary operators with one constant argument.
230          * Not and BNot are effectively just one argument, so not needed here.
231          */
232 reg:    Add(reg,Constant)       =  233 (10);
233 reg:    Sub(reg,Constant)       =  234 (10);
234 reg:    Mul(reg,Constant)       =  235 (30);
235 reg:    Mul(todouble,todoubleConst) = 335 (20); /* avoids 1-2 type converts */
236 reg:    Div(reg,Constant)       =  236 (60);
237 reg:    Rem(reg,Constant)       =  237 (60);
238
239 reg:    BAnd(reg,Constant)      =  538 (0);
240 reg:    BOr( reg,Constant)      =  539 (0);
241 reg:    BXor(reg,Constant)      =  540 (0);
242
243         /*
244          * Memory access instructions
245          */
246 reg:    Load(reg)               =   51 (30);
247 reg:    Load(ptrreg)            =   52 (20);    /* 1 counted for ptrreg */
248 reg:    ptrreg                  =  155 (0);
249 ptrreg: GetElemPtr(reg)         =   55 (10);
250 ptrreg: GetElemPtrIdx(reg,reg)  =   56 (10);
251 reg:    Alloca                  =   57 (10);
252 reg:    AllocaN(reg)            =   58 (10);
253
254         /*
255          * Other operators producing register values
256          */
257 reg:    Call                    =   61 (20);    /* just ignore the operands! */
258 reg:    Shl(reg,reg)            =   62 (20);    /* 1 for issue restrictions */
259 reg:    Shr(reg,reg)            =   63 (20);    /* 1 for issue restrictions */
260 reg:    Phi(reg,reg)            =   64 (0);
261 reg:    VaArg(reg)              =   65 (40);    /* load from stack then incr */
262
263         /*
264          * Finally, leaf nodes of expression trees.
265          */
266 reg:    VReg                    =   71 (0);
267 reg:    Constant                =   72 (3);     /* prefer direct use */
268
269
270
271 %%
272 /*-----------------------------------------------------------------------*
273  * The rest of this file provides code to print the cover produced
274  * by BURG and information about computed tree cost and matches.
275  * This code was taken from sample.gr provided with BURG.
276  *-----------------------------------------------------------------------*/
277
278 void printcover(NODEPTR_TYPE p, int goalnt, int indent) {
279         int eruleno = burm_rule(STATE_LABEL(p), goalnt);
280         short *nts = burm_nts[eruleno];
281         NODEPTR_TYPE kids[10];
282         int i;
283         
284         if (eruleno == 0) {
285                 printf("no cover\n");
286                 return;
287         }
288         for (i = 0; i < indent; i++)
289                 printf(".");
290         printf("%s\n", burm_string[eruleno]);
291         burm_kids(p, eruleno, kids);
292         for (i = 0; nts[i]; i++)
293                 printcover(kids[i], nts[i], indent+1);
294 }
295
296 void printtree(NODEPTR_TYPE p) {
297         int op = burm_op_label(p);
298
299         printf("%s", burm_opname[op]);
300         switch (burm_arity[op]) {
301         case 0:
302                 break;
303         case 1:
304                 printf("(");
305                 printtree(burm_child(p, 0));
306                 printf(")");
307                 break;
308         case 2:
309                 printf("(");
310                 printtree(burm_child(p, 0));
311                 printf(", ");
312                 printtree(burm_child(p, 1));
313                 printf(")");
314                 break;
315         }
316 }
317
318 int treecost(NODEPTR_TYPE p, int goalnt, int costindex) {
319         int eruleno = burm_rule(STATE_LABEL(p), goalnt);
320         int cost = burm_cost[eruleno][costindex], i;
321         short *nts = burm_nts[eruleno];
322         NODEPTR_TYPE kids[10];
323
324         burm_kids(p, eruleno, kids);
325         for (i = 0; nts[i]; i++)
326                 cost += treecost(kids[i], nts[i], costindex);
327         return cost;
328 }
329
330 void printMatches(NODEPTR_TYPE p) {
331         int nt;
332         int eruleno;
333
334         printf("Node 0x%lx= ", (unsigned long)p);
335         printtree(p);
336         printf(" matched rules:\n");
337         for (nt = 1; burm_ntname[nt] != (char*)NULL; nt++)
338                 if ((eruleno = burm_rule(STATE_LABEL(p), nt)) != 0)
339                         printf("\t%s\n", burm_string[eruleno]);
340 }