16d19ba3dbf8fe4d71b0d2edb4b0cce477b1db64
[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         HIM => "${arch}_emit_high_immediate(node);",
134         LM  => "${arch}_emit_load_mode(node);",
135         SM  => "${arch}_emit_store_mode(node);",
136         FLSM => "${arch}_emit_float_load_store_mode(node);",
137         FPM  => "${arch}_emit_fp_mode_suffix(node);",
138         FCONVS => "${arch}_emit_fp_conv_source(node);",
139         FCONVD => "${arch}_emit_fp_conv_destination(node);",
140         O      => "${arch}_emit_offset(node);",
141 );
142
143 $default_attr_type = "sparc_attr_t";
144 $default_copy_attr = "sparc_copy_attr";
145
146
147 %init_attr = (
148         sparc_attr_t             => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
149         sparc_load_store_attr_t  => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);\n".
150                                     "\tinit_sparc_load_store_attributes(res, ls_mode, entity, offset, is_frame_entity);",
151         sparc_jmp_cond_attr_t    => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
152         sparc_jmp_switch_attr_t  => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
153         sparc_save_attr_t        => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);",
154         sparc_fp_attr_t          => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);\n".
155                                     "\tinit_sparc_fp_attributes(res, fp_mode);\n",
156         sparc_fp_conv_attr_t     => "\tinit_sparc_attributes(res, flags, in_reqs, exec_units, n_res);".
157                                     "\tinit_sparc_fp_conv_attributes(res, src_mode, dest_mode);\n",
158 );
159
160 %compare_attr = (
161         sparc_attr_t            => "cmp_attr_sparc",
162         sparc_load_store_attr_t => "cmp_attr_sparc_load_store",
163         sparc_jmp_cond_attr_t   => "cmp_attr_sparc_jmp_cond",
164         sparc_jmp_switch_attr_t => "cmp_attr_sparc_jmp_switch",
165         sparc_save_attr_t       => "cmp_attr_sparc_save",
166         sparc_fp_attr_t         => "cmp_attr_sparc_fp",
167         sparc_fp_conv_attr_t    => "cmp_attr_sparc_fp_conv",
168 );
169
170 %custom_irn_flags = (
171         modifies_flags    => "sparc_arch_irn_flag_modifies_flags",
172         modifies_fp_flags => "sparc_arch_irn_flag_modifies_fp_flags",
173 );
174
175 # addressing modes: imm, reg, reg +/- imm, reg + reg
176 # max. imm = 13 bits signed (-4096 ... 4096)
177
178 my %cmp_operand_constructors = (
179         imm => {
180                 attr       => "ir_entity *immediate_entity, int32_t immediate_value",
181                 custominit => "sparc_set_attr_imm(res, immediate_entity, immediate_value);",
182                 reg_req    => { in => [ "gp" ], out => [ "flags" ] },
183                 ins        => [ "left" ],
184         },
185         reg => {
186                 reg_req    => { in => [ "gp", "gp" ], out => [ "flags" ] },
187                 ins        => [ "left", "right" ],
188         },
189 );
190
191 my %unop_operand_constructors = (
192         imm => {
193                 attr       => "ir_entity *immediate_entity, int32_t immediate_value",
194                 custominit => "sparc_set_attr_imm(res, immediate_entity, immediate_value);",
195                 reg_req    => { in => [], out => [ "gp" ] },
196         },
197         reg => {
198                 reg_req    => { in => [ "gp" ], out => [ "gp" ] },
199         },
200 );
201
202 my %binop_operand_constructors = (
203         imm => {
204                 attr       => "ir_entity *immediate_entity, int32_t immediate_value",
205                 custominit => "sparc_set_attr_imm(res, immediate_entity, immediate_value);",
206                 reg_req    => { in => [ "gp" ], out => [ "gp" ] },
207                 ins        => [ "left" ],
208         },
209         reg => {
210                 reg_req    => { in => [ "gp", "gp" ], out => [ "gp" ] },
211                 ins        => [ "left", "right" ],
212         },
213 );
214
215 my %div_operand_constructors = (
216         imm => {
217                 attr       => "ir_entity *immediate_entity, int32_t immediate_value",
218                 custominit => "sparc_set_attr_imm(res, immediate_entity, immediate_value);",
219                 reg_req    => { in => [ "gp", "gp" ], out => [ "gp" ] },
220         },
221         reg => {
222                 reg_req    => { in => [ "gp", "gp", "gp" ], out => [ "gp" ] },
223         },
224 );
225
226 my %float_binop_constructors = (
227         s => {
228                 reg_req => { in => [ "fp", "fp" ], out => [ "fp" ] },
229                 ins     => [ "left", "right" ],
230                 mode    => $mode_fp,
231         },
232         d => {
233                 reg_req => { in => [ "fp:a|2", "fp:a|2" ], out => [ "fp:a|2" ] },
234                 ins     => [ "left", "right" ],
235                 mode    => $mode_fp2,
236         },
237         q => {
238                 reg_req => { in => [ "fp:a|4", "fp:a|4" ], out => [ "fp:a|4" ] },
239                 ins     => [ "left", "right" ],
240                 mode    => $mode_fp4,
241         }
242 );
243
244 my %float_unop_constructors = (
245         s => {
246                 reg_req => { in => [ "fp" ], out => [ "fp" ] },
247                 ins     => [ "left", "right" ],
248                 mode    => $mode_fp,
249         },
250         d => {
251                 reg_req => { in => [ "fp:a|2" ], out => [ "fp:a|2" ] },
252                 ins     => [ "left", "right" ],
253                 mode    => $mode_fp2,
254         },
255         q => {
256                 reg_req => { in => [ "fp:a|4" ], out => [ "fp:a|4" ] },
257                 ins     => [ "left", "right" ],
258                 mode    => $mode_fp4,
259         }
260 );
261
262 %nodes = (
263
264 Add => {
265         irn_flags    => [ "rematerializable" ],
266         mode         => $mode_gp,
267         emit         => '. add %S1, %R2I, %D1',
268         constructors => \%binop_operand_constructors,
269 },
270
271 Sub => {
272         irn_flags    => [ "rematerializable" ],
273         mode         => $mode_gp,
274         emit         => '. sub %S1, %R2I, %D1',
275         constructors => \%binop_operand_constructors,
276 },
277
278
279 # Load / Store
280 Ld => {
281         op_flags  => [ "labeled", "fragile" ],
282         state     => "exc_pinned",
283         constructors => {
284                 "" => {
285                         reg_req   => { in => [ "gp", "none" ], out => [ "gp", "none" ] },
286                 },
287                 d => {
288                         reg_req => { in => [ "gp", "none" ], out => [ "gp:a|2", "none" ] },
289                 },
290         },
291         outs      => [ "res", "M" ],
292         ins       => [ "ptr", "mem" ],
293         attr_type => "sparc_load_store_attr_t",
294         attr      => "ir_mode *ls_mode, ir_entity *entity, int32_t offset, bool is_frame_entity",
295         emit      => '. ld%LM [%S1%O], %D1'
296 },
297
298 SetHi => {
299         irn_flags  => [ "rematerializable" ],
300         outs       => [ "res" ],
301         mode       => $mode_gp,
302         reg_req    => { in => [], out => [ "gp" ] },
303         attr       => "ir_entity *entity, int32_t immediate_value",
304         custominit => "sparc_set_attr_imm(res, entity, immediate_value);",
305         emit       => '. sethi %HIM, %D1'
306 },
307
308 St => {
309         op_flags  => [ "labeled", "fragile" ],
310         mode      => "mode_M",
311         state     => "exc_pinned",
312         constructors => {
313                 "" => {
314                         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
315                 },
316                 d => {
317                         reg_req   => { in => [ "gp", "gp:a|2", "none" ], out => [ "none" ] },
318                 },
319         },
320         ins       => [ "ptr", "val", "mem" ],
321         outs      => [ "M" ],
322         attr_type => "sparc_load_store_attr_t",
323         attr      => "ir_mode *ls_mode, ir_entity *entity, int32_t offset, bool is_frame_entity",
324         emit      => '. st%SM %S2, [%S1%O]'
325 },
326
327 Save => {
328         reg_req   => {
329                 in => [ "sp", "none"],
330                 out => [ "sp:I|S", "frame_pointer:I", "none" ]
331         },
332         ins       => [ "stack", "mem" ],
333         outs      => [ "stack", "frame", "mem" ],
334         attr      => "int initial_stacksize",
335         attr_type => "sparc_save_attr_t",
336         init_attr => "\tinit_sparc_save_attributes(res, initial_stacksize);",
337 },
338
339 SubSP => {
340         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "sp:I|S", "gp", "none" ] },
341         ins       => [ "stack", "size", "mem" ],
342         outs      => [ "stack", "addr", "M" ],
343         emit      => ". sub %S1, %S2, %D1\n",
344 },
345
346 AddSP => {
347         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "sp:I|S", "none" ] },
348         ins       => [ "stack", "size", "mem" ],
349         outs      => [ "stack", "M" ],
350         emit      => ". add %S1, %S2, %D1\n",
351 },
352
353 FrameAddr => {
354         op_flags   => [ "constlike" ],
355         irn_flags  => [ "rematerializable" ],
356         attr       => "ir_entity *entity, int32_t offset",
357         reg_req    => { in => [ "gp" ], out => [ "gp" ] },
358         ins        => [ "base" ],
359         attr_type  => "sparc_attr_t",
360         custominit => "sparc_set_attr_imm(res, entity, offset);",
361         mode       => $mode_gp,
362 },
363
364 Bicc => {
365         op_flags  => [ "labeled", "cfopcode", "forking" ],
366         state     => "pinned",
367         mode      => "mode_T",
368         attr_type => "sparc_jmp_cond_attr_t",
369         attr      => "pn_Cmp pnc, bool is_unsigned",
370         init_attr => "\tinit_sparc_jmp_cond_attr(res, pnc, is_unsigned);",
371         reg_req   => { in => [ "flags" ], out => [ "none", "none" ] },
372 },
373
374 fbfcc => {
375         op_flags  => [ "labeled", "cfopcode", "forking" ],
376         state     => "pinned",
377         mode      => "mode_T",
378         attr_type => "sparc_jmp_cond_attr_t",
379         attr      => "pn_Cmp pnc",
380         init_attr => "\tinit_sparc_jmp_cond_attr(res, pnc, false);",
381         reg_req   => { in => [ "fpflags" ], out => [ "none", "none" ] },
382 },
383
384 Ba => {
385         state     => "pinned",
386         op_flags  => [ "cfopcode" ],
387         irn_flags => [ "simple_jump" ],
388         reg_req   => { out => [ "none" ] },
389         mode      => "mode_X",
390 },
391
392 Call => {
393         irn_flags => [ "modifies_flags", "modifies_fp_flags" ],
394         state     => "exc_pinned",
395         arity     => "variable",
396         out_arity => "variable",
397         constructors => {
398                 imm => {
399                         attr       => "ir_entity *entity, int32_t offset",
400                         custominit => "\tsparc_set_attr_imm(res, entity, offset);",
401                         arity     => "variable",
402                         out_arity => "variable",
403                 },
404                 reg => {
405                         arity     => "variable",
406                         out_arity => "variable",
407                 }
408         },
409 },
410
411 Cmp => {
412         irn_flags    => [ "rematerializable", "modifies_flags" ],
413         emit         => '. cmp %S1, %R2I',
414         ins          => [ "left", "right" ],
415         mode         => $mode_flags,
416         constructors => \%cmp_operand_constructors,
417 },
418
419 Tst => {
420         irn_flags    => [ "rematerializable", "modifies_flags" ],
421         emit         => '. tst %S1',
422         mode         => $mode_flags,
423         reg_req      => { in => [ "gp" ], out => [ "flags" ] },
424         ins          => [ "val" ],
425 },
426
427 SwitchJmp => {
428         op_flags  => [ "labeled", "cfopcode", "forking" ],
429         irn_flags => [ "modifies_flags" ],
430         state     => "pinned",
431         mode      => "mode_T",
432         attr      => "int n_projs, long def_proj_num",
433         init_attr => "\tset_sparc_jmp_switch_n_projs(res, n_projs);\n".
434                                         "\tset_sparc_jmp_switch_default_proj_num(res, def_proj_num);",
435         reg_req   => { in => [ "gp" ], out => [ "none" ] },
436         attr_type => "sparc_jmp_switch_attr_t",
437 },
438
439 Sll => {
440         irn_flags    => [ "rematerializable" ],
441         mode         => $mode_gp,
442         emit         => '. sll %S1, %R2I, %D1',
443         constructors => \%binop_operand_constructors,
444 },
445
446 Slr => {
447         irn_flags    => [ "rematerializable" ],
448         mode         => $mode_gp,
449         emit         => '. srl %S1, %R2I, %D1',
450         constructors => \%binop_operand_constructors,
451 },
452
453 Sra => {
454         irn_flags    => [ "rematerializable" ],
455         mode         => $mode_gp,
456         emit         => '. sra %S1, %R2I, %D1',
457         constructors => \%binop_operand_constructors,
458 },
459
460 And => {
461         irn_flags    => [ "rematerializable" ],
462         mode         => $mode_gp,
463         emit         => '. and %S1, %R2I, %D1',
464         constructors => \%binop_operand_constructors,
465 },
466
467 AndN => {
468         irn_flags => [ "rematerializable" ],
469         mode      => $mode_gp,
470         emit      => '. andn %S1, %R2I, %D1',
471         constructors => \%binop_operand_constructors,
472 },
473
474 Or => {
475         irn_flags    => [ "rematerializable" ],
476         mode         => $mode_gp,
477         emit         => '. or %S1, %R2I, %D1',
478         constructors => \%binop_operand_constructors,
479 },
480
481 OrN => {
482         irn_flags => [ "rematerializable" ],
483         mode      => $mode_gp,
484         emit      => '. orn %S1, %R2I, %D1',
485         constructors => \%binop_operand_constructors,
486 },
487
488 Xor => {
489         irn_flags    => [ "rematerializable" ],
490         mode         => $mode_gp,
491         emit         => '. xor %S1, %R2I, %D1',
492         constructors => \%binop_operand_constructors,
493 },
494
495 XNor => {
496         irn_flags => [ "rematerializable" ],
497         mode      => $mode_gp,
498         emit      => '. xnor %S1, %R2I, %D1',
499         constructors => \%binop_operand_constructors,
500 },
501
502 Mul => {
503         irn_flags    => [ "rematerializable" ],
504         mode         => $mode_gp,
505         emit         => '. smul %S1, %R2I, %D1',
506         constructors => \%binop_operand_constructors,
507 },
508
509 Mulh => {
510         irn_flags    => [ "rematerializable" ],
511         outs         => [ "low", "high" ],
512         constructors => \%binop_operand_constructors,
513 },
514
515 SDiv => {
516         irn_flags    => [ "rematerializable" ],
517         state        => "exc_pinned",
518         ins          => [ "dividend_high", "dividend_low", "divisor" ],
519         outs         => [ "res", "M" ],
520         constructors => \%div_operand_constructors,
521 },
522
523 UDiv => {
524         irn_flags    => [ "rematerializable" ],
525         state        => "exc_pinned",
526         ins          => [ "dividend_high", "dividend_low", "divisor" ],
527         outs         => [ "res", "M" ],
528         constructors => \%div_operand_constructors,
529 },
530
531 fcmp => {
532         irn_flags => [ "rematerializable", "modifies_fp_flags" ],
533         emit      => '. fcmp%FPM %S1, %S2',
534         attr_type => "sparc_fp_attr_t",
535         attr      => "ir_mode *fp_mode",
536         mode      => $mode_fpflags,
537         constructors => {
538                 s => {
539                         reg_req => { in => [ "fp", "fp" ], out => [ "fpflags" ] },
540                 },
541                 d => {
542                         reg_req => { in => [ "fp:a|2", "fp:a|2" ], out => [ "fpflags" ] },
543                 },
544                 q => {
545                         reg_req => { in => [ "fp:a|4", "fp:a|4" ], out => [ "fpflags" ] },
546                 },
547         },
548 },
549
550 fadd => {
551         op_flags     => [ "commutative" ],
552         irn_flags    => [ "rematerializable" ],
553         emit         => '. fadd%FPM %S1, %S2, %D1',
554         attr_type    => "sparc_fp_attr_t",
555         attr         => "ir_mode *fp_mode",
556         constructors => \%float_binop_constructors,
557 },
558
559 fsub => {
560         irn_flags    => [ "rematerializable" ],
561         emit         => '. fsub%FPM %S1, %S2, %D1',
562         attr_type    => "sparc_fp_attr_t",
563         attr         => "ir_mode *fp_mode",
564         constructors => \%float_binop_constructors,
565 },
566
567 fmul => {
568         irn_flags    => [ "rematerializable" ],
569         op_flags     => [ "commutative" ],
570         emit         =>'. fmul%FPM %S1, %S2, %D1',
571         attr_type    => "sparc_fp_attr_t",
572         attr         => "ir_mode *fp_mode",
573         constructors => \%float_binop_constructors,
574 },
575
576 fdiv => {
577         irn_flags    => [ "rematerializable" ],
578         emit         => '. fdiv%FPM %S1, %S2, %D1',
579         attr_type    => "sparc_fp_attr_t",
580         attr         => "ir_mode *fp_mode",
581         outs         => [ "res", "M" ],
582         constructors => \%float_binop_constructors,
583 },
584
585 fneg => {
586         irn_flags => [ "rematerializable" ],
587         reg_req   => { in => [ "fp" ], out => [ "fp" ] },
588         # note that we only need the first register even for wide-values
589         emit      => '. fneg %S1, %D1',
590         attr_type => "sparc_fp_attr_t",
591         attr      => "ir_mode *fp_mode",
592         constructors => \%float_unop_constructors,
593 },
594
595 "fabs" => {
596         irn_flags    => [ "rematerializable" ],
597         # note that we only need the first register even for wide-values
598         emit         => '. fabs %S1, %D1',
599         attr_type    => "sparc_fp_attr_t",
600         attr         => "ir_mode *fp_mode",
601         constructors => \%float_unop_constructors,
602 },
603
604 fftof => {
605         irn_flags => [ "rematerializable" ],
606         emit      => '. f%FCONVS%.to%FCONVD %S1, %D1',
607         attr_type => "sparc_fp_conv_attr_t",
608         attr      => "ir_mode *src_mode, ir_mode *dest_mode",
609         constructors => {
610                 s_d => {
611                         reg_req => { in => [ "fp" ], out => [ "fp:a|2" ] },
612                         mode    => $mode_fp2,
613                 },
614                 s_q => {
615                         reg_req => { in => [ "fp" ], out => [ "fp:a|2" ] },
616                         mode    => $mode_fp4,
617                 },
618                 d_s => {
619                         reg_req => { in => [ "fp:a|2" ], out => [ "fp" ] },
620                         mode    => $mode_fp,
621                 },
622                 d_q => {
623                         reg_req => { in => [ "fp:a|2" ], out => [ "fp:a|4" ] },
624                         mode    => $mode_fp4,
625                 },
626                 q_s => {
627                         reg_req => { in => [ "fp:a|4" ], out => [ "fp" ] },
628                         mode    => $mode_fp,
629                 },
630                 q_d => {
631                         reg_req => { in => [ "fp:a|4" ], out => [ "fp:a|2" ] },
632                         mode    => $mode_fp2,
633                 },
634         },
635 },
636
637 fitof => {
638         irn_flags => [ "rematerializable" ],
639         reg_req   => { in => [ "gp" ], out => [ "fp" ] },
640         emit      => '. fito%FPM %S1, %D1',
641         attr_type => "sparc_fp_attr_t",
642         attr      => "ir_mode *fp_mode",
643         constructors => {
644                 s => {
645                         reg_req => { in => [ "gp" ], out => [ "fp" ] },
646                         mode    => $mode_fp,
647                 },
648                 d => {
649                         reg_req => { in => [ "gp" ], out => [ "fp:a|2" ] },
650                         mode    => $mode_fp2,
651                 },
652                 q => {
653                         reg_req => { in => [ "gp" ], out => [ "fp:a|4" ] },
654                         mode    => $mode_fp4,
655                 },
656         },
657 },
658
659 fftoi => {
660         irn_flags => [ "rematerializable" ],
661         reg_req   => { in => [ "fp" ], out => [ "gp" ] },
662         emit      => '. f%FPM.toi %S1, %D1',
663         attr_type => "sparc_fp_attr_t",
664         attr      => "ir_mode *fp_mode",
665         mode      => $mode_gp,
666         constructors => {
667                 s => {
668                         reg_req => { in => [ "gp" ], out => [ "gp" ] },
669                 },
670                 d => {
671                         reg_req => { in => [ "fp:a|2" ], out => [ "gp" ] },
672                 },
673                 q => {
674                         reg_req => { in => [ "fp:a|4" ], out => [ "gp" ] },
675                 },
676         },
677 },
678
679 Ldf => {
680         op_flags  => [ "labeled", "fragile" ],
681         state     => "exc_pinned",
682         constructors => {
683                 s => {
684                         reg_req => { in => [ "gp", "none" ], out => [ "fp", "none" ] },
685                 },
686                 d => {
687                         reg_req => { in => [ "gp", "none" ], out => [ "fp:a|2", "none" ] },
688                 },
689                 q => {
690                         reg_req => { in => [ "gp", "none" ], out => [ "fp:a|4", "none" ] },
691                 },
692         },
693         ins       => [ "ptr", "mem" ],
694         outs      => [ "res", "M" ],
695         attr_type => "sparc_load_store_attr_t",
696         attr      => "ir_mode *ls_mode, ir_entity *entity, int32_t offset, bool is_frame_entity",
697         emit      => '. ld%FLSM [%S1%O], %D1'
698 },
699
700 Stf => {
701         op_flags  => [ "labeled", "fragile" ],
702         state     => "exc_pinned",
703         constructors => {
704                 s => {
705                         reg_req => { in => [ "gp", "fp", "none" ], out => [ "none" ] },
706                 },
707                 d => {
708                         reg_req => { in => [ "gp", "fp:a|2", "none" ], out => [ "none" ] },
709                 },
710                 q => {
711                         reg_req => { in => [ "gp", "fp:a|4", "none" ], out => [ "none" ] },
712                 },
713         },
714         ins       => [ "ptr", "val", "mem" ],
715         outs      => [ "M" ],
716         attr_type => "sparc_load_store_attr_t",
717         attr      => "ir_mode *ls_mode, ir_entity *entity, int32_t offset, bool is_frame_entity",
718         emit      => '. st%FLSM %S2, [%S1%O]',
719         mode      => 'mode_M',
720 },
721
722 ); # end of %nodes