sparc: matching rules for andn and orn
[libfirm] / ir / be / sparc / sparc_spec.pl
1 # Creation: 2006/02/13
2 # $Id$
3
4 $arch = "sparc";
5
6 $mode_gp      = "mode_Iu";
7 $mode_flags   = "mode_Bu";
8 $mode_fpflags = "mode_Bu";
9 $mode_fp      = "mode_F";
10 $mode_fp2     = "mode_D";
11 $mode_fp4     = "mode_E"; # not correct, we need to register a new mode
12
13 $normal      =  0; # no special type
14 $caller_save =  1; # caller save (register must be saved by the caller of a function)
15 $callee_save =  2; # callee save (register must be saved by the called function)
16 $ignore      =  4; # ignore (do not assign this register)
17 $arbitrary   =  8; # emitter can choose an arbitrary register of this class
18 $virtual     = 16; # the register is a virtual one
19 $state       = 32; # register represents a state
20
21 # available SPARC registers: 8 globals, 24 window regs (8 ins, 8 outs, 8 locals)
22 %reg_classes = (
23         gp => [
24                 { name => "g0", type => $ignore }, # hardwired 0, behaves like /dev/null
25                 { name => "g1", type => $caller_save }, # temp. value
26                 { name => "g2", type => $caller_save },
27                 { name => "g3", type => $caller_save },
28                 { name => "g4", type => $caller_save },
29                 { name => "g5", type => $ignore }, # reserved by SPARC ABI
30                 { name => "g6", type => $ignore }, # reserved by SPARC ABI
31                 { name => "g7", type => $ignore }, # reserved by SPARC ABI
32
33                 # window's out registers
34                 { name => "o0", type => $caller_save }, # param 1 / return value from callee
35                 { name => "o1", type => $caller_save }, # param 2
36                 { name => "o2", type => $caller_save }, # param 3
37                 { name => "o3", type => $caller_save }, # param 4
38                 { name => "o4", type => $caller_save }, # param 5
39                 { name => "o5", type => $caller_save }, # param 6
40                 { name => "sp", type => $ignore }, # our stackpointer
41                 { name => "o7", type => $ignore }, # temp. value / address of CALL instr.
42
43                 # window's local registers
44                 { name => "l0", type => 0 },
45                 { name => "l1", type => 0 },
46                 { name => "l2", type => 0 },
47                 { name => "l3", type => 0 },
48                 { name => "l4", type => 0 },
49                 { name => "l5", type => 0 },
50                 { name => "l6", type => 0 },
51                 { name => "l7", type => 0 },
52
53                 # window's in registers
54                 { name => "i0", type => 0 }, # incoming param1 / return value to caller
55                 { name => "i1", type => 0 }, # param 2
56                 { name => "i2", type => 0 }, # param 3
57                 { name => "i3", type => 0 }, # param 4
58                 { name => "i4", type => 0 }, # param 5
59                 { name => "i5", type => 0 }, # param 6
60                 { name => "frame_pointer", realname => "fp", type => $ignore }, # our framepointer
61                 { name => "i7", type => $ignore }, # return address - 8
62                 { mode => $mode_gp }
63         ],
64         fpflags_class => [
65                 { name => "fpflags", type => $ignore },
66                 { mode => $mode_fpflags, flags => "manual_ra" }
67         ],
68         flags_class => [
69                 { name => "flags", type => $ignore },
70                 { mode => $mode_flags, flags => "manual_ra" }
71         ],
72         mul_div_high_res => [
73                 { name => "y", type => $ignore },
74                 { mode => $mode_gp, flags => "manual_ra" }
75         ],
76         # fp registers can be accessed any time
77         fp => [
78                 { name => "f0",  type => $caller_save },
79                 { name => "f1",  type => $caller_save },
80                 { name => "f2",  type => $caller_save },
81                 { name => "f3",  type => $caller_save },
82                 { name => "f4",  type => $caller_save },
83                 { name => "f5",  type => $caller_save },
84                 { name => "f6",  type => $caller_save },
85                 { name => "f7",  type => $caller_save },
86                 { name => "f8",  type => $caller_save },
87                 { name => "f9",  type => $caller_save },
88                 { name => "f10", type => $caller_save },
89                 { name => "f11", type => $caller_save },
90                 { name => "f12", type => $caller_save },
91                 { name => "f13", type => $caller_save },
92                 { name => "f14", type => $caller_save },
93                 { name => "f15", type => $caller_save },
94                 { name => "f16", type => $caller_save },
95                 { name => "f17", type => $caller_save },
96                 { name => "f18", type => $caller_save },
97                 { name => "f19", type => $caller_save },
98                 { name => "f20", type => $caller_save },
99                 { name => "f21", type => $caller_save },
100                 { name => "f22", type => $caller_save },
101                 { name => "f23", type => $caller_save },
102                 { name => "f24", type => $caller_save },
103                 { name => "f25", type => $caller_save },
104                 { name => "f26", type => $caller_save },
105                 { name => "f27", type => $caller_save },
106                 { name => "f28", type => $caller_save },
107                 { name => "f29", type => $caller_save },
108                 { name => "f30", type => $caller_save },
109                 { name => "f31", type => $caller_save },
110                 { mode => $mode_fp }
111         ]
112 ); # %reg_classes
113
114 %emit_templates = (
115 # emit source reg or imm dep. on node's arity
116         RI  => "${arch}_emit_reg_or_imm(node, -1);",
117         R1I => "${arch}_emit_reg_or_imm(node, 0);",
118         R2I => "${arch}_emit_reg_or_imm(node, 1);",
119         R3I => "${arch}_emit_reg_or_imm(node, 2);",
120         S1  => "${arch}_emit_source_register(node, 0);",
121         S2  => "${arch}_emit_source_register(node, 1);",
122         S3  => "${arch}_emit_source_register(node, 2);",
123         S4  => "${arch}_emit_source_register(node, 3);",
124         S5  => "${arch}_emit_source_register(node, 4);",
125         S6  => "${arch}_emit_source_register(node, 5);",
126         D1  => "${arch}_emit_dest_register(node, 0);",
127         D2  => "${arch}_emit_dest_register(node, 1);",
128         D3  => "${arch}_emit_dest_register(node, 2);",
129         D4  => "${arch}_emit_dest_register(node, 3);",
130         D5  => "${arch}_emit_dest_register(node, 4);",
131         D6  => "${arch}_emit_dest_register(node, 5);",
132         IM  => "${arch}_emit_immediate(node);",
133         LM  => "${arch}_emit_load_mode(node);",
134         SM  => "${arch}_emit_store_mode(node);",
135         FLSM => "${arch}_emit_float_load_store_mode(node);",
136         FPM  => "${arch}_emit_fp_mode_suffix(node);",
137         FCONVS => "${arch}_emit_fp_conv_source(node);",
138         FCONVD => "${arch}_emit_fp_conv_destination(node);",
139         O      => "${arch}_emit_offset(node);",
140 );
141
142 $default_attr_type = "sparc_attr_t";
143 $default_copy_attr = "sparc_copy_attr";
144
145
146 %init_attr = (
147         sparc_attr_t             => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
148         sparc_load_store_attr_t  => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);\n".
149                                     "\tinit_sparc_load_store_attributes(res, ls_mode, entity, entity_sign, offset, is_frame_entity);",
150         sparc_symconst_attr_t    => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);\n".
151                                     "\tinit_sparc_symconst_attributes(res, entity);",
152         sparc_jmp_cond_attr_t    => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
153         sparc_jmp_switch_attr_t  => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
154         sparc_save_attr_t        => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
155         sparc_fp_attr_t          => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);\n".
156                                     "\tinit_sparc_fp_attributes(res, fp_mode);\n",
157         sparc_fp_conv_attr_t     => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);".
158                                     "\tinit_sparc_fp_conv_attributes(res, src_mode, dest_mode);\n",
159 );
160
161 %compare_attr = (
162         sparc_attr_t            => "cmp_attr_sparc",
163         sparc_load_store_attr_t => "cmp_attr_sparc_load_store",
164         sparc_symconst_attr_t   => "cmp_attr_sparc_symconst",
165         sparc_jmp_cond_attr_t   => "cmp_attr_sparc_jmp_cond",
166         sparc_jmp_switch_attr_t => "cmp_attr_sparc_jmp_switch",
167         sparc_save_attr_t       => "cmp_attr_sparc_save",
168         sparc_fp_attr_t         => "cmp_attr_sparc_fp",
169         sparc_fp_conv_attr_t    => "cmp_attr_sparc_fp_conv",
170 );
171
172 %custom_irn_flags = (
173         modifies_flags    => "sparc_arch_irn_flag_modifies_flags",
174         modifies_fp_flags => "sparc_arch_irn_flag_modifies_fp_flags",
175 );
176
177 # addressing modes: imm, reg, reg +/- imm, reg + reg
178 # max. imm = 13 bits signed (-4096 ... 4096)
179
180 my %cmp_operand_constructors = (
181         imm => {
182                 attr       => "int immediate_value",
183                 custominit => "sparc_set_attr_imm(res, immediate_value);",
184                 reg_req    => { in => [ "gp" ], out => [ "flags" ] },
185                 ins        => [ "left" ],
186         },
187         reg => {
188                 reg_req    => { in => [ "gp", "gp" ], out => [ "flags" ] },
189                 ins        => [ "left", "right" ],
190         },
191 );
192
193 my %unop_operand_constructors = (
194         imm => {
195                 attr       => "int immediate_value",
196                 custominit => "sparc_set_attr_imm(res, immediate_value);",
197                 reg_req    => { in => [], out => [ "gp" ] },
198         },
199         reg => {
200                 reg_req    => { in => [ "gp" ], out => [ "gp" ] },
201         },
202 );
203
204 my %binop_operand_constructors = (
205         imm => {
206                 attr       => "int immediate_value",
207                 custominit => "sparc_set_attr_imm(res, immediate_value);",
208                 reg_req    => { in => [ "gp" ], out => [ "gp" ] },
209                 ins        => [ "left" ],
210         },
211         reg => {
212                 reg_req    => { in => [ "gp", "gp" ], out => [ "gp" ] },
213                 ins        => [ "left", "right" ],
214         },
215 );
216
217 my %float_binop_constructors = (
218         s => {
219                 reg_req => { in => [ "fp", "fp" ], out => [ "fp" ] },
220                 ins     => [ "left", "right" ],
221                 mode    => $mode_fp,
222         },
223         d => {
224                 reg_req => { in => [ "fp:a|2", "fp:a|2" ], out => [ "fp:a|2" ] },
225                 ins     => [ "left", "right" ],
226                 mode    => $mode_fp2,
227         },
228         q => {
229                 reg_req => { in => [ "fp:a|4", "fp:a|4" ], out => [ "fp:a|4" ] },
230                 ins     => [ "left", "right" ],
231                 mode    => $mode_fp4,
232         }
233 );
234
235 my %float_unop_constructors = (
236         s => {
237                 reg_req => { in => [ "fp" ], out => [ "fp" ] },
238                 ins     => [ "left", "right" ],
239                 mode    => $mode_fp,
240         },
241         d => {
242                 reg_req => { in => [ "fp:a|2" ], out => [ "fp:a|2" ] },
243                 ins     => [ "left", "right" ],
244                 mode    => $mode_fp2,
245         },
246         q => {
247                 reg_req => { in => [ "fp:a|4" ], out => [ "fp:a|4" ] },
248                 ins     => [ "left", "right" ],
249                 mode    => $mode_fp4,
250         }
251 );
252
253 %nodes = (
254
255 Add => {
256         irn_flags    => [ "rematerializable" ],
257         mode         => $mode_gp,
258         emit         => '. add %S1, %R2I, %D1',
259         constructors => \%binop_operand_constructors,
260 },
261
262 Sub => {
263         irn_flags    => [ "rematerializable" ],
264         mode         => $mode_gp,
265         emit         => '. sub %S1, %R2I, %D1',
266         constructors => \%binop_operand_constructors,
267 },
268
269
270 # Load / Store
271 Ld => {
272         op_flags  => [ "labeled", "fragile" ],
273         state     => "exc_pinned",
274         constructors => {
275                 "" => {
276                         reg_req   => { in => [ "gp", "none" ], out => [ "gp", "none" ] },
277                 },
278                 d => {
279                         reg_req => { in => [ "gp", "none" ], out => [ "gp:a|2", "none" ] },
280                 },
281         },
282         outs      => [ "res", "M" ],
283         ins       => [ "ptr", "mem" ],
284         attr_type => "sparc_load_store_attr_t",
285         attr      => "ir_mode *ls_mode, ir_entity *entity, int entity_sign, long offset, bool is_frame_entity",
286         emit      => '. ld%LM [%S1%O], %D1'
287 },
288
289 HiImm => {
290         irn_flags => [ "rematerializable" ],
291         state     => "exc_pinned",
292         outs      => [ "res" ],
293         mode      => $mode_gp,
294         reg_req   => { in => [], out => [ "gp" ] },
295         attr       => "int immediate_value",
296         custominit => "sparc_set_attr_imm(res, immediate_value);",
297 },
298
299 LoImm => {
300         irn_flags => [ "rematerializable" ],
301         state     => "exc_pinned",
302         ins       => [ "hireg" ],
303         outs      => [ "res" ],
304         mode      => $mode_gp,
305         reg_req   => { in => [ "gp" ], out => [ "gp" ] },
306         attr       => "int immediate_value",
307         custominit => "sparc_set_attr_imm(res, immediate_value);",
308 },
309
310 St => {
311         op_flags  => [ "labeled", "fragile" ],
312         mode      => "mode_M",
313         state     => "exc_pinned",
314         constructors => {
315                 "" => {
316                         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
317                 },
318                 d => {
319                         reg_req   => { in => [ "gp", "gp:a|2", "none" ], out => [ "none" ] },
320                 },
321         },
322         ins       => [ "ptr", "val", "mem" ],
323         outs      => [ "M" ],
324         attr_type => "sparc_load_store_attr_t",
325         attr      => "ir_mode *ls_mode, ir_entity *entity, int entity_sign, long offset, bool is_frame_entity",
326         emit      => '. st%SM %S2, [%S1%O]'
327 },
328
329 Mov => {
330         irn_flags => [ "rematerializable" ],
331         arity     => "variable",
332         emit      => '. mov %R1I, %D1',
333         mode      => $mode_gp,
334         constructors => \%unop_operand_constructors,
335 },
336
337 Save => {
338         reg_req   => {
339                 in => [ "sp", "none"],
340                 out => [ "sp:I|S", "frame_pointer:I", "none" ]
341         },
342         ins       => [ "stack", "mem" ],
343         outs      => [ "stack", "frame", "mem" ],
344         attr      => "int initial_stacksize",
345         attr_type => "sparc_save_attr_t",
346         init_attr => "\tinit_sparc_save_attributes(res, initial_stacksize);",
347 },
348
349 SubSP => {
350         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "sp:I|S", "gp", "none" ] },
351         ins       => [ "stack", "size", "mem" ],
352         outs      => [ "stack", "addr", "M" ],
353         emit      => ". sub %S1, %S2, %D1\n",
354 },
355
356 AddSP => {
357         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "sp:I|S", "none" ] },
358         ins       => [ "stack", "size", "mem" ],
359         outs      => [ "stack", "M" ],
360         emit      => ". add %S1, %S2, %D1\n",
361 },
362
363 SymConst => {
364         op_flags  => [ "constlike" ],
365         irn_flags => [ "rematerializable" ],
366         attr      => "ir_entity *entity",
367         reg_req   => { out => [ "gp" ] },
368         attr_type => "sparc_symconst_attr_t",
369         mode      => $mode_gp,
370 },
371
372 FrameAddr => {
373         op_flags  => [ "constlike" ],
374         irn_flags => [ "rematerializable" ],
375         attr      => "ir_entity *entity",
376         reg_req   => { in => [ "gp" ], out => [ "gp" ] },
377         ins       => [ "base" ],
378         attr_type => "sparc_symconst_attr_t",
379         mode      => $mode_gp,
380 },
381
382 Bicc => {
383         op_flags  => [ "labeled", "cfopcode", "forking" ],
384         state     => "pinned",
385         mode      => "mode_T",
386         attr_type => "sparc_jmp_cond_attr_t",
387         attr      => "pn_Cmp pnc, bool is_unsigned",
388         init_attr => "\tinit_sparc_jmp_cond_attr(res, pnc, is_unsigned);",
389         reg_req   => { in => [ "flags" ], out => [ "none", "none" ] },
390 },
391
392 fbfcc => {
393         op_flags  => [ "labeled", "cfopcode", "forking" ],
394         state     => "pinned",
395         mode      => "mode_T",
396         attr_type => "sparc_jmp_cond_attr_t",
397         attr      => "pn_Cmp pnc",
398         init_attr => "\tinit_sparc_jmp_cond_attr(res, pnc, false);",
399         reg_req   => { in => [ "fpflags" ], out => [ "none", "none" ] },
400 },
401
402 Ba => {
403         state     => "pinned",
404         op_flags  => [ "cfopcode" ],
405         irn_flags => [ "simple_jump" ],
406         reg_req   => { out => [ "none" ] },
407         mode      => "mode_X",
408 },
409
410 Call => {
411         irn_flags => [ "modifies_flags", "modifies_fp_flags" ],
412         state     => "exc_pinned",
413         arity     => "variable",
414         out_arity => "variable",
415         constructors => {
416                 imm => {
417                         attr       => "ir_entity *entity, long offset",
418                         custominit => "get_sparc_attr(res)->immediate_value_entity = entity;",
419                         arity     => "variable",
420                         out_arity => "variable",
421                 },
422                 reg => {
423                         arity     => "variable",
424                         out_arity => "variable",
425                 }
426         },
427 },
428
429 Cmp => {
430         irn_flags    => [ "rematerializable", "modifies_flags" ],
431         emit         => '. cmp %S1, %R2I',
432         ins          => [ "left", "right" ],
433         mode         => $mode_flags,
434         constructors => \%cmp_operand_constructors,
435 },
436
437 Tst => {
438         irn_flags    => [ "rematerializable", "modifies_flags" ],
439         emit         => '. tst %S1',
440         mode         => $mode_flags,
441         reg_req      => { in => [ "gp" ], out => [ "flags" ] },
442         ins          => [ "val" ],
443 },
444
445 SwitchJmp => {
446         op_flags  => [ "labeled", "cfopcode", "forking" ],
447         irn_flags => [ "modifies_flags" ],
448         state     => "pinned",
449         mode      => "mode_T",
450         attr      => "int n_projs, long def_proj_num",
451         init_attr => "\tset_sparc_jmp_switch_n_projs(res, n_projs);\n".
452                                         "\tset_sparc_jmp_switch_default_proj_num(res, def_proj_num);",
453         reg_req   => { in => [ "gp" ], out => [ "none" ] },
454         attr_type => "sparc_jmp_switch_attr_t",
455 },
456
457 Sll => {
458         irn_flags    => [ "rematerializable" ],
459         mode         => $mode_gp,
460         emit         => '. sll %S1, %R2I, %D1',
461         constructors => \%binop_operand_constructors,
462 },
463
464 Slr => {
465         irn_flags    => [ "rematerializable" ],
466         mode         => $mode_gp,
467         emit         => '. srl %S1, %R2I, %D1',
468         constructors => \%binop_operand_constructors,
469 },
470
471 Sra => {
472         irn_flags    => [ "rematerializable" ],
473         mode         => $mode_gp,
474         emit         => '. sra %S1, %R2I, %D1',
475         constructors => \%binop_operand_constructors,
476 },
477
478 And => {
479         irn_flags    => [ "rematerializable" ],
480         mode         => $mode_gp,
481         emit         => '. and %S1, %R2I, %D1',
482         constructors => \%binop_operand_constructors,
483 },
484
485 AndN => {
486         irn_flags => [ "rematerializable" ],
487         mode      => $mode_gp,
488         emit      => '. andn %S1, %R2I, %D1',
489         constructors => \%binop_operand_constructors,
490 },
491
492 Or => {
493         irn_flags    => [ "rematerializable" ],
494         mode         => $mode_gp,
495         emit         => '. or %S1, %R2I, %D1',
496         constructors => \%binop_operand_constructors,
497 },
498
499 OrN => {
500         irn_flags => [ "rematerializable" ],
501         mode      => $mode_gp,
502         emit      => '. orn %S1, %R2I, %D1',
503         constructors => \%binop_operand_constructors,
504 },
505
506 Xor => {
507         irn_flags    => [ "rematerializable" ],
508         mode         => $mode_gp,
509         emit         => '. xor %S1, %R2I, %D1',
510         constructors => \%binop_operand_constructors,
511 },
512
513 XNor => {
514         irn_flags => [ "rematerializable" ],
515         mode      => $mode_gp,
516         emit      => '. xnor %S1, %R2I, %D1',
517         constructors => \%binop_operand_constructors,
518 },
519
520 Mul => {
521         mode         => $mode_gp,
522         emit         => '. smul %S1, %R2I, %D1',
523         constructors => \%binop_operand_constructors,
524 },
525
526 Mulh => {
527         outs         => [ "low", "high" ],
528         constructors => \%binop_operand_constructors,
529 },
530
531 # The div instructions are kinda hacky. Things to improve:
532 # * Make high-value input explicitely. Either as a gp at first or ideally
533 #   as an explicit y-register
534
535 SDiv => {
536         irn_flags    => [ "rematerializable" ],
537         state        => "exc_pinned",
538         ins          => [ "dividend_low", "divisor" ],
539         outs         => [ "res", "M" ],
540         constructors => \%binop_operand_constructors,
541 },
542
543 UDiv => {
544         irn_flags    => [ "rematerializable" ],
545         state        => "exc_pinned",
546         ins          => [ "dividend_low", "divisor" ],
547         outs         => [ "res", "M" ],
548         constructors => \%binop_operand_constructors,
549 },
550
551 fcmp => {
552         irn_flags => [ "rematerializable", "modifies_fp_flags" ],
553         emit      => '. fcmp%FPM %S1, %S2',
554         attr_type => "sparc_fp_attr_t",
555         attr      => "ir_mode *fp_mode",
556         mode      => $mode_fpflags,
557         constructors => {
558                 s => {
559                         reg_req => { in => [ "fp", "fp" ], out => [ "fpflags" ] },
560                 },
561                 d => {
562                         reg_req => { in => [ "fp:a|2", "fp:a|2" ], out => [ "fpflags" ] },
563                 },
564                 q => {
565                         reg_req => { in => [ "fp:a|4", "fp:a|4" ], out => [ "fpflags" ] },
566                 },
567         },
568 },
569
570 fadd => {
571         op_flags     => [ "commutative" ],
572         irn_flags    => [ "rematerializable" ],
573         emit         => '. fadd%FPM %S1, %S2, %D1',
574         attr_type    => "sparc_fp_attr_t",
575         attr         => "ir_mode *fp_mode",
576         constructors => \%float_binop_constructors,
577 },
578
579 fsub => {
580         irn_flags    => [ "rematerializable" ],
581         emit         => '. fsub%FPM %S1, %S2, %D1',
582         attr_type    => "sparc_fp_attr_t",
583         attr         => "ir_mode *fp_mode",
584         constructors => \%float_binop_constructors,
585 },
586
587 fmul => {
588         irn_flags    => [ "rematerializable" ],
589         op_flags     => [ "commutative" ],
590         emit         =>'. fmul%FPM %S1, %S2, %D1',
591         attr_type    => "sparc_fp_attr_t",
592         attr         => "ir_mode *fp_mode",
593         constructors => \%float_binop_constructors,
594 },
595
596 fdiv => {
597         irn_flags    => [ "rematerializable" ],
598         emit         => '. fdiv%FPM %S1, %S2, %D1',
599         attr_type    => "sparc_fp_attr_t",
600         attr         => "ir_mode *fp_mode",
601         outs         => [ "res", "M" ],
602         constructors => \%float_binop_constructors,
603 },
604
605 fneg => {
606         irn_flags => [ "rematerializable" ],
607         reg_req   => { in => [ "fp" ], out => [ "fp" ] },
608         # note that we only need the first register even for wide-values
609         emit      => '. fneg %S1, %D1',
610         attr_type => "sparc_fp_attr_t",
611         attr      => "ir_mode *fp_mode",
612         constructors => \%float_unop_constructors,
613 },
614
615 "fabs" => {
616         irn_flags    => [ "rematerializable" ],
617         # note that we only need the first register even for wide-values
618         emit         => '. fabs %S1, %D1',
619         attr_type    => "sparc_fp_attr_t",
620         attr         => "ir_mode *fp_mode",
621         constructors => \%float_unop_constructors,
622 },
623
624 fftof => {
625         irn_flags => [ "rematerializable" ],
626         emit      => '. f%FCONVS%.to%FCONVD %S1, %D1',
627         attr_type => "sparc_fp_conv_attr_t",
628         attr      => "ir_mode *src_mode, ir_mode *dest_mode",
629         constructors => {
630                 s_d => {
631                         reg_req => { in => [ "fp" ], out => [ "fp:a|2" ] },
632                         mode    => $mode_fp2,
633                 },
634                 s_q => {
635                         reg_req => { in => [ "fp" ], out => [ "fp:a|2" ] },
636                         mode    => $mode_fp4,
637                 },
638                 d_s => {
639                         reg_req => { in => [ "fp:a|2" ], out => [ "fp" ] },
640                         mode    => $mode_fp,
641                 },
642                 d_q => {
643                         reg_req => { in => [ "fp:a|2" ], out => [ "fp:a|4" ] },
644                         mode    => $mode_fp4,
645                 },
646                 q_s => {
647                         reg_req => { in => [ "fp:a|4" ], out => [ "fp" ] },
648                         mode    => $mode_fp,
649                 },
650                 q_d => {
651                         reg_req => { in => [ "fp:a|4" ], out => [ "fp:a|2" ] },
652                         mode    => $mode_fp2,
653                 },
654         },
655 },
656
657 fitof => {
658         irn_flags => [ "rematerializable" ],
659         reg_req   => { in => [ "gp" ], out => [ "fp" ] },
660         emit      => '. fito%FPM %S1, %D1',
661         attr_type => "sparc_fp_attr_t",
662         attr      => "ir_mode *fp_mode",
663         constructors => {
664                 s => {
665                         reg_req => { in => [ "gp" ], out => [ "fp" ] },
666                         mode    => $mode_fp,
667                 },
668                 d => {
669                         reg_req => { in => [ "gp" ], out => [ "fp:a|2" ] },
670                         mode    => $mode_fp2,
671                 },
672                 q => {
673                         reg_req => { in => [ "gp" ], out => [ "fp:a|4" ] },
674                         mode    => $mode_fp4,
675                 },
676         },
677 },
678
679 fftoi => {
680         irn_flags => [ "rematerializable" ],
681         reg_req   => { in => [ "fp" ], out => [ "gp" ] },
682         emit      => '. f%FPM.toi %S1, %D1',
683         attr_type => "sparc_fp_attr_t",
684         attr      => "ir_mode *fp_mode",
685         mode      => $mode_gp,
686         constructors => {
687                 s => {
688                         reg_req => { in => [ "gp" ], out => [ "gp" ] },
689                 },
690                 d => {
691                         reg_req => { in => [ "fp:a|2" ], out => [ "gp" ] },
692                 },
693                 q => {
694                         reg_req => { in => [ "fp:a|4" ], out => [ "gp" ] },
695                 },
696         },
697 },
698
699 Ldf => {
700         op_flags  => [ "labeled", "fragile" ],
701         state     => "exc_pinned",
702         constructors => {
703                 s => {
704                         reg_req => { in => [ "gp", "none" ], out => [ "fp", "none" ] },
705                 },
706                 d => {
707                         reg_req => { in => [ "gp", "none" ], out => [ "fp:a|2", "none" ] },
708                 },
709                 q => {
710                         reg_req => { in => [ "gp", "none" ], out => [ "fp:a|4", "none" ] },
711                 },
712         },
713         ins       => [ "ptr", "mem" ],
714         outs      => [ "res", "M" ],
715         attr_type => "sparc_load_store_attr_t",
716         attr      => "ir_mode *ls_mode, ir_entity *entity, int entity_sign, long offset, bool is_frame_entity",
717         emit      => '. ld%FLSM [%S1%O], %D1'
718 },
719
720 Stf => {
721         op_flags  => [ "labeled", "fragile" ],
722         state     => "exc_pinned",
723         constructors => {
724                 s => {
725                         reg_req => { in => [ "gp", "fp", "none" ], out => [ "none" ] },
726                 },
727                 d => {
728                         reg_req => { in => [ "gp", "fp:a|2", "none" ], out => [ "none" ] },
729                 },
730                 q => {
731                         reg_req => { in => [ "gp", "fp:a|4", "none" ], out => [ "none" ] },
732                 },
733         },
734         ins       => [ "ptr", "val", "mem" ],
735         outs      => [ "M" ],
736         attr_type => "sparc_load_store_attr_t",
737         attr      => "ir_mode *ls_mode, ir_entity *entity, int entity_sign, long offset, bool is_frame_entity",
738         emit      => '. st%FLSM %S2, [%S1%O]',
739         mode      => 'mode_M',
740 },
741
742 ); # end of %nodes