- implemented ia32_ClimbFrame() pseudo-instruction
[libfirm] / ir / be / ia32 / ia32_spec.pl
1 # Creation: 2005/10/19
2 # $Id$
3 # This is the specification for the ia32 assembler Firm-operations
4
5 use File::Basename;
6
7 $new_emit_syntax = 1;
8 my $myname = $0;
9
10 # the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
11 $arch = "ia32";
12
13 # The node description is done as a perl hash initializer with the
14 # following structure:
15 #
16 # %nodes = (
17 #
18 # <op-name> => {
19 #   op_flags  => "N|L|C|X|I|F|Y|H|c|K",
20 #   irn_flags => "R|N"
21 #   arity     => "0|1|2|3 ... |variable|dynamic|any",
22 #   state     => "floats|pinned|mem_pinned|exc_pinned",
23 #   args      => [
24 #                    { type => "type 1", name => "name 1" },
25 #                    { type => "type 2", name => "name 2" },
26 #                    ...
27 #                  ],
28 #   comment   => "any comment for constructor",
29 #   reg_req   => { in => [ "reg_class|register" ], out => [ "reg_class|register|in_rX" ] },
30 #   cmp_attr  => "c source code for comparing node attributes",
31 #   outs      => { "out1", "out2" } # optional, creates pn_op_out1, ... consts
32 #   ins       => { "in1", "in2" }   # optional, creates n_op_in1, ... consts
33 #   mode      => "mode_Iu"          # optional, predefines the mode
34 #   emit      => "emit code with templates",
35 #   attr      => "additional attribute arguments for constructor",
36 #   init_attr => "emit attribute initialization template",
37 #   rd_constructor => "c source code which constructs an ir_node",
38 #   hash_func => "name of the hash function for this operation",
39 #   latency   => "latency of this operation (can be float)"
40 #   attr_type => "name of the attribute struct",
41 #   modified_flags =>  [ "CF", ... ] # optional, list of modified flags
42 # },
43 #
44 # ... # (all nodes you need to describe)
45 #
46 # ); # close the %nodes initializer
47
48 # op_flags: flags for the operation, OPTIONAL (default is "N")
49 # the op_flags correspond to the firm irop_flags:
50 #   N   irop_flag_none
51 #   L   irop_flag_labeled
52 #   C   irop_flag_commutative
53 #   X   irop_flag_cfopcode
54 #   I   irop_flag_ip_cfopcode
55 #   F   irop_flag_fragile
56 #   Y   irop_flag_forking
57 #   H   irop_flag_highlevel
58 #   c   irop_flag_constlike
59 #   K   irop_flag_keep
60 #   NB  irop_flag_dump_noblock
61 #   NI  irop_flag_dump_noinput
62 #
63 # irn_flags: special node flags, OPTIONAL (default is 0)
64 # following irn_flags are supported:
65 #   R   rematerializeable
66 #   N   not spillable
67 #
68 # state: state of the operation, OPTIONAL (default is "floats")
69 #
70 # arity: arity of the operation, MUST NOT BE OMITTED
71 #
72 # args:  the OPTIONAL arguments of the node constructor (debug, irg and block
73 #        are always the first 3 arguments and are always autmatically
74 #        created)
75 #        If this key is missing the following arguments will be created:
76 #        for i = 1 .. arity: ir_node *op_i
77 #        ir_mode *mode
78 #
79 # outs:  if a node defines more than one output, the names of the projections
80 #        nodes having outs having automatically the mode mode_T
81 #        example: [ "frame", "stack", "M" ]
82 #
83 # comment: OPTIONAL comment for the node constructor
84 #
85 # rd_constructor: for every operation there will be a
86 #      new_rd_<arch>_<op-name> function with the arguments from above
87 #      which creates the ir_node corresponding to the defined operation
88 #      you can either put the complete source code of this function here
89 #
90 #      This key is OPTIONAL. If omitted, the following constructor will
91 #      be created:
92 #      if (!op_<arch>_<op-name>) assert(0);
93 #      for i = 1 to arity
94 #         set in[i] = op_i
95 #      done
96 #      res = new_ir_node(db, irg, block, op_<arch>_<op-name>, mode, arity, in)
97 #      return res
98 #
99 # NOTE: rd_constructor and args are only optional if and only if arity is 0,1,2 or 3
100 #
101
102 # register types:
103 #   0 - no special type
104 #   1 - caller save (register must be saved by the caller of a function)
105 #   2 - callee save (register must be saved by the called function)
106 #   4 - ignore (do not assign this register)
107 #   8 - emitter can choose an arbitrary register of this class
108 #  16 - the register is a virtual one
109 #  32 - register represents a state
110 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
111 %reg_classes = (
112         gp => [
113                 { name => "edx", type => 1 },
114                 { name => "ecx", type => 1 },
115                 { name => "eax", type => 1 },
116                 { name => "ebx", type => 2 },
117                 { name => "esi", type => 2 },
118                 { name => "edi", type => 2 },
119                 { name => "ebp", type => 2 },
120                 { name => "esp", type => 4 },
121                 { name => "gp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
122                 { name => "gp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
123                 { mode => "mode_Iu" }
124         ],
125         mmx => [
126                 { name => "mm0", type => 4 },
127                 { name => "mm1", type => 4 },
128                 { name => "mm2", type => 4 },
129                 { name => "mm3", type => 4 },
130                 { name => "mm4", type => 4 },
131                 { name => "mm5", type => 4 },
132                 { name => "mm6", type => 4 },
133                 { name => "mm7", type => 4 },
134                 { mode => "mode_E", flags => "manual_ra" }
135         ],
136         xmm => [
137                 { name => "xmm0", type => 1 },
138                 { name => "xmm1", type => 1 },
139                 { name => "xmm2", type => 1 },
140                 { name => "xmm3", type => 1 },
141                 { name => "xmm4", type => 1 },
142                 { name => "xmm5", type => 1 },
143                 { name => "xmm6", type => 1 },
144                 { name => "xmm7", type => 1 },
145                 { name => "xmm_NOREG", type => 4 | 16 },     # we need a dummy register for NoReg nodes
146                 { name => "xmm_UKNWN", type => 4 | 8 | 16},  # we need a dummy register for Unknown nodes
147                 { mode => "mode_E" }
148         ],
149         vfp => [
150                 { name => "vf0", type => 1 },
151                 { name => "vf1", type => 1 },
152                 { name => "vf2", type => 1 },
153                 { name => "vf3", type => 1 },
154                 { name => "vf4", type => 1 },
155                 { name => "vf5", type => 1 },
156                 { name => "vf6", type => 1 },
157                 { name => "vf7", type => 1 },
158                 { name => "vfp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
159                 { name => "vfp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
160                 { mode => "mode_E" }
161         ],
162         st => [
163                 { name => "st0", realname => "st",    type => 4 },
164                 { name => "st1", realname => "st(1)", type => 4 },
165                 { name => "st2", realname => "st(2)", type => 4 },
166                 { name => "st3", realname => "st(3)", type => 4 },
167                 { name => "st4", realname => "st(4)", type => 4 },
168                 { name => "st5", realname => "st(5)", type => 4 },
169                 { name => "st6", realname => "st(6)", type => 4 },
170                 { name => "st7", realname => "st(7)", type => 4 },
171                 { mode => "mode_E", flags => "manual_ra" }
172         ],
173         fp_cw => [      # the floating point control word
174                 { name => "fpcw", type => 4|32 },
175                 { mode => "mode_fpcw", flags => "manual_ra|state" }
176         ],
177         flags => [
178                 { name => "eflags", type => 0 },
179                 { mode => "mode_Iu", flags => "manual_ra" }
180         ],
181 ); # %reg_classes
182
183 %cpu = (
184         GP     => [ 1, "GP_EAX", "GP_EBX", "GP_ECX", "GP_EDX", "GP_ESI", "GP_EDI", "GP_EBP" ],
185         SSE    => [ 1, "SSE_XMM0", "SSE_XMM1", "SSE_XMM2", "SSE_XMM3", "SSE_XMM4", "SSE_XMM5", "SSE_XMM6", "SSE_XMM7" ],
186         VFP    => [ 1, "VFP_VF0", "VFP_VF1", "VFP_VF2", "VFP_VF3", "VFP_VF4", "VFP_VF5", "VFP_VF6", "VFP_VF7" ],
187         BRANCH => [ 1, "BRANCH1", "BRANCH2" ],
188 ); # %cpu
189
190 %vliw = (
191         bundle_size       => 1,
192         bundels_per_cycle => 1
193 ); # vliw
194
195 %emit_templates = (
196         S0 => "${arch}_emit_source_register(node, 0);",
197         S1 => "${arch}_emit_source_register(node, 1);",
198         S2 => "${arch}_emit_source_register(node, 2);",
199         S3 => "${arch}_emit_source_register(node, 3);",
200         SB1 => "${arch}_emit_8bit_source_register_or_immediate(node, 1);",
201         SB2 => "${arch}_emit_8bit_source_register_or_immediate(node, 2);",
202         SB3 => "${arch}_emit_8bit_source_register_or_immediate(node, 3);",
203         SI1 => "${arch}_emit_source_register_or_immediate(node, 1);",
204         SI3 => "${arch}_emit_source_register_or_immediate(node, 3);",
205         D0 => "${arch}_emit_dest_register(node, 0);",
206         D1 => "${arch}_emit_dest_register(node, 1);",
207         DB0 => "${arch}_emit_8bit_dest_register(node, 0);",
208         X0 => "${arch}_emit_x87_register(node, 0);",
209         X1 => "${arch}_emit_x87_register(node, 1);",
210         SE => "${arch}_emit_extend_suffix(get_ia32_ls_mode(node));",
211         ME => "if(get_mode_size_bits(get_ia32_ls_mode(node)) != 32)\n
212                    ia32_emit_mode_suffix(node);",
213         M  => "${arch}_emit_mode_suffix(node);",
214         XM => "${arch}_emit_x87_mode_suffix(node);",
215         XXM => "${arch}_emit_xmm_mode_suffix(node);",
216         XSD => "${arch}_emit_xmm_mode_suffix_s(node);",
217         AM => "${arch}_emit_am(node);",
218         unop3 => "${arch}_emit_unop(node, n_ia32_unary_op);",
219         unop4 => "${arch}_emit_unop(node, n_ia32_binary_right);",
220         binop => "${arch}_emit_binop(node);",
221         x87_binop => "${arch}_emit_x87_binop(node);",
222         CMP0  => "${arch}_emit_cmp_suffix_node(node, 0);",
223         CMP3  => "${arch}_emit_cmp_suffix_node(node, 3);",
224 );
225
226 #--------------------------------------------------#
227 #                        _                         #
228 #                       (_)                        #
229 #  _ __   _____      __  _ _ __    ___  _ __  ___  #
230 # | '_ \ / _ \ \ /\ / / | | '__|  / _ \| '_ \/ __| #
231 # | | | |  __/\ V  V /  | | |    | (_) | |_) \__ \ #
232 # |_| |_|\___| \_/\_/   |_|_|     \___/| .__/|___/ #
233 #                                      | |         #
234 #                                      |_|         #
235 #--------------------------------------------------#
236
237 $default_op_attr_type = "ia32_op_attr_t";
238 $default_attr_type    = "ia32_attr_t";
239 $default_copy_attr    = "ia32_copy_attr";
240
241 sub ia32_custom_init_attr {
242         my $node = shift;
243         my $name = shift;
244         my $res = "";
245
246         if(defined($node->{modified_flags})) {
247                 $res .= "\tarch_irn_add_flags(res, arch_irn_flags_modify_flags);\n";
248         }
249         if(defined($node->{am})) {
250                 my $am = $node->{am};
251                 if($am eq "source,unary") {
252                         $res .= "\tset_ia32_am_support(res, ia32_am_unary);";
253                 } elsif($am eq "source,binary") {
254                         $res .= "\tset_ia32_am_support(res, ia32_am_binary);";
255                 } elsif($am eq "none") {
256                         # nothing to do
257                 } else {
258                         die("Invalid address mode '$am' specified on op $name");
259                 }
260                 if($am ne "none") {
261                         if($node->{state} ne "exc_pinned"
262                                         and $node->{state} ne "pinned") {
263                                 die("AM nodes must have pinned or AM pinned state ($name)");
264                         }
265                 }
266         }
267         return $res;
268 }
269 $custom_init_attr_func = \&ia32_custom_init_attr;
270
271 %init_attr = (
272         ia32_asm_attr_t =>
273                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
274                 "\tinit_ia32_x87_attributes(res);".
275                 "\tinit_ia32_asm_attributes(res);",
276         ia32_attr_t     =>
277                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
278         ia32_call_attr_t =>
279                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
280                 "\tinit_ia32_call_attributes(res, pop, call_tp);",
281         ia32_condcode_attr_t =>
282                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
283                 "\tinit_ia32_condcode_attributes(res, pnc);",
284         ia32_copyb_attr_t =>
285                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
286                 "\tinit_ia32_copyb_attributes(res, size);",
287         ia32_immediate_attr_t =>
288                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
289                 "\tinit_ia32_immediate_attributes(res, symconst, symconst_sign, offset);",
290         ia32_x87_attr_t =>
291                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
292                 "\tinit_ia32_x87_attributes(res);",
293         ia32_climbframe_attr_t =>
294                 "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
295                 "\tinit_ia32_climbframe_attributes(res, count);",
296 );
297
298 %compare_attr = (
299         ia32_asm_attr_t       => "ia32_compare_asm_attr",
300         ia32_attr_t            => "ia32_compare_nodes_attr",
301         ia32_call_attr_t       => "ia32_compare_call_attr",
302         ia32_condcode_attr_t   => "ia32_compare_condcode_attr",
303         ia32_copyb_attr_t      => "ia32_compare_copyb_attr",
304         ia32_immediate_attr_t  => "ia32_compare_immediate_attr",
305         ia32_x87_attr_t        => "ia32_compare_x87_attr",
306         ia32_climbframe_attr_t => "ia32_compare_climbframe_attr",
307 );
308
309 %operands = (
310 );
311
312 $mode_xmm           = "mode_E";
313 $mode_gp            = "mode_Iu";
314 $mode_flags         = "mode_Iu";
315 $mode_fpcw          = "mode_fpcw";
316 $status_flags       = [ "CF", "PF", "AF", "ZF", "SF", "OF" ];
317 $status_flags_wo_cf = [       "PF", "AF", "ZF", "SF", "OF" ];
318 $fpcw_flags         = [ "FP_IM", "FP_DM", "FP_ZM", "FP_OM", "FP_UM", "FP_PM",
319                         "FP_PC0", "FP_PC1", "FP_RC0", "FP_RC1", "FP_X" ];
320
321 %nodes = (
322
323 Immediate => {
324         state     => "pinned",
325         op_flags  => "c",
326         reg_req   => { out => [ "gp_NOREG:I" ] },
327         attr      => "ir_entity *symconst, int symconst_sign, long offset",
328         attr_type => "ia32_immediate_attr_t",
329         hash_func => "ia32_hash_Immediate",
330         latency   => 0,
331         mode      => $mode_gp,
332 },
333
334 Asm => {
335         mode      => "mode_T",
336         arity     => "variable",
337         out_arity => "variable",
338         attr_type => "ia32_asm_attr_t",
339         attr      => "ident *asm_text, const ia32_asm_reg_t *register_map",
340         init_attr => "attr->asm_text = asm_text;\n".
341                      "\tattr->register_map = register_map;\n",
342         latency   => 10,
343         modified_flags => $status_flags,
344 },
345
346 # "allocates" a free register
347 ProduceVal => {
348         op_flags  => "c",
349         irn_flags => "R",
350         reg_req   => { out => [ "gp" ] },
351         emit      => "",
352         units     => [ ],
353         latency   => 0,
354         mode      => $mode_gp,
355         cmp_attr  => "return 1;",
356 },
357
358 #-----------------------------------------------------------------#
359 #  _       _                                         _            #
360 # (_)     | |                                       | |           #
361 #  _ _ __ | |_ ___  __ _  ___ _ __   _ __   ___   __| | ___  ___  #
362 # | | '_ \| __/ _ \/ _` |/ _ \ '__| | '_ \ / _ \ / _` |/ _ \/ __| #
363 # | | | | | ||  __/ (_| |  __/ |    | | | | (_) | (_| |  __/\__ \ #
364 # |_|_| |_|\__\___|\__, |\___|_|    |_| |_|\___/ \__,_|\___||___/ #
365 #                   __/ |                                         #
366 #                  |___/                                          #
367 #-----------------------------------------------------------------#
368
369 # commutative operations
370
371 Add => {
372         irn_flags => "R",
373         state     => "exc_pinned",
374         reg_req   => { in  => [ "gp", "gp", "none", "gp", "gp" ],
375                        out => [ "in_r4 in_r5", "flags", "none" ] },
376         ins       => [ "base", "index", "mem", "left", "right" ],
377         outs      => [ "res", "flags", "M" ],
378         emit      => '. add%M %binop',
379         am        => "source,binary",
380         units     => [ "GP" ],
381         latency   => 1,
382         mode      => $mode_gp,
383         modified_flags => $status_flags
384 },
385
386 AddMem => {
387         irn_flags => "R",
388         state     => "exc_pinned",
389         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
390         ins       => [ "base", "index", "mem", "val" ],
391         emit      => ". add%M %SI3, %AM",
392         units     => [ "GP" ],
393         latency   => 1,
394         mode      => "mode_M",
395         modified_flags => $status_flags
396 },
397
398 AddMem8Bit => {
399         irn_flags => "R",
400         state     => "exc_pinned",
401         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
402         ins       => [ "base", "index", "mem", "val" ],
403         emit      => ". add%M %SB3, %AM",
404         units     => [ "GP" ],
405         latency   => 1,
406         mode      => "mode_M",
407         modified_flags => $status_flags
408 },
409
410 Adc => {
411         state     => "exc_pinned",
412         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ],
413                        out => [ "in_r4 in_r5", "flags", "none" ] },
414         ins       => [ "base", "index", "mem", "left", "right", "eflags" ],
415         outs      => [ "res", "flags", "M" ],
416         emit      => '. adc%M %binop',
417         am        => "source,binary",
418         units     => [ "GP" ],
419         latency   => 1,
420         mode      => $mode_gp,
421         modified_flags => $status_flags
422 },
423
424 l_Add => {
425         op_flags  => "C",
426         reg_req   => { in => [ "none", "none" ], out => [ "none" ] },
427         ins       => [ "left", "right" ],
428 },
429
430 l_Adc => {
431         reg_req   => { in => [ "none", "none", "none" ], out => [ "none" ] },
432         ins       => [ "left", "right", "eflags" ],
433 },
434
435 Mul => {
436         # we should not rematrialize this node. It produces 2 results and has
437         # very strict constraints
438         state     => "exc_pinned",
439         reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ],
440                        out => [ "eax", "flags", "edx", "none" ] },
441         ins       => [ "base", "index", "mem", "left", "right" ],
442         emit      => '. mul%M %unop4',
443         outs      => [ "res_low", "flags", "res_high", "M" ],
444         am        => "source,binary",
445         latency   => 10,
446         units     => [ "GP" ],
447         modified_flags => $status_flags
448 },
449
450 l_Mul => {
451         # we should not rematrialize this node. It produces 2 results and has
452         # very strict constraints
453         op_flags  => "C",
454         cmp_attr  => "return 1;",
455         outs      => [ "EAX", "flags", "EDX", "M" ],
456         arity     => 2
457 },
458
459 IMul => {
460         irn_flags => "R",
461         state     => "exc_pinned",
462         # TODO: adjust out requirements for the 3 operand form
463         # (no need for should_be_same then)
464         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
465                            out => [ "in_r4 in_r5", "flags", "none" ] },
466         ins       => [ "base", "index", "mem", "left", "right" ],
467         outs      => [ "res", "flags", "M" ],
468         am        => "source,binary",
469         latency   => 5,
470         units     => [ "GP" ],
471         mode      => $mode_gp,
472         modified_flags => $status_flags
473 },
474
475 IMul1OP => {
476         irn_flags => "R",
477         state     => "exc_pinned",
478         reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ],
479                        out => [ "eax", "flags", "edx", "none" ] },
480         ins       => [ "base", "index", "mem", "left", "right" ],
481         emit      => '. imul%M %unop4',
482         outs      => [ "res_low", "flags", "res_high", "M" ],
483         am        => "source,binary",
484         latency   => 5,
485         units     => [ "GP" ],
486         modified_flags => $status_flags
487 },
488
489 l_IMul => {
490         op_flags  => "C",
491         cmp_attr  => "return 1;",
492         outs      => [ "res_low", "res_high", "M" ],
493         arity     => 2
494 },
495
496 And => {
497         irn_flags => "R",
498         state     => "exc_pinned",
499         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
500                            out => [ "in_r4 in_r5", "flags", "none" ] },
501         ins       => [ "base", "index", "mem", "left", "right" ],
502         outs      => [ "res", "flags", "M" ],
503         op_modes  => "commutative | am | immediate | mode_neutral",
504         am        => "source,binary",
505         emit      => '. and%M %binop',
506         units     => [ "GP" ],
507         latency   => 1,
508         mode      => $mode_gp,
509         modified_flags => $status_flags
510 },
511
512 AndMem => {
513         irn_flags => "R",
514         state     => "exc_pinned",
515         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
516         ins       => [ "base", "index", "mem", "val" ],
517         emit      => '. and%M %SI3, %AM',
518         units     => [ "GP" ],
519         latency   => 1,
520         mode      => "mode_M",
521         modified_flags => $status_flags
522 },
523
524 AndMem8Bit => {
525         irn_flags => "R",
526         state     => "exc_pinned",
527         reg_req   => { in => [ "gp", "gp", "none",  "eax ebx ecx edx" ], out => [ "none" ] },
528         ins       => [ "base", "index", "mem", "val" ],
529         emit      => '. and%M %SB3, %AM',
530         units     => [ "GP" ],
531         latency   => 1,
532         mode      => "mode_M",
533         modified_flags => $status_flags
534 },
535
536 Or => {
537         irn_flags => "R",
538         state     => "exc_pinned",
539         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
540                        out => [ "in_r4 in_r5", "flags", "none" ] },
541         ins       => [ "base", "index", "mem", "left", "right" ],
542         outs      => [ "res", "flags", "M" ],
543         am        => "source,binary",
544         emit      => '. or%M %binop',
545         units     => [ "GP" ],
546         latency   => 1,
547         mode      => $mode_gp,
548         modified_flags => $status_flags
549 },
550
551 OrMem => {
552         irn_flags => "R",
553         state     => "exc_pinned",
554         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
555         ins       => [ "base", "index", "mem", "val" ],
556         emit      => '. or%M %SI3, %AM',
557         units     => [ "GP" ],
558         latency   => 1,
559         mode      => "mode_M",
560         modified_flags => $status_flags
561 },
562
563 OrMem8Bit => {
564         irn_flags => "R",
565         state     => "exc_pinned",
566         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
567         ins       => [ "base", "index", "mem", "val" ],
568         emit      => '. or%M %SB3, %AM',
569         units     => [ "GP" ],
570         latency   => 1,
571         mode      => "mode_M",
572         modified_flags => $status_flags
573 },
574
575 Xor => {
576         irn_flags => "R",
577         state     => "exc_pinned",
578         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
579                        out => [ "in_r4 in_r5", "flags", "none" ] },
580         ins       => [ "base", "index", "mem", "left", "right" ],
581         outs      => [ "res", "flags", "M" ],
582         am        => "source,binary",
583         emit      => '. xor%M %binop',
584         units     => [ "GP" ],
585         latency   => 1,
586         mode      => $mode_gp,
587         modified_flags => $status_flags
588 },
589
590 Xor0 => {
591         op_flags  => "c",
592         irn_flags => "R",
593         reg_req   => { out => [ "gp", "flags" ] },
594         outs      => [ "res", "flags" ],
595         emit      => ". xor%M %D0, %D0",
596         units     => [ "GP" ],
597         latency   => 1,
598         mode      => $mode_gp,
599         modified_flags => $status_flags
600 },
601
602 XorMem => {
603         irn_flags => "R",
604         state     => "exc_pinned",
605         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
606         ins       => [ "base", "index", "mem", "val" ],
607         emit      => '. xor%M %SI3, %AM',
608         units     => [ "GP" ],
609         latency   => 1,
610         mode      => "mode_M",
611         modified_flags => $status_flags
612 },
613
614 XorMem8Bit => {
615         irn_flags => "R",
616         state     => "exc_pinned",
617         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
618         ins       => [ "base", "index", "mem", "val" ],
619         emit      => '. xor%M %SB3, %AM',
620         units     => [ "GP" ],
621         latency   => 1,
622         mode      => "mode_M",
623         modified_flags => $status_flags
624 },
625
626 # not commutative operations
627
628 Sub => {
629         irn_flags => "R",
630         state     => "exc_pinned",
631         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
632                        out => [ "in_r4", "flags", "none" ] },
633         ins       => [ "base", "index", "mem", "minuend", "subtrahend" ],
634         outs      => [ "res", "flags", "M" ],
635         am        => "source,binary",
636         emit      => '. sub%M %binop',
637         units     => [ "GP" ],
638         latency   => 1,
639         mode      => $mode_gp,
640         modified_flags => $status_flags
641 },
642
643 SubMem => {
644         irn_flags => "R",
645         state     => "exc_pinned",
646         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
647         ins       => [ "base", "index", "mem", "subtrahend" ],
648         emit      => '. sub%M %SI3, %AM',
649         units     => [ "GP" ],
650         latency   => 1,
651         mode      => 'mode_M',
652         modified_flags => $status_flags
653 },
654
655 SubMem8Bit => {
656         irn_flags => "R",
657         state     => "exc_pinned",
658         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
659         ins       => [ "base", "index", "mem", "subtrahend" ],
660         emit      => '. sub%M %SB3, %AM',
661         units     => [ "GP" ],
662         latency   => 1,
663         mode      => 'mode_M',
664         modified_flags => $status_flags
665 },
666
667 Sbb => {
668         state     => "exc_pinned",
669         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ],
670                        out => [ "in_r4 !in_r5", "flags", "none" ] },
671         ins       => [ "base", "index", "mem", "minuend", "subtrahend", "eflags" ],
672         outs      => [ "res", "flags", "M" ],
673         am        => "source,binary",
674         emit      => '. sbb%M %binop',
675         units     => [ "GP" ],
676         latency   => 1,
677         mode      => $mode_gp,
678         modified_flags => $status_flags
679 },
680
681 Sbb0 => {
682         irn_flags => "R",
683         reg_req   => { in => [ "flags" ], out => [ "gp", "flags" ] },
684         outs      => [ "res", "flags" ],
685         emit      => ". sbb%M %D0, %D0",
686         units     => [ "GP" ],
687         latency   => 1,
688         mode      => $mode_gp,
689         modified_flags => $status_flags
690 },
691
692 l_Sub => {
693         reg_req   => { in => [ "none", "none" ], out => [ "none" ] },
694         ins       => [ "minuend", "subtrahend" ],
695 },
696
697 l_Sbb => {
698         reg_req   => { in => [ "none", "none", "none" ], out => [ "none" ] },
699         ins       => [ "minuend", "subtrahend", "eflags" ],
700 },
701
702 IDiv => {
703         op_flags  => "F|L",
704         state     => "exc_pinned",
705         reg_req   => { in => [ "gp", "gp", "none", "gp", "eax", "edx" ],
706                        out => [ "eax", "flags", "none", "edx", "none" ] },
707         ins       => [ "base", "index", "mem", "divisor", "dividend_low", "dividend_high" ],
708         outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
709         am        => "source,unary",
710         emit      => ". idiv%M %unop3",
711         latency   => 25,
712         units     => [ "GP" ],
713         modified_flags => $status_flags
714 },
715
716 Div => {
717         op_flags  => "F|L",
718         state     => "exc_pinned",
719         reg_req   => { in => [ "gp", "gp", "none", "gp", "eax", "edx" ],
720                        out => [ "eax", "flags", "none", "edx", "none" ] },
721         ins       => [ "base", "index", "mem", "divisor", "dividend_low", "dividend_high" ],
722         outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
723         am        => "source,unary",
724         emit      => ". div%M %unop3",
725         latency   => 25,
726         units     => [ "GP" ],
727         modified_flags => $status_flags
728 },
729
730 Shl => {
731         irn_flags => "R",
732         reg_req   => { in => [ "gp", "ecx" ],
733                        out => [ "in_r1 !in_r2", "flags" ] },
734         ins       => [ "val", "count" ],
735         outs      => [ "res", "flags" ],
736         emit      => '. shl%M %SB1, %S0',
737         units     => [ "GP" ],
738         latency   => 1,
739         mode      => $mode_gp,
740         modified_flags => $status_flags
741 },
742
743 ShlMem => {
744         irn_flags => "R",
745         state     => "exc_pinned",
746         reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
747         ins       => [ "base", "index", "mem", "count" ],
748         emit      => '. shl%M %SB3, %AM',
749         units     => [ "GP" ],
750         latency   => 1,
751         mode      => "mode_M",
752         modified_flags => $status_flags
753 },
754
755 l_ShlDep => {
756         cmp_attr => "return 1;",
757         ins      => [ "val", "count", "dep" ],
758         arity    => 3
759 },
760
761 ShlD => {
762         irn_flags => "R",
763         reg_req   => { in => [ "gp", "gp", "ecx" ],
764                        out => [ "in_r1 !in_r2 !in_r3", "flags" ] },
765         ins       => [ "val_high", "val_low", "count" ],
766         outs      => [ "res", "flags" ],
767         emit      => ". shld%M %SB2, %S1, %D0",
768         latency   => 6,
769         units     => [ "GP" ],
770         mode      => $mode_gp,
771         modified_flags => $status_flags
772 },
773
774 l_ShlD => {
775         cmp_attr  => "return 1;",
776         ins       => [ "val_high", "val_low", "count" ],
777         arity     => 3,
778 },
779
780 Shr => {
781         irn_flags => "R",
782         reg_req   => { in => [ "gp", "ecx" ],
783                        out => [ "in_r1 !in_r2", "flags" ] },
784         ins       => [ "val", "count" ],
785         outs      => [ "res", "flags" ],
786         emit      => '. shr%M %SB1, %S0',
787         units     => [ "GP" ],
788         mode      => $mode_gp,
789         latency   => 1,
790         modified_flags => $status_flags
791 },
792
793 ShrMem => {
794         irn_flags => "R",
795         state     => "exc_pinned",
796         reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
797         ins       => [ "base", "index", "mem", "count" ],
798         emit      => '. shr%M %SB3, %AM',
799         units     => [ "GP" ],
800         mode      => "mode_M",
801         latency   => 1,
802         modified_flags => $status_flags
803 },
804
805 l_ShrDep => {
806         cmp_attr  => "return 1;",
807         ins       => [ "val", "count", "dep" ],
808         arity     => 3
809 },
810
811 ShrD => {
812         irn_flags => "R",
813         reg_req   => { in => [ "gp", "gp", "ecx" ],
814                        out => [ "in_r1 !in_r2 !in_r3", "flags" ] },
815         ins       => [ "val_high", "val_low", "count" ],
816         outs      => [ "res", "flags" ],
817         emit      => ". shrd%M %SB2, %S1, %D0",
818         latency   => 6,
819         units     => [ "GP" ],
820         mode      => $mode_gp,
821         modified_flags => $status_flags
822 },
823
824 l_ShrD => {
825         cmp_attr  => "return 1;",
826         arity     => 3,
827         ins       => [ "val_high", "val_low", "count" ],
828 },
829
830 Sar => {
831         irn_flags => "R",
832         reg_req   => { in => [ "gp", "ecx" ],
833                        out => [ "in_r1 !in_r2", "flags" ] },
834         ins       => [ "val", "count" ],
835         outs      => [ "res", "flags" ],
836         emit      => '. sar%M %SB1, %S0',
837         units     => [ "GP" ],
838         latency   => 1,
839         mode      => $mode_gp,
840         modified_flags => $status_flags
841 },
842
843 SarMem => {
844         irn_flags => "R",
845         state     => "exc_pinned",
846         reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
847         ins       => [ "base", "index", "mem", "count" ],
848         emit      => '. sar%M %SB3, %AM',
849         units     => [ "GP" ],
850         latency   => 1,
851         mode      => "mode_M",
852         modified_flags => $status_flags
853 },
854
855 l_SarDep => {
856         cmp_attr  => "return 1;",
857         ins       => [ "val", "count", "dep" ],
858         arity     => 3
859 },
860
861 Ror => {
862         irn_flags => "R",
863         reg_req   => { in => [ "gp", "ecx" ],
864                        out => [ "in_r1 !in_r2", "flags" ] },
865         ins       => [ "val", "count" ],
866         outs      => [ "res", "flags" ],
867         emit      => '. ror%M %SB1, %S0',
868         units     => [ "GP" ],
869         latency   => 1,
870         mode      => $mode_gp,
871         modified_flags => $status_flags
872 },
873
874 RorMem => {
875         irn_flags => "R",
876         state     => "exc_pinned",
877         reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
878         ins       => [ "base", "index", "mem", "count" ],
879         emit      => '. ror%M %SB3, %AM',
880         units     => [ "GP" ],
881         latency   => 1,
882         mode      => "mode_M",
883         modified_flags => $status_flags
884 },
885
886 Rol => {
887         irn_flags => "R",
888         reg_req   => { in => [ "gp", "ecx" ],
889                        out => [ "in_r1 !in_r2", "flags" ] },
890         ins       => [ "val", "count" ],
891         outs      => [ "res", "flags" ],
892         emit      => '. rol%M %SB1, %S0',
893         units     => [ "GP" ],
894         latency   => 1,
895         mode      => $mode_gp,
896         modified_flags => $status_flags
897 },
898
899 RolMem => {
900         irn_flags => "R",
901         state     => "exc_pinned",
902         reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
903         ins       => [ "base", "index", "mem", "count" ],
904         emit      => '. rol%M %SB3, %AM',
905         units     => [ "GP" ],
906         latency   => 1,
907         mode      => "mode_M",
908         modified_flags => $status_flags
909 },
910
911 # unary operations
912
913 Neg => {
914         irn_flags => "R",
915         reg_req   => { in => [ "gp" ],
916                        out => [ "in_r1", "flags" ] },
917         emit      => '. neg%M %S0',
918         ins       => [ "val" ],
919         outs      => [ "res", "flags" ],
920         units     => [ "GP" ],
921         latency   => 1,
922         mode      => $mode_gp,
923         modified_flags => $status_flags
924 },
925
926 NegMem => {
927         irn_flags => "R",
928         state     => "exc_pinned",
929         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
930         ins       => [ "base", "index", "mem" ],
931         emit      => '. neg%M %AM',
932         units     => [ "GP" ],
933         latency   => 1,
934         mode      => "mode_M",
935         modified_flags => $status_flags
936 },
937
938 Minus64Bit => {
939         irn_flags => "R",
940         reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "in_r2" ] },
941         outs      => [ "low_res", "high_res" ],
942         units     => [ "GP" ],
943         latency   => 3,
944         modified_flags => $status_flags
945 },
946
947
948 Inc => {
949         irn_flags => "R",
950         reg_req   => { in => [ "gp" ],
951                        out => [ "in_r1", "flags" ] },
952         ins       => [ "val" ],
953         outs      => [ "res", "flags" ],
954         emit      => '. inc%M %S0',
955         units     => [ "GP" ],
956         mode      => $mode_gp,
957         latency   => 1,
958         modified_flags => $status_flags_wo_cf
959 },
960
961 IncMem => {
962         irn_flags => "R",
963         state     => "exc_pinned",
964         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
965         ins       => [ "base", "index", "mem" ],
966         emit      => '. inc%M %AM',
967         units     => [ "GP" ],
968         mode      => "mode_M",
969         latency   => 1,
970         modified_flags => $status_flags_wo_cf
971 },
972
973 Dec => {
974         irn_flags => "R",
975         reg_req   => { in => [ "gp" ],
976                        out => [ "in_r1", "flags" ] },
977         ins       => [ "val" ],
978         outs      => [ "res", "flags" ],
979         emit      => '. dec%M %S0',
980         units     => [ "GP" ],
981         mode      => $mode_gp,
982         latency   => 1,
983         modified_flags => $status_flags_wo_cf
984 },
985
986 DecMem => {
987         irn_flags => "R",
988         state     => "exc_pinned",
989         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
990         ins       => [ "base", "index", "mem" ],
991         emit      => '. dec%M %AM',
992         units     => [ "GP" ],
993         mode      => "mode_M",
994         latency   => 1,
995         modified_flags => $status_flags_wo_cf
996 },
997
998 Not => {
999         irn_flags => "R",
1000         reg_req   => { in => [ "gp" ],
1001                        out => [ "in_r1", "flags" ] },
1002         ins       => [ "val" ],
1003         outs      => [ "res", "flags" ],
1004         emit      => '. not%M %S0',
1005         units     => [ "GP" ],
1006         latency   => 1,
1007         mode      => $mode_gp,
1008         # no flags modified
1009 },
1010
1011 NotMem => {
1012         irn_flags => "R",
1013         state     => "exc_pinned",
1014         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1015         ins       => [ "base", "index", "mem" ],
1016         emit      => '. not%M %AM',
1017         units     => [ "GP" ],
1018         latency   => 1,
1019         mode      => "mode_M",
1020         # no flags modified
1021 },
1022
1023 Cmc => {
1024         reg_req => { in => [ "flags" ], out => [ "flags" ] },
1025         emit    => '.cmc',
1026         units     => [ "GP" ],
1027         latency   => 1,
1028         mode      => $mode_flags,
1029         modified_flags => $status_flags
1030 },
1031
1032 Stc => {
1033         reg_req => { out => [ "flags" ] },
1034         emit    => '.stc',
1035         units     => [ "GP" ],
1036         latency   => 1,
1037         mode      => $mode_flags,
1038         modified_flags => $status_flags
1039 },
1040
1041 # other operations
1042
1043 Cmp => {
1044         irn_flags => "R",
1045         state     => "exc_pinned",
1046         reg_req   => { in  => [ "gp", "gp", "none", "gp", "gp" ],
1047                        out => [ "flags", "none", "none" ] },
1048         ins       => [ "base", "index", "mem", "left", "right" ],
1049         outs      => [ "eflags", "unused", "M" ],
1050         am        => "source,binary",
1051         emit      => '. cmp%M %binop',
1052         attr      => "int ins_permuted, int cmp_unsigned",
1053         init_attr => "attr->data.ins_permuted   = ins_permuted;\n".
1054                      "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
1055         latency   => 1,
1056         units     => [ "GP" ],
1057         mode      => $mode_flags,
1058         modified_flags => $status_flags
1059 },
1060
1061 Cmp8Bit => {
1062         irn_flags => "R",
1063         state     => "exc_pinned",
1064         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx", "eax ebx ecx edx" ] , out => [ "flags" ] },
1065         ins       => [ "base", "index", "mem", "left", "right" ],
1066         outs      => [ "eflags" ],
1067         am        => "source,binary",
1068         emit      => '. cmpb %binop',
1069         attr      => "int ins_permuted, int cmp_unsigned",
1070         init_attr => "attr->data.ins_permuted   = ins_permuted;\n".
1071                      "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
1072         latency   => 1,
1073         units     => [ "GP" ],
1074         mode      => $mode_flags,
1075         modified_flags => $status_flags
1076 },
1077
1078 Test => {
1079         irn_flags => "R",
1080         state     => "exc_pinned",
1081         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ] , out => [ "flags" ] },
1082         ins       => [ "base", "index", "mem", "left", "right" ],
1083         outs      => [ "eflags" ],
1084         am        => "source,binary",
1085         emit      => '. test%M %binop',
1086         attr      => "int ins_permuted, int cmp_unsigned",
1087         init_attr => "attr->data.ins_permuted = ins_permuted;\n".
1088                      "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
1089         latency   => 1,
1090         units     => [ "GP" ],
1091         mode      => $mode_flags,
1092         modified_flags => $status_flags
1093 },
1094
1095 Test8Bit => {
1096         irn_flags => "R",
1097         state     => "exc_pinned",
1098         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx", "eax ebx ecx edx" ] , out => [ "flags" ] },
1099         ins       => [ "base", "index", "mem", "left", "right" ],
1100         outs      => [ "eflags" ],
1101         am        => "source,binary",
1102         emit      => '. testb %binop',
1103         attr      => "int ins_permuted, int cmp_unsigned",
1104         init_attr => "attr->data.ins_permuted = ins_permuted;\n".
1105                      "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
1106         latency   => 1,
1107         units     => [ "GP" ],
1108         mode      => $mode_flags,
1109         modified_flags => $status_flags
1110 },
1111
1112 Set => {
1113         #irn_flags => "R",
1114         reg_req   => { in => [ "eflags" ], out => [ "eax ebx ecx edx" ] },
1115         ins       => [ "eflags" ],
1116         attr_type => "ia32_condcode_attr_t",
1117         attr      => "pn_Cmp pnc, int ins_permuted",
1118         init_attr => "attr->attr.data.ins_permuted = ins_permuted;\n".
1119                       "\tset_ia32_ls_mode(res, mode_Bu);\n",
1120         emit      => '. set%CMP0 %DB0',
1121         latency   => 1,
1122         units     => [ "GP" ],
1123         mode      => $mode_gp,
1124 },
1125
1126 SetMem => {
1127         #irn_flags => "R",
1128         state     => "exc_pinned",
1129         reg_req   => { in => [ "gp", "gp", "none", "eflags" ], out => [ "none" ] },
1130         ins       => [ "base", "index", "mem","eflags" ],
1131         attr_type => "ia32_condcode_attr_t",
1132         attr      => "pn_Cmp pnc, int ins_permuted",
1133         init_attr => "attr->attr.data.ins_permuted = ins_permuted;\n".
1134                       "\tset_ia32_ls_mode(res, mode_Bu);\n",
1135         emit      => '. set%CMP3 %AM',
1136         latency   => 1,
1137         units     => [ "GP" ],
1138         mode      => 'mode_M',
1139 },
1140
1141 CMov => {
1142         #irn_flags => "R",
1143         # (note: leave the false,true order intact to make it compatible with other
1144         #  ia32_binary ops)
1145         state     => "exc_pinned",
1146         reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "eflags" ], out => [ "in_r4 in_r5" ] },
1147         ins       => [ "base", "index", "mem", "val_false", "val_true", "eflags" ],
1148         am        => "source,binary",
1149         attr_type => "ia32_condcode_attr_t",
1150         attr      => "int ins_permuted, pn_Cmp pnc",
1151         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
1152         latency   => 1,
1153         units     => [ "GP" ],
1154         mode      => $mode_gp,
1155 },
1156
1157 Jcc => {
1158         state     => "pinned",
1159         op_flags  => "L|X|Y",
1160         reg_req   => { in  => [ "eflags" ], out => [ "none", "none" ] },
1161         ins       => [ "eflags" ],
1162         outs      => [ "false", "true" ],
1163         attr_type => "ia32_condcode_attr_t",
1164         attr      => "pn_Cmp pnc",
1165         latency   => 2,
1166         units     => [ "BRANCH" ],
1167 },
1168
1169 SwitchJmp => {
1170         state     => "pinned",
1171         op_flags  => "L|X|Y",
1172         reg_req   => { in => [ "gp" ], out => [ "none" ] },
1173         mode      => "mode_T",
1174         attr_type => "ia32_condcode_attr_t",
1175         attr      => "long pnc",
1176         latency   => 3,
1177         units     => [ "BRANCH" ],
1178         modified_flags => $status_flags,
1179 },
1180
1181 IJmp => {
1182         state     => "pinned",
1183         op_flags  => "X",
1184         reg_req   => { in => [ "gp", "gp", "none", "gp" ] },
1185         ins       => [ "base", "index", "mem", "target" ],
1186         am        => "source,unary",
1187         emit      => '. jmp *%unop3',
1188         latency   => 1,
1189         units     => [ "BRANCH" ],
1190         mode      => "mode_X",
1191 },
1192
1193 Const => {
1194         op_flags  => "c",
1195         irn_flags => "R",
1196         reg_req   => { out => [ "gp" ] },
1197         units     => [ "GP" ],
1198         attr      => "ir_entity *symconst, int symconst_sign, long offset",
1199         attr_type => "ia32_immediate_attr_t",
1200         latency   => 1,
1201         mode      => $mode_gp,
1202 },
1203
1204 GetEIP => {
1205         op_flags => "c",
1206         reg_req  => { out => [ "gp" ] },
1207         units    => [ "GP" ],
1208         latency  => 5,
1209         mode     => $mode_gp,
1210         modified_flags => $status_flags,
1211 },
1212
1213 Unknown_GP => {
1214         state     => "pinned",
1215         op_flags  => "c|NB",
1216         reg_req   => { out => [ "gp_UKNWN:I" ] },
1217         units     => [],
1218         emit      => "",
1219         latency   => 0,
1220         mode      => $mode_gp
1221 },
1222
1223 Unknown_VFP => {
1224         state     => "pinned",
1225         op_flags  => "c|NB",
1226         reg_req   => { out => [ "vfp_UKNWN:I" ] },
1227         units     => [],
1228         emit      => "",
1229         mode      => "mode_E",
1230         latency   => 0,
1231         attr_type => "ia32_x87_attr_t",
1232 },
1233
1234 Unknown_XMM => {
1235         state     => "pinned",
1236         op_flags  => "c|NB",
1237         reg_req   => { out => [ "xmm_UKNWN:I" ] },
1238         units     => [],
1239         emit      => "",
1240         latency   => 0,
1241         mode      => $mode_xmm
1242 },
1243
1244 NoReg_GP => {
1245         state     => "pinned",
1246         op_flags  => "c|NB|NI",
1247         reg_req   => { out => [ "gp_NOREG:I" ] },
1248         units     => [],
1249         emit      => "",
1250         latency   => 0,
1251         mode      => $mode_gp
1252 },
1253
1254 NoReg_VFP => {
1255         state     => "pinned",
1256         op_flags  => "c|NB|NI",
1257         reg_req   => { out => [ "vfp_NOREG:I" ] },
1258         units     => [],
1259         emit      => "",
1260         mode      => "mode_E",
1261         latency   => 0,
1262         attr_type => "ia32_x87_attr_t",
1263 },
1264
1265 NoReg_XMM => {
1266         state     => "pinned",
1267         op_flags  => "c|NB|NI",
1268         reg_req   => { out => [ "xmm_NOREG:I" ] },
1269         units     => [],
1270         emit      => "",
1271         latency   => 0,
1272         mode      => "mode_E"
1273 },
1274
1275 ChangeCW => {
1276         state     => "pinned",
1277         op_flags  => "c",
1278         reg_req   => { out => [ "fpcw:I" ] },
1279         mode      => $mode_fpcw,
1280         latency   => 3,
1281         units     => [ "GP" ],
1282         modified_flags => $fpcw_flags
1283 },
1284
1285 FldCW => {
1286         op_flags  => "L|F",
1287         state     => "pinned",
1288         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "fpcw:I" ] },
1289         ins       => [ "base", "index", "mem" ],
1290         latency   => 5,
1291         emit      => ". fldcw %AM",
1292         mode      => $mode_fpcw,
1293         units     => [ "GP" ],
1294         modified_flags => $fpcw_flags
1295 },
1296
1297 FnstCW => {
1298         op_flags  => "L|F",
1299         state     => "pinned",
1300         reg_req   => { in => [ "gp", "gp", "none", "fp_cw" ], out => [ "none" ] },
1301         ins       => [ "base", "index", "mem", "fpcw" ],
1302         latency   => 5,
1303         emit      => ". fnstcw %AM",
1304         mode      => "mode_M",
1305         units     => [ "GP" ],
1306 },
1307
1308 FnstCWNOP => {
1309         op_flags  => "L|F",
1310         state     => "pinned",
1311         reg_req   => { in => [ "fp_cw" ], out => [ "none" ] },
1312         ins       => [ "fpcw" ],
1313         latency   => 0,
1314         emit      => "",
1315         mode      => "mode_M",
1316 },
1317
1318 Cltd => {
1319         # we should not rematrialize this node. It has very strict constraints.
1320         reg_req   => { in => [ "eax", "edx" ], out => [ "edx" ] },
1321         ins       => [ "val", "clobbered" ],
1322         emit      => '. cltd',
1323         latency   => 1,
1324         mode      => $mode_gp,
1325         units     => [ "GP" ],
1326 },
1327
1328 # Load / Store
1329 #
1330 # Note that we add additional latency values depending on address mode, so a
1331 # lateny of 0 for load is correct
1332
1333 Load => {
1334         op_flags  => "L|F",
1335         state     => "exc_pinned",
1336         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "gp", "none", "none" ] },
1337         ins       => [ "base", "index", "mem" ],
1338         outs      => [ "res", "M", "X_exc" ],
1339         latency   => 0,
1340         emit      => ". mov%SE%ME%.l %AM, %D0",
1341         units     => [ "GP" ],
1342 },
1343
1344 Store => {
1345         op_flags  => "L|F",
1346         state     => "exc_pinned",
1347         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none", "none" ] },
1348         ins       => [ "base", "index", "mem", "val" ],
1349         outs      => [ "M", "X_exc" ],
1350         emit      => '. mov%M %SI3, %AM',
1351         latency   => 2,
1352         units     => [ "GP" ],
1353         mode      => "mode_M",
1354 },
1355
1356 Store8Bit => {
1357         op_flags  => "L|F",
1358         state     => "exc_pinned",
1359         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => ["none", "none" ] },
1360         ins       => [ "base", "index", "mem", "val" ],
1361         outs      => [ "M", "X_exc" ],
1362         emit      => '. mov%M %SB3, %AM',
1363         latency   => 2,
1364         units     => [ "GP" ],
1365         mode      => "mode_M",
1366 },
1367
1368 Lea => {
1369         irn_flags => "R",
1370         reg_req   => { in => [ "gp", "gp" ], out => [ "gp" ] },
1371         ins       => [ "base", "index" ],
1372         emit      => '. leal %AM, %D0',
1373         latency   => 2,
1374         units     => [ "GP" ],
1375         mode      => $mode_gp,
1376 # lea doesn't modify the flags, but setting this seems advantageous since it
1377 # increases chances that the Lea is transformed back to an Add
1378         modified_flags => 1,
1379 },
1380
1381 Push => {
1382         state     => "exc_pinned",
1383         reg_req   => { in => [ "gp", "gp", "none", "gp", "esp" ], out => [ "esp:I|S", "none" ] },
1384         ins       => [ "base", "index", "mem", "val", "stack" ],
1385         emit      => '. push%M %unop3',
1386         outs      => [ "stack", "M" ],
1387         am        => "source,unary",
1388         latency   => 2,
1389         units     => [ "GP" ],
1390 },
1391
1392 Pop => {
1393         state     => "exc_pinned",
1394         reg_req   => { in => [ "none", "esp" ], out => [ "gp", "none", "none", "esp:I|S" ] },
1395         ins       => [ "mem", "stack" ],
1396         outs      => [ "res", "M", "unused", "stack" ],
1397         emit      => '. pop%M %D0',
1398         latency   => 3, # Pop is more expensive than Push on Athlon
1399         units     => [ "GP" ],
1400 },
1401
1402 PopEbp => {
1403         state     => "exc_pinned",
1404         reg_req   => { in => [ "none", "esp" ], out => [ "ebp:I", "none", "none", "esp:I|S" ] },
1405         ins       => [ "mem", "stack" ],
1406         outs      => [ "res", "M", "unused", "stack" ],
1407         emit      => '. pop%M %D0',
1408         latency   => 3, # Pop is more expensive than Push on Athlon
1409         units     => [ "GP" ],
1410 },
1411
1412 PopMem => {
1413         state     => "exc_pinned",
1414         reg_req   => { in => [ "gp", "gp", "none", "esp" ], out => [ "none", "none", "none", "esp:I|S" ] },
1415         ins       => [ "base", "index", "mem", "stack" ],
1416         outs      => [ "unused0", "M", "unused1", "stack" ],
1417         emit      => '. pop%M %AM',
1418         latency   => 3, # Pop is more expensive than Push on Athlon
1419         units     => [ "GP" ],
1420 },
1421
1422 Enter => {
1423         reg_req   => { in => [ "esp" ], out => [ "ebp", "esp:I|S", "none" ] },
1424         emit      => '. enter',
1425         outs      => [ "frame", "stack", "M" ],
1426         latency   => 15,
1427         units     => [ "GP" ],
1428 },
1429
1430 Leave => {
1431         reg_req   => { in => [ "ebp" ], out => [ "ebp:I", "esp:I|S" ] },
1432         emit      => '. leave',
1433         outs      => [ "frame", "stack" ],
1434         latency   => 3,
1435         units     => [ "GP" ],
1436 },
1437
1438 AddSP => {
1439         state     => "pinned",
1440         reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "esp:I|S", "none" ] },
1441         ins       => [ "base", "index", "mem", "stack", "size" ],
1442         am        => "source,binary",
1443         emit      => '. addl %binop',
1444         latency   => 1,
1445         outs      => [ "stack", "M" ],
1446         units     => [ "GP" ],
1447         modified_flags => $status_flags
1448 },
1449
1450 SubSP => {
1451         state     => "pinned",
1452         reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "esp:I|S", "gp", "none" ] },
1453         ins       => [ "base", "index", "mem", "stack", "size" ],
1454         am        => "source,binary",
1455         emit      => ". subl %binop\n".
1456                      ". movl %%esp, %D1",
1457         latency   => 2,
1458         outs      => [ "stack", "addr", "M" ],
1459         units     => [ "GP" ],
1460         modified_flags => $status_flags
1461 },
1462
1463 RepPrefix => {
1464         op_flags  => "K",
1465         state     => "pinned",
1466         mode      => "mode_M",
1467         emit      => ". rep",
1468         latency   => 0,
1469 },
1470
1471 LdTls => {
1472         irn_flags => "R",
1473         reg_req   => { out => [ "gp" ] },
1474         units     => [ "GP" ],
1475         latency   => 1,
1476 },
1477
1478 Bt => {
1479         irn_flags => "R",
1480         state     => "exc_pinned",
1481         reg_req   => { in => [ "gp", "gp" ], out => [ "flags" ] },
1482         ins       => [ "left", "right" ],
1483         emit      => '. bt%M %S1, %S0',
1484         units     => [ "GP" ],
1485         latency   => 1,
1486         mode      => $mode_flags,
1487         modified_flags => $status_flags  # only CF is set, but the other flags are undefined
1488 },
1489
1490 Call => {
1491         state     => "exc_pinned",
1492         reg_req   => {
1493                 in  => [ "gp", "gp", "none", "gp", "esp", "fpcw", "eax", "ecx", "edx" ],
1494                 out => [ "esp:I|S", "fpcw:I", "none", "eax", "ecx", "edx", "vf0", "vf1", "vf2", "vf3", "vf4", "vf5", "vf6", "vf7", "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7" ]
1495         },
1496         ins       => [ "base", "index", "mem", "addr", "stack", "fpcw", "eax", "ecx", "edx" ],
1497         outs      => [ "stack", "fpcw", "M", "eax", "ecx", "edx", "vf0", "vf1", "vf2", "vf3", "vf4", "vf5", "vf6", "vf7", "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7" ],
1498         attr_type => "ia32_call_attr_t",
1499         attr      => "unsigned pop, ir_type *call_tp",
1500         am        => "source,unary",
1501         units     => [ "BRANCH" ],
1502         latency   => 4, # random number
1503         modified_flags => $status_flags
1504 },
1505
1506 #
1507 # a Helper node for frame-climbing, needed for __builtin_(frame|return)_address
1508 #
1509 # PS: try gcc __builtin_frame_address(100000) :-)
1510 #
1511 ClimbFrame => {
1512         reg_req   => { in => [ "gp", "gp", "gp"], out => [ "in_r3" ] },
1513         ins       => [ "frame", "cnt", "tmp" ],
1514         outs      => [ "res" ],
1515         latency   => 4, # random number
1516         attr_type => "ia32_climbframe_attr_t",
1517         attr      => "unsigned count",
1518         units     => [ "GP" ],
1519         mode      => $mode_gp
1520 },
1521
1522 #-----------------------------------------------------------------------------#
1523 #   _____ _____ ______    __ _             _                     _            #
1524 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
1525 # | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
1526 #  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
1527 #  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
1528 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
1529 #-----------------------------------------------------------------------------#
1530
1531 # produces a 0/+0.0
1532 xZero => {
1533         irn_flags => "R",
1534         reg_req   => { out => [ "xmm" ] },
1535         emit      => '. xorp%XSD %D0, %D0',
1536         latency   => 3,
1537         units     => [ "SSE" ],
1538         mode      => $mode_xmm
1539 },
1540
1541 xPzero => {
1542         irn_flags => "R",
1543         reg_req   => { out => [ "xmm" ] },
1544         emit      => '. pxor %D0, %D0',
1545         latency   => 3,
1546         units     => [ "SSE" ],
1547         mode      => $mode_xmm
1548 },
1549
1550 # produces all 1 bits
1551 xAllOnes => {
1552         irn_flags => "R",
1553         reg_req   => { out => [ "xmm" ] },
1554         emit      => '. pcmpeqb %D0, %D0',
1555         latency   => 3,
1556         units     => [ "SSE" ],
1557         mode      => $mode_xmm
1558 },
1559
1560 # integer shift left, dword
1561 xPslld => {
1562         irn_flags => "R",
1563         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1564         emit      => '. pslld %SI1, %D0',
1565         latency   => 3,
1566         units     => [ "SSE" ],
1567         mode      => $mode_xmm
1568 },
1569
1570 # integer shift left, qword
1571 xPsllq => {
1572         irn_flags => "R",
1573         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1574         emit      => '. psllq %SI1, %D0',
1575         latency   => 3,
1576         units     => [ "SSE" ],
1577         mode      => $mode_xmm
1578 },
1579
1580 # integer shift right, dword
1581 xPsrld => {
1582         irn_flags => "R",
1583         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1584         emit      => '. psrld %SI1, %D0',
1585         latency   => 1,
1586         units     => [ "SSE" ],
1587         mode      => $mode_xmm
1588 },
1589
1590 # mov from integer to SSE register
1591 xMovd  => {
1592         irn_flags => "R",
1593         reg_req   => { in => [ "gp" ], out => [ "xmm" ] },
1594         emit      => '. movd %S0, %D0',
1595         latency   => 1,
1596         units     => [ "SSE" ],
1597         mode      => $mode_xmm
1598 },
1599
1600 # commutative operations
1601
1602 xAdd => {
1603         irn_flags => "R",
1604         state     => "exc_pinned",
1605         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1606         ins       => [ "base", "index", "mem", "left", "right" ],
1607         am        => "source,binary",
1608         emit      => '. add%XXM %binop',
1609         latency   => 4,
1610         units     => [ "SSE" ],
1611         mode      => $mode_xmm
1612 },
1613
1614 xMul => {
1615         irn_flags => "R",
1616         state     => "exc_pinned",
1617         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1618         ins       => [ "base", "index", "mem", "left", "right" ],
1619         am        => "source,binary",
1620         emit      => '. mul%XXM %binop',
1621         latency   => 4,
1622         units     => [ "SSE" ],
1623         mode      => $mode_xmm
1624 },
1625
1626 xMax => {
1627         irn_flags => "R",
1628         state     => "exc_pinned",
1629         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1630         ins       => [ "base", "index", "mem", "left", "right" ],
1631         am        => "source,binary",
1632         emit      => '. max%XXM %binop',
1633         latency   => 2,
1634         units     => [ "SSE" ],
1635         mode      => $mode_xmm
1636 },
1637
1638 xMin => {
1639         irn_flags => "R",
1640         state     => "exc_pinned",
1641         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1642         ins       => [ "base", "index", "mem", "left", "right" ],
1643         am        => "source,binary",
1644         emit      => '. min%XXM %binop',
1645         latency   => 2,
1646         units     => [ "SSE" ],
1647         mode      => $mode_xmm
1648 },
1649
1650 xAnd => {
1651         irn_flags => "R",
1652         state     => "exc_pinned",
1653         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1654         ins       => [ "base", "index", "mem", "left", "right" ],
1655         am        => "source,binary",
1656         emit      => '. andp%XSD %binop',
1657         latency   => 3,
1658         units     => [ "SSE" ],
1659         mode      => $mode_xmm
1660 },
1661
1662 xOr => {
1663         irn_flags => "R",
1664         state     => "exc_pinned",
1665         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1666         ins       => [ "base", "index", "mem", "left", "right" ],
1667         am        => "source,binary",
1668         emit      => '. orp%XSD %binop',
1669         latency   => 3,
1670         units     => [ "SSE" ],
1671         mode      => $mode_xmm
1672 },
1673
1674 xXor => {
1675         irn_flags => "R",
1676         state     => "exc_pinned",
1677         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1678         ins       => [ "base", "index", "mem", "left", "right" ],
1679         am        => "source,binary",
1680         emit      => '. xorp%XSD %binop',
1681         latency   => 3,
1682         units     => [ "SSE" ],
1683         mode      => $mode_xmm
1684 },
1685
1686 # not commutative operations
1687
1688 xAndNot => {
1689         irn_flags => "R",
1690         state     => "exc_pinned",
1691         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5" ] },
1692         ins       => [ "base", "index", "mem", "left", "right" ],
1693         am        => "source,binary",
1694         emit      => '. andnp%XSD %binop',
1695         latency   => 3,
1696         units     => [ "SSE" ],
1697         mode      => $mode_xmm
1698 },
1699
1700 xSub => {
1701         irn_flags => "R",
1702         state     => "exc_pinned",
1703         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4" ] },
1704         ins       => [ "base", "index", "mem", "minuend", "subtrahend" ],
1705         am        => "source,binary",
1706         emit      => '. sub%XXM %binop',
1707         latency   => 4,
1708         units     => [ "SSE" ],
1709         mode      => $mode_xmm
1710 },
1711
1712 xDiv => {
1713         irn_flags => "R",
1714         state     => "exc_pinned",
1715         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5", "none" ] },
1716         ins       => [ "base", "index", "mem", "dividend", "divisor" ],
1717         am        => "source,binary",
1718         outs      => [ "res", "M" ],
1719         emit      => '. div%XXM %binop',
1720         latency   => 16,
1721         units     => [ "SSE" ],
1722 },
1723
1724 # other operations
1725
1726 Ucomi => {
1727         irn_flags => "R",
1728         state     => "exc_pinned",
1729         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "eflags" ] },
1730         ins       => [ "base", "index", "mem", "left", "right" ],
1731         outs      => [ "flags" ],
1732         am        => "source,binary",
1733         attr      => "int ins_permuted",
1734         init_attr => "attr->data.ins_permuted = ins_permuted;",
1735         emit      => ' .ucomi%XXM %binop',
1736         latency   => 3,
1737         units     => [ "SSE" ],
1738         mode      => $mode_flags,
1739         modified_flags => 1,
1740 },
1741
1742 # Load / Store
1743
1744 xLoad => {
1745         op_flags  => "L|F",
1746         state     => "exc_pinned",
1747         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none", "none" ] },
1748         ins       => [ "base", "index", "mem" ],
1749         outs      => [ "res", "M", "X_exc" ],
1750         emit      => '. mov%XXM %AM, %D0',
1751         attr      => "ir_mode *load_mode",
1752         init_attr => "attr->ls_mode = load_mode;",
1753         latency   => 0,
1754         units     => [ "SSE" ],
1755 },
1756
1757 xStore => {
1758         op_flags => "L|F",
1759         state    => "exc_pinned",
1760         reg_req  => { in => [ "gp", "gp", "none", "xmm" ], out => [ "none", "none" ] },
1761         ins       => [ "base", "index", "mem", "val" ],
1762         outs      => [ "M", "X_exc" ],
1763         emit     => '. mov%XXM %S3, %AM',
1764         latency  => 0,
1765         units    => [ "SSE" ],
1766         mode     => "mode_M",
1767 },
1768
1769 xStoreSimple => {
1770         op_flags => "L|F",
1771         state    => "exc_pinned",
1772         reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
1773         ins      => [ "base", "index", "mem", "val" ],
1774         emit     => '. mov%XXM %S3, %AM',
1775         latency  => 0,
1776         units    => [ "SSE" ],
1777         mode     => "mode_M",
1778 },
1779
1780 CvtSI2SS => {
1781         op_flags => "L|F",
1782         state     => "exc_pinned",
1783         reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
1784         ins      => [ "base", "index", "mem", "val" ],
1785         am       => "source,unary",
1786         emit     => '. cvtsi2ss %unop3, %D0',
1787         latency  => 2,
1788         units    => [ "SSE" ],
1789         mode     => $mode_xmm
1790 },
1791
1792 CvtSI2SD => {
1793         op_flags => "L|F",
1794         state     => "exc_pinned",
1795         reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
1796         ins      => [ "base", "index", "mem", "val" ],
1797         am       => "source,unary",
1798         emit     => '. cvtsi2sd %unop3, %D0',
1799         latency  => 2,
1800         units    => [ "SSE" ],
1801         mode     => $mode_xmm
1802 },
1803
1804
1805 l_LLtoFloat => {
1806         op_flags => "L|F",
1807         cmp_attr => "return 1;",
1808         ins      => [ "val_high", "val_low" ],
1809 },
1810
1811 l_FloattoLL => {
1812         op_flags => "L|F",
1813         cmp_attr => "return 1;",
1814         ins      => [ "val" ],
1815         outs     => [ "res_high", "res_low" ],
1816 },
1817
1818 # CopyB
1819
1820 CopyB => {
1821         op_flags  => "F|H",
1822         state     => "pinned",
1823         reg_req   => { in => [ "edi", "esi", "ecx", "none" ], out => [ "edi", "esi", "ecx", "none" ] },
1824         outs      => [ "DST", "SRC", "CNT", "M" ],
1825         attr_type => "ia32_copyb_attr_t",
1826         attr      => "unsigned size",
1827         units     => [ "GP" ],
1828         latency  => 3,
1829 # we don't care about this flag, so no need to mark this node
1830 #       modified_flags => [ "DF" ]
1831 },
1832
1833 CopyB_i => {
1834         op_flags  => "F|H",
1835         state     => "pinned",
1836         reg_req   => { in => [ "edi", "esi", "none" ], out => [  "edi", "esi", "none" ] },
1837         outs      => [ "DST", "SRC", "M" ],
1838         attr_type => "ia32_copyb_attr_t",
1839         attr      => "unsigned size",
1840         units     => [ "GP" ],
1841         latency  => 3,
1842 # we don't care about this flag, so no need to mark this node
1843 #       modified_flags => [ "DF" ]
1844 },
1845
1846 # Conversions
1847
1848 Cwtl => {
1849         state     => "exc_pinned",
1850         reg_req   => { in => [ "eax" ], out => [ "eax" ] },
1851         ins       => [ "val" ],
1852         outs      => [ "res" ],
1853         emit      => '. cwtl',
1854         units     => [ "GP" ],
1855         latency   => 1,
1856         mode      => $mode_gp,
1857 },
1858
1859 Conv_I2I => {
1860         state     => "exc_pinned",
1861         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "gp", "none" ] },
1862         ins       => [ "base", "index", "mem", "val" ],
1863         outs      => [ "res", "M" ],
1864         am        => "source,unary",
1865         units     => [ "GP" ],
1866         latency   => 1,
1867         attr      => "ir_mode *smaller_mode",
1868         init_attr => "attr->ls_mode = smaller_mode;",
1869         mode      => $mode_gp,
1870 },
1871
1872 Conv_I2I8Bit => {
1873         state     => "exc_pinned",
1874         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "gp", "none" ] },
1875         ins       => [ "base", "index", "mem", "val" ],
1876         am        => "source,unary",
1877         units     => [ "GP" ],
1878         latency   => 1,
1879         attr      => "ir_mode *smaller_mode",
1880         init_attr => "attr->ls_mode = smaller_mode;",
1881         mode      => $mode_gp,
1882 },
1883
1884 Conv_I2FP => {
1885         state     => "exc_pinned",
1886         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm", "none" ] },
1887         ins       => [ "base", "index", "mem", "val" ],
1888         am        => "source,unary",
1889         latency   => 10,
1890         units     => [ "SSE" ],
1891         mode      => $mode_xmm,
1892 },
1893
1894 Conv_FP2I => {
1895         state     => "exc_pinned",
1896         reg_req   => { in => [ "gp", "gp", "none", "xmm" ], out => [ "gp", "none" ] },
1897         ins       => [ "base", "index", "mem", "val" ],
1898         am        => "source,unary",
1899         latency   => 10,
1900         units     => [ "SSE" ],
1901         mode      => $mode_gp,
1902 },
1903
1904 Conv_FP2FP => {
1905         state     => "exc_pinned",
1906         reg_req   => { in => [ "gp", "gp", "none", "xmm" ], out => [ "xmm", "none" ] },
1907         ins       => [ "base", "index", "mem", "val" ],
1908         am        => "source,unary",
1909         latency   => 8,
1910         units     => [ "SSE" ],
1911         mode      => $mode_xmm,
1912 },
1913
1914 #----------------------------------------------------------#
1915 #        _      _               _    __ _             _    #
1916 #       (_)    | |             | |  / _| |           | |   #
1917 # __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
1918 # \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
1919 #  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
1920 #   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
1921 #                 | |                                      #
1922 #  _ __   ___   __| | ___  ___                             #
1923 # | '_ \ / _ \ / _` |/ _ \/ __|                            #
1924 # | | | | (_) | (_| |  __/\__ \                            #
1925 # |_| |_|\___/ \__,_|\___||___/                            #
1926 #----------------------------------------------------------#
1927
1928 # rematerialisation disabled for all float nodes for now, because the fpcw
1929 # handler runs before spilling and we might end up with wrong fpcw then
1930
1931 vfadd => {
1932 #       irn_flags => "R",
1933         state     => "exc_pinned",
1934         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
1935         ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
1936         am        => "source,binary",
1937         latency   => 4,
1938         units     => [ "VFP" ],
1939         mode      => "mode_E",
1940         attr_type => "ia32_x87_attr_t",
1941 },
1942
1943 vfmul => {
1944 #       irn_flags => "R",
1945         state     => "exc_pinned",
1946         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
1947         ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
1948         am        => "source,binary",
1949         latency   => 4,
1950         units     => [ "VFP" ],
1951         mode      => "mode_E",
1952         attr_type => "ia32_x87_attr_t",
1953 },
1954
1955 vfsub => {
1956 #       irn_flags => "R",
1957         state     => "exc_pinned",
1958         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
1959         ins       => [ "base", "index", "mem", "minuend", "subtrahend", "fpcw" ],
1960         am        => "source,binary",
1961         latency   => 4,
1962         units     => [ "VFP" ],
1963         mode      => "mode_E",
1964         attr_type => "ia32_x87_attr_t",
1965 },
1966
1967 vfdiv => {
1968         state     => "exc_pinned",
1969         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp", "none" ] },
1970         ins       => [ "base", "index", "mem", "dividend", "divisor", "fpcw" ],
1971         am        => "source,binary",
1972         outs      => [ "res", "M" ],
1973         latency   => 20,
1974         units     => [ "VFP" ],
1975         attr_type => "ia32_x87_attr_t",
1976 },
1977
1978 vfprem => {
1979         reg_req   => { in => [ "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
1980         ins       => [ "left", "right", "fpcw" ],
1981         latency   => 20,
1982         units     => [ "VFP" ],
1983         mode      => "mode_E",
1984         attr_type => "ia32_x87_attr_t",
1985 },
1986
1987 vfabs => {
1988         irn_flags => "R",
1989         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
1990         ins       => [ "value" ],
1991         latency   => 2,
1992         units     => [ "VFP" ],
1993         mode      => "mode_E",
1994         attr_type => "ia32_x87_attr_t",
1995 },
1996
1997 vfchs => {
1998         irn_flags => "R",
1999         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
2000         ins       => [ "value" ],
2001         latency   => 2,
2002         units     => [ "VFP" ],
2003         mode      => "mode_E",
2004         attr_type => "ia32_x87_attr_t",
2005 },
2006
2007 # virtual Load and Store
2008
2009 vfld => {
2010         irn_flags => "R",
2011         op_flags  => "L|F",
2012         state     => "exc_pinned",
2013         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none", "none" ] },
2014         ins       => [ "base", "index", "mem" ],
2015         outs      => [ "res", "M", "X_exc" ],
2016         attr      => "ir_mode *load_mode",
2017         init_attr => "attr->attr.ls_mode = load_mode;",
2018         latency   => 2,
2019         units     => [ "VFP" ],
2020         attr_type => "ia32_x87_attr_t",
2021 },
2022
2023 vfst => {
2024         irn_flags => "R",
2025         op_flags  => "L|F",
2026         state     => "exc_pinned",
2027         reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "none", "none" ] },
2028         ins       => [ "base", "index", "mem", "val" ],
2029         outs      => [ "M", "X_exc" ],
2030         attr      => "ir_mode *store_mode",
2031         init_attr => "attr->attr.ls_mode = store_mode;",
2032         latency   => 2,
2033         units     => [ "VFP" ],
2034         mode      => "mode_M",
2035         attr_type => "ia32_x87_attr_t",
2036 },
2037
2038 # Conversions
2039
2040 vfild => {
2041         state     => "exc_pinned",
2042         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
2043         outs      => [ "res", "M" ],
2044         ins       => [ "base", "index", "mem" ],
2045         latency   => 4,
2046         units     => [ "VFP" ],
2047         attr_type => "ia32_x87_attr_t",
2048 },
2049
2050 vfist => {
2051         state     => "exc_pinned",
2052         reg_req   => { in => [ "gp", "gp", "none", "vfp", "fpcw" ] },
2053         ins       => [ "base", "index", "mem", "val", "fpcw" ],
2054         latency   => 4,
2055         units     => [ "VFP" ],
2056         mode      => "mode_M",
2057         attr_type => "ia32_x87_attr_t",
2058 },
2059
2060 # SSE3 fisttp instruction
2061 vfisttp => {
2062         state     => "exc_pinned",
2063         reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "in_r4", "none" ]},
2064         ins       => [ "base", "index", "mem", "val" ],
2065         outs      => [ "res", "M" ],
2066         latency   => 4,
2067         units     => [ "VFP" ],
2068         attr_type => "ia32_x87_attr_t",
2069 },
2070
2071
2072 # constants
2073
2074 vfldz => {
2075         irn_flags => "R",
2076         reg_req   => { out => [ "vfp" ] },
2077         outs      => [ "res" ],
2078         latency   => 4,
2079         units     => [ "VFP" ],
2080         mode      => "mode_E",
2081         attr_type => "ia32_x87_attr_t",
2082 },
2083
2084 vfld1 => {
2085         irn_flags => "R",
2086         reg_req   => { out => [ "vfp" ] },
2087         outs      => [ "res" ],
2088         latency   => 4,
2089         units     => [ "VFP" ],
2090         mode      => "mode_E",
2091         attr_type => "ia32_x87_attr_t",
2092 },
2093
2094 vfldpi => {
2095         irn_flags => "R",
2096         reg_req   => { out => [ "vfp" ] },
2097         outs      => [ "res" ],
2098         latency   => 4,
2099         units     => [ "VFP" ],
2100         mode      => "mode_E",
2101         attr_type => "ia32_x87_attr_t",
2102 },
2103
2104 vfldln2 => {
2105         irn_flags => "R",
2106         reg_req   => { out => [ "vfp" ] },
2107         outs      => [ "res" ],
2108         latency   => 4,
2109         units     => [ "VFP" ],
2110         mode      => "mode_E",
2111         attr_type => "ia32_x87_attr_t",
2112 },
2113
2114 vfldlg2 => {
2115         irn_flags => "R",
2116         reg_req   => { out => [ "vfp" ] },
2117         outs      => [ "res" ],
2118         latency   => 4,
2119         units     => [ "VFP" ],
2120         mode      => "mode_E",
2121         attr_type => "ia32_x87_attr_t",
2122 },
2123
2124 vfldl2t => {
2125         irn_flags => "R",
2126         reg_req   => { out => [ "vfp" ] },
2127         outs      => [ "res" ],
2128         latency   => 4,
2129         units     => [ "VFP" ],
2130         mode      => "mode_E",
2131         attr_type => "ia32_x87_attr_t",
2132 },
2133
2134 vfldl2e => {
2135         irn_flags => "R",
2136         reg_req   => { out => [ "vfp" ] },
2137         outs      => [ "res" ],
2138         latency   => 4,
2139         units     => [ "VFP" ],
2140         mode      => "mode_E",
2141         attr_type => "ia32_x87_attr_t",
2142 },
2143
2144 # other
2145
2146 vFucomFnstsw => {
2147 # we can't allow to rematerialize this node so we don't have
2148 #  accidently produce Phi(Fucom, Fucom(ins_permuted))
2149 #       irn_flags => "R",
2150         reg_req   => { in => [ "vfp", "vfp" ], out => [ "eax" ] },
2151         ins       => [ "left", "right" ],
2152         outs      => [ "flags" ],
2153         attr      => "int ins_permuted",
2154         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2155         latency   => 3,
2156         units     => [ "VFP" ],
2157         attr_type => "ia32_x87_attr_t",
2158         mode      => $mode_gp
2159 },
2160
2161 vFucomi => {
2162         irn_flags => "R",
2163         reg_req   => { in => [ "vfp", "vfp" ], out => [ "eflags" ] },
2164         ins       => [ "left", "right" ],
2165         outs      => [ "flags" ],
2166         attr      => "int ins_permuted",
2167         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2168         latency   => 3,
2169         units     => [ "VFP" ],
2170         attr_type => "ia32_x87_attr_t",
2171         mode      => $mode_gp
2172 },
2173
2174 vFtstFnstsw => {
2175 #       irn_flags => "R",
2176         reg_req   => { in => [ "vfp" ], out => [ "eax" ] },
2177         ins       => [ "left" ],
2178         outs      => [ "flags" ],
2179         attr      => "int ins_permuted",
2180         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2181         latency   => 3,
2182         units     => [ "VFP" ],
2183         attr_type => "ia32_x87_attr_t",
2184         mode      => $mode_gp
2185 },
2186
2187 Sahf => {
2188         irn_flags => "R",
2189         reg_req   => { in => [ "eax" ], out => [ "eflags" ] },
2190         ins       => [ "val" ],
2191         outs      => [ "flags" ],
2192         emit      => '. sahf',
2193         latency   => 1,
2194         units     => [ "GP" ],
2195         mode      => $mode_flags,
2196 },
2197
2198 #------------------------------------------------------------------------#
2199 #       ___ _____    __ _             _                     _            #
2200 # __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
2201 # \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
2202 #  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
2203 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
2204 #------------------------------------------------------------------------#
2205
2206 # Note: gas is strangely buggy: fdivrp and fdivp as well as fsubrp and fsubp
2207 #       are swapped, we work this around in the emitter...
2208
2209 fadd => {
2210         state     => "exc_pinned",
2211         rd_constructor => "NONE",
2212         reg_req   => { },
2213         emit      => '. fadd%XM %x87_binop',
2214         latency   => 4,
2215         attr_type => "ia32_x87_attr_t",
2216 },
2217
2218 faddp => {
2219         state     => "exc_pinned",
2220         rd_constructor => "NONE",
2221         reg_req   => { },
2222         emit      => '. faddp%XM %x87_binop',
2223         latency   => 4,
2224         attr_type => "ia32_x87_attr_t",
2225 },
2226
2227 fmul => {
2228         state     => "exc_pinned",
2229         rd_constructor => "NONE",
2230         reg_req   => { },
2231         emit      => '. fmul%XM %x87_binop',
2232         latency   => 4,
2233         attr_type => "ia32_x87_attr_t",
2234 },
2235
2236 fmulp => {
2237         state     => "exc_pinned",
2238         rd_constructor => "NONE",
2239         reg_req   => { },
2240         emit      => '. fmulp%XM %x87_binop',,
2241         latency   => 4,
2242         attr_type => "ia32_x87_attr_t",
2243 },
2244
2245 fsub => {
2246         state     => "exc_pinned",
2247         rd_constructor => "NONE",
2248         reg_req   => { },
2249         emit      => '. fsub%XM %x87_binop',
2250         latency   => 4,
2251         attr_type => "ia32_x87_attr_t",
2252 },
2253
2254 fsubp => {
2255         state     => "exc_pinned",
2256         rd_constructor => "NONE",
2257         reg_req   => { },
2258 # see note about gas bugs
2259         emit      => '. fsubrp%XM %x87_binop',
2260         latency   => 4,
2261         attr_type => "ia32_x87_attr_t",
2262 },
2263
2264 fsubr => {
2265         state     => "exc_pinned",
2266         rd_constructor => "NONE",
2267         irn_flags => "R",
2268         reg_req   => { },
2269         emit      => '. fsubr%XM %x87_binop',
2270         latency   => 4,
2271         attr_type => "ia32_x87_attr_t",
2272 },
2273
2274 fsubrp => {
2275         state     => "exc_pinned",
2276         rd_constructor => "NONE",
2277         irn_flags => "R",
2278         reg_req   => { },
2279 # see note about gas bugs
2280         emit      => '. fsubp%XM %x87_binop',
2281         latency   => 4,
2282         attr_type => "ia32_x87_attr_t",
2283 },
2284
2285 fprem => {
2286         rd_constructor => "NONE",
2287         reg_req   => { },
2288         emit      => '. fprem1',
2289         latency   => 20,
2290         attr_type => "ia32_x87_attr_t",
2291 },
2292
2293 # this node is just here, to keep the simulator running
2294 # we can omit this when a fprem simulation function exists
2295 fpremp => {
2296         rd_constructor => "NONE",
2297         reg_req   => { },
2298         emit      => '. fprem1\n'.
2299                      '. fstp %X0',
2300         latency   => 20,
2301         attr_type => "ia32_x87_attr_t",
2302 },
2303
2304 fdiv => {
2305         state     => "exc_pinned",
2306         rd_constructor => "NONE",
2307         reg_req   => { },
2308         emit      => '. fdiv%XM %x87_binop',
2309         latency   => 20,
2310         attr_type => "ia32_x87_attr_t",
2311 },
2312
2313 fdivp => {
2314         state     => "exc_pinned",
2315         rd_constructor => "NONE",
2316         reg_req   => { },
2317 # see note about gas bugs
2318         emit      => '. fdivrp%XM %x87_binop',
2319         latency   => 20,
2320         attr_type => "ia32_x87_attr_t",
2321 },
2322
2323 fdivr => {
2324         state     => "exc_pinned",
2325         rd_constructor => "NONE",
2326         reg_req   => { },
2327         emit      => '. fdivr%XM %x87_binop',
2328         latency   => 20,
2329         attr_type => "ia32_x87_attr_t",
2330 },
2331
2332 fdivrp => {
2333         state     => "exc_pinned",
2334         rd_constructor => "NONE",
2335         reg_req   => { },
2336 # see note about gas bugs
2337         emit      => '. fdivp%XM %x87_binop',
2338         latency   => 20,
2339         attr_type => "ia32_x87_attr_t",
2340 },
2341
2342 fabs => {
2343         rd_constructor => "NONE",
2344         reg_req   => { },
2345         emit      => '. fabs',
2346         latency   => 4,
2347         attr_type => "ia32_x87_attr_t",
2348 },
2349
2350 fchs => {
2351         op_flags  => "R|K",
2352         rd_constructor => "NONE",
2353         reg_req   => { },
2354         emit      => '. fchs',
2355         latency   => 4,
2356         attr_type => "ia32_x87_attr_t",
2357 },
2358
2359 # x87 Load and Store
2360
2361 fld => {
2362         rd_constructor => "NONE",
2363         op_flags  => "R|L|F",
2364         state     => "exc_pinned",
2365         reg_req   => { },
2366         emit      => '. fld%XM %AM',
2367         attr_type => "ia32_x87_attr_t",
2368         latency   => 2,
2369 },
2370
2371 fst => {
2372         rd_constructor => "NONE",
2373         op_flags  => "R|L|F",
2374         state     => "exc_pinned",
2375         reg_req   => { },
2376         emit      => '. fst%XM %AM',
2377         mode      => "mode_M",
2378         attr_type => "ia32_x87_attr_t",
2379         latency   => 2,
2380 },
2381
2382 fstp => {
2383         rd_constructor => "NONE",
2384         op_flags  => "R|L|F",
2385         state     => "exc_pinned",
2386         reg_req   => { },
2387         emit      => '. fstp%XM %AM',
2388         mode      => "mode_M",
2389         attr_type => "ia32_x87_attr_t",
2390         latency   => 2,
2391 },
2392
2393 # Conversions
2394
2395 fild => {
2396         state     => "exc_pinned",
2397         rd_constructor => "NONE",
2398         reg_req   => { },
2399         emit      => '. fild%XM %AM',
2400         attr_type => "ia32_x87_attr_t",
2401         latency   => 2,
2402 },
2403
2404 fist => {
2405         state     => "exc_pinned",
2406         rd_constructor => "NONE",
2407         reg_req   => { },
2408         emit      => '. fist%XM %AM',
2409         mode      => "mode_M",
2410         attr_type => "ia32_x87_attr_t",
2411         latency   => 2,
2412 },
2413
2414 fistp => {
2415         state     => "exc_pinned",
2416         rd_constructor => "NONE",
2417         reg_req   => { },
2418         emit      => '. fistp%XM %AM',
2419         mode      => "mode_M",
2420         attr_type => "ia32_x87_attr_t",
2421         latency   => 2,
2422 },
2423
2424 # SSE3 firsttp instruction
2425 fisttp => {
2426         state     => "exc_pinned",
2427         rd_constructor => "NONE",
2428         reg_req   => { },
2429         emit      => '. fisttp%XM %AM',
2430         mode      => "mode_M",
2431         attr_type => "ia32_x87_attr_t",
2432         latency   => 2,
2433 },
2434
2435 # constants
2436
2437 fldz => {
2438         op_flags  => "R|c|K",
2439         irn_flags => "R",
2440         reg_req   => { out => [ "vfp" ] },
2441         emit      => '. fldz',
2442         attr_type => "ia32_x87_attr_t",
2443         latency   => 2,
2444 },
2445
2446 fld1 => {
2447         op_flags  => "R|c|K",
2448         irn_flags => "R",
2449         reg_req   => { out => [ "vfp" ] },
2450         emit      => '. fld1',
2451         attr_type => "ia32_x87_attr_t",
2452         latency   => 2,
2453 },
2454
2455 fldpi => {
2456         op_flags  => "R|c|K",
2457         irn_flags => "R",
2458         reg_req   => { out => [ "vfp" ] },
2459         emit      => '. fldpi',
2460         attr_type => "ia32_x87_attr_t",
2461         latency   => 2,
2462 },
2463
2464 fldln2 => {
2465         op_flags  => "R|c|K",
2466         irn_flags => "R",
2467         reg_req   => { out => [ "vfp" ] },
2468         emit      => '. fldln2',
2469         attr_type => "ia32_x87_attr_t",
2470         latency   => 2,
2471 },
2472
2473 fldlg2 => {
2474         op_flags  => "R|c|K",
2475         irn_flags => "R",
2476         reg_req   => { out => [ "vfp" ] },
2477         emit      => '. fldlg2',
2478         attr_type => "ia32_x87_attr_t",
2479         latency   => 2,
2480 },
2481
2482 fldl2t => {
2483         op_flags  => "R|c|K",
2484         irn_flags => "R",
2485         reg_req   => { out => [ "vfp" ] },
2486         emit      => '. fldll2t',
2487         attr_type => "ia32_x87_attr_t",
2488         latency   => 2,
2489 },
2490
2491 fldl2e => {
2492         op_flags  => "R|c|K",
2493         irn_flags => "R",
2494         reg_req   => { out => [ "vfp" ] },
2495         emit      => '. fldl2e',
2496         attr_type => "ia32_x87_attr_t",
2497         latency   => 2,
2498 },
2499
2500 # fxch, fpush, fpop
2501 # Note that it is NEVER allowed to do CSE on these nodes
2502 # Moreover, note the virtual register requierements!
2503
2504 fxch => {
2505         op_flags  => "R|K",
2506         reg_req   => { },
2507         cmp_attr  => "return 1;",
2508         emit      => '. fxch %X0',
2509         attr_type => "ia32_x87_attr_t",
2510         mode      => "mode_ANY",
2511         latency   => 1,
2512 },
2513
2514 fpush => {
2515         op_flags  => "R|K",
2516         reg_req   => {},
2517         cmp_attr  => "return 1;",
2518         emit      => '. fld %X0',
2519         attr_type => "ia32_x87_attr_t",
2520         mode      => "mode_ANY",
2521         latency   => 1,
2522 },
2523
2524 fpushCopy => {
2525         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
2526         cmp_attr  => "return 1;",
2527         emit      => '. fld %X0',
2528         attr_type => "ia32_x87_attr_t",
2529         latency   => 1,
2530 },
2531
2532 fpop => {
2533         op_flags  => "K",
2534         reg_req   => { },
2535         cmp_attr  => "return 1;",
2536         emit      => '. fstp %X0',
2537         attr_type => "ia32_x87_attr_t",
2538         mode      => "mode_ANY",
2539         latency   => 1,
2540 },
2541
2542 ffreep => {
2543         op_flags  => "K",
2544         reg_req   => { },
2545         cmp_attr  => "return 1;",
2546         emit      => '. ffreep %X0',
2547         attr_type => "ia32_x87_attr_t",
2548         mode      => "mode_ANY",
2549         latency   => 1,
2550 },
2551
2552 emms => {
2553         op_flags  => "K",
2554         reg_req   => { },
2555         cmp_attr  => "return 1;",
2556         emit      => '. emms',
2557         attr_type => "ia32_x87_attr_t",
2558         mode      => "mode_ANY",
2559         latency   => 3,
2560 },
2561
2562 femms => {
2563         op_flags  => "K",
2564         reg_req   => { },
2565         cmp_attr  => "return 1;",
2566         emit      => '. femms',
2567         attr_type => "ia32_x87_attr_t",
2568         mode      => "mode_ANY",
2569         latency   => 3,
2570 },
2571
2572 # compare
2573
2574 FucomFnstsw => {
2575         reg_req   => { },
2576         emit      => ". fucom %X1\n".
2577                      ". fnstsw %%ax",
2578         attr_type => "ia32_x87_attr_t",
2579         latency   => 2,
2580 },
2581
2582 FucompFnstsw => {
2583         reg_req   => { },
2584         emit      => ". fucomp %X1\n".
2585                      ". fnstsw %%ax",
2586         attr_type => "ia32_x87_attr_t",
2587         latency   => 2,
2588 },
2589
2590 FucomppFnstsw => {
2591         reg_req   => { },
2592         emit      => ". fucompp\n".
2593                      ". fnstsw %%ax",
2594         attr_type => "ia32_x87_attr_t",
2595         latency   => 2,
2596 },
2597
2598 Fucomi => {
2599         reg_req   => { },
2600         emit      => '. fucomi %X1',
2601         attr_type => "ia32_x87_attr_t",
2602         latency   => 1,
2603 },
2604
2605 Fucompi => {
2606         reg_req   => { },
2607         emit      => '. fucompi %X1',
2608         attr_type => "ia32_x87_attr_t",
2609         latency   => 1,
2610 },
2611
2612 FtstFnstsw => {
2613         reg_req   => { },
2614         emit      => ". ftst\n".
2615                      ". fnstsw %%ax",
2616         attr_type => "ia32_x87_attr_t",
2617         latency   => 2,
2618 },
2619
2620
2621 # -------------------------------------------------------------------------------- #
2622 #  ____ ____  _____                  _                               _             #
2623 # / ___/ ___|| ____| __   _____  ___| |_ ___  _ __   _ __   ___   __| | ___  ___   #
2624 # \___ \___ \|  _|   \ \ / / _ \/ __| __/ _ \| '__| | '_ \ / _ \ / _` |/ _ \/ __|  #
2625 #  ___) |__) | |___   \ V /  __/ (__| || (_) | |    | | | | (_) | (_| |  __/\__ \  #
2626 # |____/____/|_____|   \_/ \___|\___|\__\___/|_|    |_| |_|\___/ \__,_|\___||___/  #
2627 #                                                                                  #
2628 # -------------------------------------------------------------------------------- #
2629
2630
2631 # Spilling and reloading of SSE registers, hardcoded, not generated #
2632
2633 xxLoad => {
2634         op_flags  => "L|F",
2635         state     => "exc_pinned",
2636         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
2637         emit      => '. movdqu %D0, %AM',
2638         outs      => [ "res", "M" ],
2639         units     => [ "SSE" ],
2640         latency   => 1,
2641 },
2642
2643 xxStore => {
2644         op_flags => "L|F",
2645         state    => "exc_pinned",
2646         reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
2647         ins      => [ "base", "index", "mem", "val" ],
2648         emit     => '. movdqu %binop',
2649         units    => [ "SSE" ],
2650         latency   => 1,
2651         mode     => "mode_M",
2652 },
2653
2654 ); # end of %nodes
2655
2656 # Include the generated SIMD node specification written by the SIMD optimization
2657 $my_script_name = dirname($myname) . "/../ia32/ia32_simd_spec.pl";
2658 unless ($return = do $my_script_name) {
2659         warn "couldn't parse $my_script_name: $@" if $@;
2660         warn "couldn't do $my_script_name: $!"    unless defined $return;
2661         warn "couldn't run $my_script_name"       unless $return;
2662 }
2663
2664 # Transform some attributes
2665 foreach my $op (keys(%nodes)) {
2666         my $node         = $nodes{$op};
2667         my $op_attr_init = $node->{op_attr_init};
2668
2669         if(defined($op_attr_init)) {
2670                 $op_attr_init .= "\n\t";
2671         } else {
2672                 $op_attr_init = "";
2673         }
2674
2675         if(!defined($node->{latency})) {
2676                 if($op =~ m/^l_/) {
2677                         $node->{latency} = 0;
2678                 } else {
2679                         die("Latency missing for op $op");
2680                 }
2681         }
2682         $op_attr_init .= "attr->latency = ".$node->{latency} . ";";
2683
2684         $node->{op_attr_init} = $op_attr_init;
2685 }
2686
2687 print "";