- add builtin_(trap|bswap)
[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         SB0 => "${arch}_emit_8bit_source_register_or_immediate(node, 0);",
201         SB1 => "${arch}_emit_8bit_source_register_or_immediate(node, 1);",
202         SB2 => "${arch}_emit_8bit_source_register_or_immediate(node, 2);",
203         SB3 => "${arch}_emit_8bit_source_register_or_immediate(node, 3);",
204         SH0 => "${arch}_emit_8bit_high_source_register(node, 0);",
205         SI1 => "${arch}_emit_source_register_or_immediate(node, 1);",
206         SI3 => "${arch}_emit_source_register_or_immediate(node, 3);",
207         D0 => "${arch}_emit_dest_register(node, 0);",
208         D1 => "${arch}_emit_dest_register(node, 1);",
209         DB0 => "${arch}_emit_8bit_dest_register(node, 0);",
210         X0 => "${arch}_emit_x87_register(node, 0);",
211         X1 => "${arch}_emit_x87_register(node, 1);",
212         EX => "${arch}_emit_extend_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%EX%.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 #
1479 # BT supports source address mode, but this is unused yet
1480 #
1481 Bt => {
1482         irn_flags => "R",
1483         state     => "exc_pinned",
1484         reg_req   => { in => [ "gp", "gp" ], out => [ "flags" ] },
1485         ins       => [ "left", "right" ],
1486         emit      => '. bt%M %S1, %S0',
1487         units     => [ "GP" ],
1488         latency   => 1,
1489         mode      => $mode_flags,
1490         modified_flags => $status_flags  # only CF is set, but the other flags are undefined
1491 },
1492
1493 Bsf => {
1494         irn_flags => "R",
1495         state     => "exc_pinned",
1496         reg_req   => { in => [ "gp", "gp", "none", "gp" ],
1497                        out => [ "gp", "flags", "none" ] },
1498         ins       => [ "base", "index", "mem", "operand" ],
1499         outs      => [ "res", "flags", "M" ],
1500         am        => "source,binary",
1501         emit      => '. bsf%M %unop3, %D0',
1502         units     => [ "GP" ],
1503         latency   => 1,
1504         mode      => $mode_gp,
1505         modified_flags => $status_flags
1506 },
1507
1508 Bsr => {
1509         irn_flags => "R",
1510         state     => "exc_pinned",
1511         reg_req   => { in => [ "gp", "gp", "none", "gp" ],
1512                        out => [ "gp", "flags", "none" ] },
1513         ins       => [ "base", "index", "mem", "operand" ],
1514         outs      => [ "res", "flags", "M" ],
1515         am        => "source,binary",
1516         emit      => '. bsr%M %unop3, %D0',
1517         units     => [ "GP" ],
1518         latency   => 1,
1519         mode      => $mode_gp,
1520         modified_flags => $status_flags
1521 },
1522
1523 #
1524 # SSE4.2 or SSE4a popcnt instruction
1525 #
1526 Popcnt => {
1527         irn_flags => "R",
1528         state     => "exc_pinned",
1529         reg_req   => { in => [ "gp", "gp", "none", "gp" ],
1530                        out => [ "gp", "flags", "none" ] },
1531         ins       => [ "base", "index", "mem", "operand" ],
1532         outs      => [ "res", "flags", "M" ],
1533         am        => "source,binary",
1534         emit      => '. popcnt%M %unop3, %D0',
1535         units     => [ "GP" ],
1536         latency   => 1,
1537         mode      => $mode_gp,
1538         modified_flags => $status_flags
1539 },
1540
1541 Call => {
1542         state     => "exc_pinned",
1543         reg_req   => {
1544                 in  => [ "gp", "gp", "none", "gp", "esp", "fpcw", "eax", "ecx", "edx" ],
1545                 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" ]
1546         },
1547         ins       => [ "base", "index", "mem", "addr", "stack", "fpcw", "eax", "ecx", "edx" ],
1548         outs      => [ "stack", "fpcw", "M", "eax", "ecx", "edx", "vf0", "vf1", "vf2", "vf3", "vf4", "vf5", "vf6", "vf7", "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7" ],
1549         attr_type => "ia32_call_attr_t",
1550         attr      => "unsigned pop, ir_type *call_tp",
1551         am        => "source,unary",
1552         units     => [ "BRANCH" ],
1553         latency   => 4, # random number
1554         modified_flags => $status_flags
1555 },
1556
1557 #
1558 # a Helper node for frame-climbing, needed for __builtin_(frame|return)_address
1559 #
1560 # PS: try gcc __builtin_frame_address(100000) :-)
1561 #
1562 ClimbFrame => {
1563         reg_req   => { in => [ "gp", "gp", "gp"], out => [ "in_r3" ] },
1564         ins       => [ "frame", "cnt", "tmp" ],
1565         outs      => [ "res" ],
1566         latency   => 4, # random number
1567         attr_type => "ia32_climbframe_attr_t",
1568         attr      => "unsigned count",
1569         units     => [ "GP" ],
1570         mode      => $mode_gp
1571 },
1572
1573 #
1574 # bswap
1575 #
1576 Bswap => {
1577         irn_flags => "R",
1578         reg_req   => { in => [ "gp" ],
1579                        out => [ "in_r1" ] },
1580         emit      => '. bswap%M %S0',
1581         ins       => [ "val" ],
1582         units     => [ "GP" ],
1583         latency   => 1,
1584         mode      => $mode_gp,
1585 },
1586
1587 #
1588 # bswap16, use xchg here
1589 #
1590 Bswap16 => {
1591         irn_flags => "R",
1592         reg_req   => { in => [ "eax ebx ecx edx" ],
1593                        out => [ "in_r1" ] },
1594         emit      => '. xchg %SB0, %SH0',
1595         ins       => [ "val" ],
1596         units     => [ "GP" ],
1597         latency   => 1,
1598         mode      => $mode_gp,
1599 },
1600
1601 #
1602 # BreakPoint
1603 #
1604 Breakpoint => {
1605         state     => "pinned",
1606         reg_req   => { in => [ "none" ], out => [ "none" ] },
1607         ins       => [ "mem" ],
1608         latency   => 0,
1609         emit      => ". int3",
1610         units     => [ "GP" ],
1611         mode      => mode_M,
1612 },
1613
1614 #
1615 # Intel style prefetching
1616 #
1617 Prefetch0 => {
1618         op_flags  => "L|F",
1619         state     => "exc_pinned",
1620         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1621         ins       => [ "base", "index", "mem" ],
1622         outs      => [ "M" ],
1623         latency   => 0,
1624         emit      => ". prefetcht0 %AM",
1625         units     => [ "GP" ],
1626 },
1627
1628 Prefetch1 => {
1629         op_flags  => "L|F",
1630         state     => "exc_pinned",
1631         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1632         ins       => [ "base", "index", "mem" ],
1633         outs      => [ "M" ],
1634         latency   => 0,
1635         emit      => ". prefetcht1 %AM",
1636         units     => [ "GP" ],
1637 },
1638
1639 Prefetch2 => {
1640         op_flags  => "L|F",
1641         state     => "exc_pinned",
1642         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1643         ins       => [ "base", "index", "mem" ],
1644         outs      => [ "M" ],
1645         latency   => 0,
1646         emit      => ". prefetcht2 %AM",
1647         units     => [ "GP" ],
1648 },
1649
1650 PrefetchNTA => {
1651         op_flags  => "L|F",
1652         state     => "exc_pinned",
1653         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1654         ins       => [ "base", "index", "mem" ],
1655         outs      => [ "M" ],
1656         latency   => 0,
1657         emit      => ". prefetchnta %AM",
1658         units     => [ "GP" ],
1659 },
1660
1661 #
1662 # 3DNow! prefetch instructions
1663 #
1664 Prefetch => {
1665         op_flags  => "L|F",
1666         state     => "exc_pinned",
1667         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1668         ins       => [ "base", "index", "mem" ],
1669         outs      => [ "M" ],
1670         latency   => 0,
1671         emit      => ". prefetch %AM",
1672         units     => [ "GP" ],
1673 },
1674
1675 PrefetchW => {
1676         op_flags  => "L|F",
1677         state     => "exc_pinned",
1678         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
1679         ins       => [ "base", "index", "mem" ],
1680         outs      => [ "M" ],
1681         latency   => 0,
1682         emit      => ". prefetchw %AM",
1683         units     => [ "GP" ],
1684 },
1685
1686 #-----------------------------------------------------------------------------#
1687 #   _____ _____ ______    __ _             _                     _            #
1688 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
1689 # | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
1690 #  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
1691 #  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
1692 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
1693 #-----------------------------------------------------------------------------#
1694
1695 # produces a 0/+0.0
1696 xZero => {
1697         irn_flags => "R",
1698         reg_req   => { out => [ "xmm" ] },
1699         emit      => '. xorp%XSD %D0, %D0',
1700         latency   => 3,
1701         units     => [ "SSE" ],
1702         mode      => $mode_xmm
1703 },
1704
1705 xPzero => {
1706         irn_flags => "R",
1707         reg_req   => { out => [ "xmm" ] },
1708         emit      => '. pxor %D0, %D0',
1709         latency   => 3,
1710         units     => [ "SSE" ],
1711         mode      => $mode_xmm
1712 },
1713
1714 # produces all 1 bits
1715 xAllOnes => {
1716         irn_flags => "R",
1717         reg_req   => { out => [ "xmm" ] },
1718         emit      => '. pcmpeqb %D0, %D0',
1719         latency   => 3,
1720         units     => [ "SSE" ],
1721         mode      => $mode_xmm
1722 },
1723
1724 # integer shift left, dword
1725 xPslld => {
1726         irn_flags => "R",
1727         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1728         emit      => '. pslld %SI1, %D0',
1729         latency   => 3,
1730         units     => [ "SSE" ],
1731         mode      => $mode_xmm
1732 },
1733
1734 # integer shift left, qword
1735 xPsllq => {
1736         irn_flags => "R",
1737         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1738         emit      => '. psllq %SI1, %D0',
1739         latency   => 3,
1740         units     => [ "SSE" ],
1741         mode      => $mode_xmm
1742 },
1743
1744 # integer shift right, dword
1745 xPsrld => {
1746         irn_flags => "R",
1747         reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
1748         emit      => '. psrld %SI1, %D0',
1749         latency   => 1,
1750         units     => [ "SSE" ],
1751         mode      => $mode_xmm
1752 },
1753
1754 # mov from integer to SSE register
1755 xMovd  => {
1756         irn_flags => "R",
1757         reg_req   => { in => [ "gp" ], out => [ "xmm" ] },
1758         emit      => '. movd %S0, %D0',
1759         latency   => 1,
1760         units     => [ "SSE" ],
1761         mode      => $mode_xmm
1762 },
1763
1764 # commutative operations
1765
1766 xAdd => {
1767         irn_flags => "R",
1768         state     => "exc_pinned",
1769         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1770         ins       => [ "base", "index", "mem", "left", "right" ],
1771         am        => "source,binary",
1772         emit      => '. add%XXM %binop',
1773         latency   => 4,
1774         units     => [ "SSE" ],
1775         mode      => $mode_xmm
1776 },
1777
1778 xMul => {
1779         irn_flags => "R",
1780         state     => "exc_pinned",
1781         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1782         ins       => [ "base", "index", "mem", "left", "right" ],
1783         am        => "source,binary",
1784         emit      => '. mul%XXM %binop',
1785         latency   => 4,
1786         units     => [ "SSE" ],
1787         mode      => $mode_xmm
1788 },
1789
1790 xMax => {
1791         irn_flags => "R",
1792         state     => "exc_pinned",
1793         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1794         ins       => [ "base", "index", "mem", "left", "right" ],
1795         am        => "source,binary",
1796         emit      => '. max%XXM %binop',
1797         latency   => 2,
1798         units     => [ "SSE" ],
1799         mode      => $mode_xmm
1800 },
1801
1802 xMin => {
1803         irn_flags => "R",
1804         state     => "exc_pinned",
1805         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1806         ins       => [ "base", "index", "mem", "left", "right" ],
1807         am        => "source,binary",
1808         emit      => '. min%XXM %binop',
1809         latency   => 2,
1810         units     => [ "SSE" ],
1811         mode      => $mode_xmm
1812 },
1813
1814 xAnd => {
1815         irn_flags => "R",
1816         state     => "exc_pinned",
1817         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1818         ins       => [ "base", "index", "mem", "left", "right" ],
1819         am        => "source,binary",
1820         emit      => '. andp%XSD %binop',
1821         latency   => 3,
1822         units     => [ "SSE" ],
1823         mode      => $mode_xmm
1824 },
1825
1826 xOr => {
1827         irn_flags => "R",
1828         state     => "exc_pinned",
1829         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1830         ins       => [ "base", "index", "mem", "left", "right" ],
1831         am        => "source,binary",
1832         emit      => '. orp%XSD %binop',
1833         latency   => 3,
1834         units     => [ "SSE" ],
1835         mode      => $mode_xmm
1836 },
1837
1838 xXor => {
1839         irn_flags => "R",
1840         state     => "exc_pinned",
1841         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
1842         ins       => [ "base", "index", "mem", "left", "right" ],
1843         am        => "source,binary",
1844         emit      => '. xorp%XSD %binop',
1845         latency   => 3,
1846         units     => [ "SSE" ],
1847         mode      => $mode_xmm
1848 },
1849
1850 # not commutative operations
1851
1852 xAndNot => {
1853         irn_flags => "R",
1854         state     => "exc_pinned",
1855         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5" ] },
1856         ins       => [ "base", "index", "mem", "left", "right" ],
1857         am        => "source,binary",
1858         emit      => '. andnp%XSD %binop',
1859         latency   => 3,
1860         units     => [ "SSE" ],
1861         mode      => $mode_xmm
1862 },
1863
1864 xSub => {
1865         irn_flags => "R",
1866         state     => "exc_pinned",
1867         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4" ] },
1868         ins       => [ "base", "index", "mem", "minuend", "subtrahend" ],
1869         am        => "source,binary",
1870         emit      => '. sub%XXM %binop',
1871         latency   => 4,
1872         units     => [ "SSE" ],
1873         mode      => $mode_xmm
1874 },
1875
1876 xDiv => {
1877         irn_flags => "R",
1878         state     => "exc_pinned",
1879         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5", "none" ] },
1880         ins       => [ "base", "index", "mem", "dividend", "divisor" ],
1881         am        => "source,binary",
1882         outs      => [ "res", "M" ],
1883         emit      => '. div%XXM %binop',
1884         latency   => 16,
1885         units     => [ "SSE" ],
1886 },
1887
1888 # other operations
1889
1890 Ucomi => {
1891         irn_flags => "R",
1892         state     => "exc_pinned",
1893         reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "eflags" ] },
1894         ins       => [ "base", "index", "mem", "left", "right" ],
1895         outs      => [ "flags" ],
1896         am        => "source,binary",
1897         attr      => "int ins_permuted",
1898         init_attr => "attr->data.ins_permuted = ins_permuted;",
1899         emit      => ' .ucomi%XXM %binop',
1900         latency   => 3,
1901         units     => [ "SSE" ],
1902         mode      => $mode_flags,
1903         modified_flags => 1,
1904 },
1905
1906 # Load / Store
1907
1908 xLoad => {
1909         op_flags  => "L|F",
1910         state     => "exc_pinned",
1911         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none", "none" ] },
1912         ins       => [ "base", "index", "mem" ],
1913         outs      => [ "res", "M", "X_exc" ],
1914         emit      => '. mov%XXM %AM, %D0',
1915         attr      => "ir_mode *load_mode",
1916         init_attr => "attr->ls_mode = load_mode;",
1917         latency   => 0,
1918         units     => [ "SSE" ],
1919 },
1920
1921 xStore => {
1922         op_flags => "L|F",
1923         state    => "exc_pinned",
1924         reg_req  => { in => [ "gp", "gp", "none", "xmm" ], out => [ "none", "none" ] },
1925         ins       => [ "base", "index", "mem", "val" ],
1926         outs      => [ "M", "X_exc" ],
1927         emit     => '. mov%XXM %S3, %AM',
1928         latency  => 0,
1929         units    => [ "SSE" ],
1930         mode     => "mode_M",
1931 },
1932
1933 xStoreSimple => {
1934         op_flags => "L|F",
1935         state    => "exc_pinned",
1936         reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
1937         ins      => [ "base", "index", "mem", "val" ],
1938         emit     => '. mov%XXM %S3, %AM',
1939         latency  => 0,
1940         units    => [ "SSE" ],
1941         mode     => "mode_M",
1942 },
1943
1944 CvtSI2SS => {
1945         op_flags => "L|F",
1946         state     => "exc_pinned",
1947         reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
1948         ins      => [ "base", "index", "mem", "val" ],
1949         am       => "source,unary",
1950         emit     => '. cvtsi2ss %unop3, %D0',
1951         latency  => 2,
1952         units    => [ "SSE" ],
1953         mode     => $mode_xmm
1954 },
1955
1956 CvtSI2SD => {
1957         op_flags => "L|F",
1958         state     => "exc_pinned",
1959         reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
1960         ins      => [ "base", "index", "mem", "val" ],
1961         am       => "source,unary",
1962         emit     => '. cvtsi2sd %unop3, %D0',
1963         latency  => 2,
1964         units    => [ "SSE" ],
1965         mode     => $mode_xmm
1966 },
1967
1968
1969 l_LLtoFloat => {
1970         op_flags => "L|F",
1971         cmp_attr => "return 1;",
1972         ins      => [ "val_high", "val_low" ],
1973 },
1974
1975 l_FloattoLL => {
1976         op_flags => "L|F",
1977         cmp_attr => "return 1;",
1978         ins      => [ "val" ],
1979         outs     => [ "res_high", "res_low" ],
1980 },
1981
1982 # CopyB
1983
1984 CopyB => {
1985         op_flags  => "F|H",
1986         state     => "pinned",
1987         reg_req   => { in => [ "edi", "esi", "ecx", "none" ], out => [ "edi", "esi", "ecx", "none" ] },
1988         outs      => [ "DST", "SRC", "CNT", "M" ],
1989         attr_type => "ia32_copyb_attr_t",
1990         attr      => "unsigned size",
1991         units     => [ "GP" ],
1992         latency  => 3,
1993 # we don't care about this flag, so no need to mark this node
1994 #       modified_flags => [ "DF" ]
1995 },
1996
1997 CopyB_i => {
1998         op_flags  => "F|H",
1999         state     => "pinned",
2000         reg_req   => { in => [ "edi", "esi", "none" ], out => [  "edi", "esi", "none" ] },
2001         outs      => [ "DST", "SRC", "M" ],
2002         attr_type => "ia32_copyb_attr_t",
2003         attr      => "unsigned size",
2004         units     => [ "GP" ],
2005         latency  => 3,
2006 # we don't care about this flag, so no need to mark this node
2007 #       modified_flags => [ "DF" ]
2008 },
2009
2010 # Conversions
2011
2012 Cwtl => {
2013         state     => "exc_pinned",
2014         reg_req   => { in => [ "eax" ], out => [ "eax" ] },
2015         ins       => [ "val" ],
2016         outs      => [ "res" ],
2017         emit      => '. cwtl',
2018         units     => [ "GP" ],
2019         latency   => 1,
2020         mode      => $mode_gp,
2021 },
2022
2023 Conv_I2I => {
2024         state     => "exc_pinned",
2025         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "gp", "none" ] },
2026         ins       => [ "base", "index", "mem", "val" ],
2027         outs      => [ "res", "M" ],
2028         am        => "source,unary",
2029         units     => [ "GP" ],
2030         latency   => 1,
2031         attr      => "ir_mode *smaller_mode",
2032         init_attr => "attr->ls_mode = smaller_mode;",
2033         mode      => $mode_gp,
2034 },
2035
2036 Conv_I2I8Bit => {
2037         state     => "exc_pinned",
2038         reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "gp", "none" ] },
2039         ins       => [ "base", "index", "mem", "val" ],
2040         am        => "source,unary",
2041         units     => [ "GP" ],
2042         latency   => 1,
2043         attr      => "ir_mode *smaller_mode",
2044         init_attr => "attr->ls_mode = smaller_mode;",
2045         mode      => $mode_gp,
2046 },
2047
2048 Conv_I2FP => {
2049         state     => "exc_pinned",
2050         reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm", "none" ] },
2051         ins       => [ "base", "index", "mem", "val" ],
2052         am        => "source,unary",
2053         latency   => 10,
2054         units     => [ "SSE" ],
2055         mode      => $mode_xmm,
2056 },
2057
2058 Conv_FP2I => {
2059         state     => "exc_pinned",
2060         reg_req   => { in => [ "gp", "gp", "none", "xmm" ], out => [ "gp", "none" ] },
2061         ins       => [ "base", "index", "mem", "val" ],
2062         am        => "source,unary",
2063         latency   => 10,
2064         units     => [ "SSE" ],
2065         mode      => $mode_gp,
2066 },
2067
2068 Conv_FP2FP => {
2069         state     => "exc_pinned",
2070         reg_req   => { in => [ "gp", "gp", "none", "xmm" ], out => [ "xmm", "none" ] },
2071         ins       => [ "base", "index", "mem", "val" ],
2072         am        => "source,unary",
2073         latency   => 8,
2074         units     => [ "SSE" ],
2075         mode      => $mode_xmm,
2076 },
2077
2078 #----------------------------------------------------------#
2079 #        _      _               _    __ _             _    #
2080 #       (_)    | |             | |  / _| |           | |   #
2081 # __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
2082 # \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
2083 #  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
2084 #   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
2085 #                 | |                                      #
2086 #  _ __   ___   __| | ___  ___                             #
2087 # | '_ \ / _ \ / _` |/ _ \/ __|                            #
2088 # | | | | (_) | (_| |  __/\__ \                            #
2089 # |_| |_|\___/ \__,_|\___||___/                            #
2090 #----------------------------------------------------------#
2091
2092 # rematerialisation disabled for all float nodes for now, because the fpcw
2093 # handler runs before spilling and we might end up with wrong fpcw then
2094
2095 vfadd => {
2096 #       irn_flags => "R",
2097         state     => "exc_pinned",
2098         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
2099         ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
2100         am        => "source,binary",
2101         latency   => 4,
2102         units     => [ "VFP" ],
2103         mode      => "mode_E",
2104         attr_type => "ia32_x87_attr_t",
2105 },
2106
2107 vfmul => {
2108 #       irn_flags => "R",
2109         state     => "exc_pinned",
2110         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
2111         ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
2112         am        => "source,binary",
2113         latency   => 4,
2114         units     => [ "VFP" ],
2115         mode      => "mode_E",
2116         attr_type => "ia32_x87_attr_t",
2117 },
2118
2119 vfsub => {
2120 #       irn_flags => "R",
2121         state     => "exc_pinned",
2122         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
2123         ins       => [ "base", "index", "mem", "minuend", "subtrahend", "fpcw" ],
2124         am        => "source,binary",
2125         latency   => 4,
2126         units     => [ "VFP" ],
2127         mode      => "mode_E",
2128         attr_type => "ia32_x87_attr_t",
2129 },
2130
2131 vfdiv => {
2132         state     => "exc_pinned",
2133         reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp", "none" ] },
2134         ins       => [ "base", "index", "mem", "dividend", "divisor", "fpcw" ],
2135         am        => "source,binary",
2136         outs      => [ "res", "M" ],
2137         latency   => 20,
2138         units     => [ "VFP" ],
2139         attr_type => "ia32_x87_attr_t",
2140 },
2141
2142 vfprem => {
2143         reg_req   => { in => [ "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
2144         ins       => [ "left", "right", "fpcw" ],
2145         latency   => 20,
2146         units     => [ "VFP" ],
2147         mode      => "mode_E",
2148         attr_type => "ia32_x87_attr_t",
2149 },
2150
2151 vfabs => {
2152         irn_flags => "R",
2153         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
2154         ins       => [ "value" ],
2155         latency   => 2,
2156         units     => [ "VFP" ],
2157         mode      => "mode_E",
2158         attr_type => "ia32_x87_attr_t",
2159 },
2160
2161 vfchs => {
2162         irn_flags => "R",
2163         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
2164         ins       => [ "value" ],
2165         latency   => 2,
2166         units     => [ "VFP" ],
2167         mode      => "mode_E",
2168         attr_type => "ia32_x87_attr_t",
2169 },
2170
2171 # virtual Load and Store
2172
2173 vfld => {
2174         irn_flags => "R",
2175         op_flags  => "L|F",
2176         state     => "exc_pinned",
2177         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none", "none" ] },
2178         ins       => [ "base", "index", "mem" ],
2179         outs      => [ "res", "M", "X_exc" ],
2180         attr      => "ir_mode *load_mode",
2181         init_attr => "attr->attr.ls_mode = load_mode;",
2182         latency   => 2,
2183         units     => [ "VFP" ],
2184         attr_type => "ia32_x87_attr_t",
2185 },
2186
2187 vfst => {
2188         irn_flags => "R",
2189         op_flags  => "L|F",
2190         state     => "exc_pinned",
2191         reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "none", "none" ] },
2192         ins       => [ "base", "index", "mem", "val" ],
2193         outs      => [ "M", "X_exc" ],
2194         attr      => "ir_mode *store_mode",
2195         init_attr => "attr->attr.ls_mode = store_mode;",
2196         latency   => 2,
2197         units     => [ "VFP" ],
2198         mode      => "mode_M",
2199         attr_type => "ia32_x87_attr_t",
2200 },
2201
2202 # Conversions
2203
2204 vfild => {
2205         state     => "exc_pinned",
2206         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
2207         outs      => [ "res", "M" ],
2208         ins       => [ "base", "index", "mem" ],
2209         latency   => 4,
2210         units     => [ "VFP" ],
2211         attr_type => "ia32_x87_attr_t",
2212 },
2213
2214 vfist => {
2215         state     => "exc_pinned",
2216         reg_req   => { in => [ "gp", "gp", "none", "vfp", "fpcw" ] },
2217         ins       => [ "base", "index", "mem", "val", "fpcw" ],
2218         latency   => 4,
2219         units     => [ "VFP" ],
2220         mode      => "mode_M",
2221         attr_type => "ia32_x87_attr_t",
2222 },
2223
2224 # SSE3 fisttp instruction
2225 vfisttp => {
2226         state     => "exc_pinned",
2227         reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "in_r4", "none" ]},
2228         ins       => [ "base", "index", "mem", "val" ],
2229         outs      => [ "res", "M" ],
2230         latency   => 4,
2231         units     => [ "VFP" ],
2232         attr_type => "ia32_x87_attr_t",
2233 },
2234
2235
2236 # constants
2237
2238 vfldz => {
2239         irn_flags => "R",
2240         reg_req   => { out => [ "vfp" ] },
2241         outs      => [ "res" ],
2242         latency   => 4,
2243         units     => [ "VFP" ],
2244         mode      => "mode_E",
2245         attr_type => "ia32_x87_attr_t",
2246 },
2247
2248 vfld1 => {
2249         irn_flags => "R",
2250         reg_req   => { out => [ "vfp" ] },
2251         outs      => [ "res" ],
2252         latency   => 4,
2253         units     => [ "VFP" ],
2254         mode      => "mode_E",
2255         attr_type => "ia32_x87_attr_t",
2256 },
2257
2258 vfldpi => {
2259         irn_flags => "R",
2260         reg_req   => { out => [ "vfp" ] },
2261         outs      => [ "res" ],
2262         latency   => 4,
2263         units     => [ "VFP" ],
2264         mode      => "mode_E",
2265         attr_type => "ia32_x87_attr_t",
2266 },
2267
2268 vfldln2 => {
2269         irn_flags => "R",
2270         reg_req   => { out => [ "vfp" ] },
2271         outs      => [ "res" ],
2272         latency   => 4,
2273         units     => [ "VFP" ],
2274         mode      => "mode_E",
2275         attr_type => "ia32_x87_attr_t",
2276 },
2277
2278 vfldlg2 => {
2279         irn_flags => "R",
2280         reg_req   => { out => [ "vfp" ] },
2281         outs      => [ "res" ],
2282         latency   => 4,
2283         units     => [ "VFP" ],
2284         mode      => "mode_E",
2285         attr_type => "ia32_x87_attr_t",
2286 },
2287
2288 vfldl2t => {
2289         irn_flags => "R",
2290         reg_req   => { out => [ "vfp" ] },
2291         outs      => [ "res" ],
2292         latency   => 4,
2293         units     => [ "VFP" ],
2294         mode      => "mode_E",
2295         attr_type => "ia32_x87_attr_t",
2296 },
2297
2298 vfldl2e => {
2299         irn_flags => "R",
2300         reg_req   => { out => [ "vfp" ] },
2301         outs      => [ "res" ],
2302         latency   => 4,
2303         units     => [ "VFP" ],
2304         mode      => "mode_E",
2305         attr_type => "ia32_x87_attr_t",
2306 },
2307
2308 # other
2309
2310 vFucomFnstsw => {
2311 # we can't allow to rematerialize this node so we don't have
2312 #  accidently produce Phi(Fucom, Fucom(ins_permuted))
2313 #       irn_flags => "R",
2314         reg_req   => { in => [ "vfp", "vfp" ], out => [ "eax" ] },
2315         ins       => [ "left", "right" ],
2316         outs      => [ "flags" ],
2317         attr      => "int ins_permuted",
2318         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2319         latency   => 3,
2320         units     => [ "VFP" ],
2321         attr_type => "ia32_x87_attr_t",
2322         mode      => $mode_gp
2323 },
2324
2325 vFucomi => {
2326         irn_flags => "R",
2327         reg_req   => { in => [ "vfp", "vfp" ], out => [ "eflags" ] },
2328         ins       => [ "left", "right" ],
2329         outs      => [ "flags" ],
2330         attr      => "int ins_permuted",
2331         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2332         latency   => 3,
2333         units     => [ "VFP" ],
2334         attr_type => "ia32_x87_attr_t",
2335         mode      => $mode_gp
2336 },
2337
2338 vFtstFnstsw => {
2339 #       irn_flags => "R",
2340         reg_req   => { in => [ "vfp" ], out => [ "eax" ] },
2341         ins       => [ "left" ],
2342         outs      => [ "flags" ],
2343         attr      => "int ins_permuted",
2344         init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
2345         latency   => 3,
2346         units     => [ "VFP" ],
2347         attr_type => "ia32_x87_attr_t",
2348         mode      => $mode_gp
2349 },
2350
2351 Sahf => {
2352         irn_flags => "R",
2353         reg_req   => { in => [ "eax" ], out => [ "eflags" ] },
2354         ins       => [ "val" ],
2355         outs      => [ "flags" ],
2356         emit      => '. sahf',
2357         latency   => 1,
2358         units     => [ "GP" ],
2359         mode      => $mode_flags,
2360 },
2361
2362 #------------------------------------------------------------------------#
2363 #       ___ _____    __ _             _                     _            #
2364 # __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
2365 # \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
2366 #  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
2367 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
2368 #------------------------------------------------------------------------#
2369
2370 # Note: gas is strangely buggy: fdivrp and fdivp as well as fsubrp and fsubp
2371 #       are swapped, we work this around in the emitter...
2372
2373 fadd => {
2374         state     => "exc_pinned",
2375         rd_constructor => "NONE",
2376         reg_req   => { },
2377         emit      => '. fadd%XM %x87_binop',
2378         latency   => 4,
2379         attr_type => "ia32_x87_attr_t",
2380 },
2381
2382 faddp => {
2383         state     => "exc_pinned",
2384         rd_constructor => "NONE",
2385         reg_req   => { },
2386         emit      => '. faddp%XM %x87_binop',
2387         latency   => 4,
2388         attr_type => "ia32_x87_attr_t",
2389 },
2390
2391 fmul => {
2392         state     => "exc_pinned",
2393         rd_constructor => "NONE",
2394         reg_req   => { },
2395         emit      => '. fmul%XM %x87_binop',
2396         latency   => 4,
2397         attr_type => "ia32_x87_attr_t",
2398 },
2399
2400 fmulp => {
2401         state     => "exc_pinned",
2402         rd_constructor => "NONE",
2403         reg_req   => { },
2404         emit      => '. fmulp%XM %x87_binop',,
2405         latency   => 4,
2406         attr_type => "ia32_x87_attr_t",
2407 },
2408
2409 fsub => {
2410         state     => "exc_pinned",
2411         rd_constructor => "NONE",
2412         reg_req   => { },
2413         emit      => '. fsub%XM %x87_binop',
2414         latency   => 4,
2415         attr_type => "ia32_x87_attr_t",
2416 },
2417
2418 fsubp => {
2419         state     => "exc_pinned",
2420         rd_constructor => "NONE",
2421         reg_req   => { },
2422 # see note about gas bugs
2423         emit      => '. fsubrp%XM %x87_binop',
2424         latency   => 4,
2425         attr_type => "ia32_x87_attr_t",
2426 },
2427
2428 fsubr => {
2429         state     => "exc_pinned",
2430         rd_constructor => "NONE",
2431         irn_flags => "R",
2432         reg_req   => { },
2433         emit      => '. fsubr%XM %x87_binop',
2434         latency   => 4,
2435         attr_type => "ia32_x87_attr_t",
2436 },
2437
2438 fsubrp => {
2439         state     => "exc_pinned",
2440         rd_constructor => "NONE",
2441         irn_flags => "R",
2442         reg_req   => { },
2443 # see note about gas bugs
2444         emit      => '. fsubp%XM %x87_binop',
2445         latency   => 4,
2446         attr_type => "ia32_x87_attr_t",
2447 },
2448
2449 fprem => {
2450         rd_constructor => "NONE",
2451         reg_req   => { },
2452         emit      => '. fprem1',
2453         latency   => 20,
2454         attr_type => "ia32_x87_attr_t",
2455 },
2456
2457 # this node is just here, to keep the simulator running
2458 # we can omit this when a fprem simulation function exists
2459 fpremp => {
2460         rd_constructor => "NONE",
2461         reg_req   => { },
2462         emit      => '. fprem1\n'.
2463                      '. fstp %X0',
2464         latency   => 20,
2465         attr_type => "ia32_x87_attr_t",
2466 },
2467
2468 fdiv => {
2469         state     => "exc_pinned",
2470         rd_constructor => "NONE",
2471         reg_req   => { },
2472         emit      => '. fdiv%XM %x87_binop',
2473         latency   => 20,
2474         attr_type => "ia32_x87_attr_t",
2475 },
2476
2477 fdivp => {
2478         state     => "exc_pinned",
2479         rd_constructor => "NONE",
2480         reg_req   => { },
2481 # see note about gas bugs
2482         emit      => '. fdivrp%XM %x87_binop',
2483         latency   => 20,
2484         attr_type => "ia32_x87_attr_t",
2485 },
2486
2487 fdivr => {
2488         state     => "exc_pinned",
2489         rd_constructor => "NONE",
2490         reg_req   => { },
2491         emit      => '. fdivr%XM %x87_binop',
2492         latency   => 20,
2493         attr_type => "ia32_x87_attr_t",
2494 },
2495
2496 fdivrp => {
2497         state     => "exc_pinned",
2498         rd_constructor => "NONE",
2499         reg_req   => { },
2500 # see note about gas bugs
2501         emit      => '. fdivp%XM %x87_binop',
2502         latency   => 20,
2503         attr_type => "ia32_x87_attr_t",
2504 },
2505
2506 fabs => {
2507         rd_constructor => "NONE",
2508         reg_req   => { },
2509         emit      => '. fabs',
2510         latency   => 4,
2511         attr_type => "ia32_x87_attr_t",
2512 },
2513
2514 fchs => {
2515         op_flags  => "R|K",
2516         rd_constructor => "NONE",
2517         reg_req   => { },
2518         emit      => '. fchs',
2519         latency   => 4,
2520         attr_type => "ia32_x87_attr_t",
2521 },
2522
2523 # x87 Load and Store
2524
2525 fld => {
2526         rd_constructor => "NONE",
2527         op_flags  => "R|L|F",
2528         state     => "exc_pinned",
2529         reg_req   => { },
2530         emit      => '. fld%XM %AM',
2531         attr_type => "ia32_x87_attr_t",
2532         latency   => 2,
2533 },
2534
2535 fst => {
2536         rd_constructor => "NONE",
2537         op_flags  => "R|L|F",
2538         state     => "exc_pinned",
2539         reg_req   => { },
2540         emit      => '. fst%XM %AM',
2541         mode      => "mode_M",
2542         attr_type => "ia32_x87_attr_t",
2543         latency   => 2,
2544 },
2545
2546 fstp => {
2547         rd_constructor => "NONE",
2548         op_flags  => "R|L|F",
2549         state     => "exc_pinned",
2550         reg_req   => { },
2551         emit      => '. fstp%XM %AM',
2552         mode      => "mode_M",
2553         attr_type => "ia32_x87_attr_t",
2554         latency   => 2,
2555 },
2556
2557 # Conversions
2558
2559 fild => {
2560         state     => "exc_pinned",
2561         rd_constructor => "NONE",
2562         reg_req   => { },
2563         emit      => '. fild%XM %AM',
2564         attr_type => "ia32_x87_attr_t",
2565         latency   => 2,
2566 },
2567
2568 fist => {
2569         state     => "exc_pinned",
2570         rd_constructor => "NONE",
2571         reg_req   => { },
2572         emit      => '. fist%XM %AM',
2573         mode      => "mode_M",
2574         attr_type => "ia32_x87_attr_t",
2575         latency   => 2,
2576 },
2577
2578 fistp => {
2579         state     => "exc_pinned",
2580         rd_constructor => "NONE",
2581         reg_req   => { },
2582         emit      => '. fistp%XM %AM',
2583         mode      => "mode_M",
2584         attr_type => "ia32_x87_attr_t",
2585         latency   => 2,
2586 },
2587
2588 # SSE3 firsttp instruction
2589 fisttp => {
2590         state     => "exc_pinned",
2591         rd_constructor => "NONE",
2592         reg_req   => { },
2593         emit      => '. fisttp%XM %AM',
2594         mode      => "mode_M",
2595         attr_type => "ia32_x87_attr_t",
2596         latency   => 2,
2597 },
2598
2599 # constants
2600
2601 fldz => {
2602         op_flags  => "R|c|K",
2603         irn_flags => "R",
2604         reg_req   => { out => [ "vfp" ] },
2605         emit      => '. fldz',
2606         attr_type => "ia32_x87_attr_t",
2607         latency   => 2,
2608 },
2609
2610 fld1 => {
2611         op_flags  => "R|c|K",
2612         irn_flags => "R",
2613         reg_req   => { out => [ "vfp" ] },
2614         emit      => '. fld1',
2615         attr_type => "ia32_x87_attr_t",
2616         latency   => 2,
2617 },
2618
2619 fldpi => {
2620         op_flags  => "R|c|K",
2621         irn_flags => "R",
2622         reg_req   => { out => [ "vfp" ] },
2623         emit      => '. fldpi',
2624         attr_type => "ia32_x87_attr_t",
2625         latency   => 2,
2626 },
2627
2628 fldln2 => {
2629         op_flags  => "R|c|K",
2630         irn_flags => "R",
2631         reg_req   => { out => [ "vfp" ] },
2632         emit      => '. fldln2',
2633         attr_type => "ia32_x87_attr_t",
2634         latency   => 2,
2635 },
2636
2637 fldlg2 => {
2638         op_flags  => "R|c|K",
2639         irn_flags => "R",
2640         reg_req   => { out => [ "vfp" ] },
2641         emit      => '. fldlg2',
2642         attr_type => "ia32_x87_attr_t",
2643         latency   => 2,
2644 },
2645
2646 fldl2t => {
2647         op_flags  => "R|c|K",
2648         irn_flags => "R",
2649         reg_req   => { out => [ "vfp" ] },
2650         emit      => '. fldll2t',
2651         attr_type => "ia32_x87_attr_t",
2652         latency   => 2,
2653 },
2654
2655 fldl2e => {
2656         op_flags  => "R|c|K",
2657         irn_flags => "R",
2658         reg_req   => { out => [ "vfp" ] },
2659         emit      => '. fldl2e',
2660         attr_type => "ia32_x87_attr_t",
2661         latency   => 2,
2662 },
2663
2664 # fxch, fpush, fpop
2665 # Note that it is NEVER allowed to do CSE on these nodes
2666 # Moreover, note the virtual register requierements!
2667
2668 fxch => {
2669         op_flags  => "R|K",
2670         reg_req   => { },
2671         cmp_attr  => "return 1;",
2672         emit      => '. fxch %X0',
2673         attr_type => "ia32_x87_attr_t",
2674         mode      => "mode_ANY",
2675         latency   => 1,
2676 },
2677
2678 fpush => {
2679         op_flags  => "R|K",
2680         reg_req   => {},
2681         cmp_attr  => "return 1;",
2682         emit      => '. fld %X0',
2683         attr_type => "ia32_x87_attr_t",
2684         mode      => "mode_ANY",
2685         latency   => 1,
2686 },
2687
2688 fpushCopy => {
2689         reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
2690         cmp_attr  => "return 1;",
2691         emit      => '. fld %X0',
2692         attr_type => "ia32_x87_attr_t",
2693         latency   => 1,
2694 },
2695
2696 fpop => {
2697         op_flags  => "K",
2698         reg_req   => { },
2699         cmp_attr  => "return 1;",
2700         emit      => '. fstp %X0',
2701         attr_type => "ia32_x87_attr_t",
2702         mode      => "mode_ANY",
2703         latency   => 1,
2704 },
2705
2706 ffreep => {
2707         op_flags  => "K",
2708         reg_req   => { },
2709         cmp_attr  => "return 1;",
2710         emit      => '. ffreep %X0',
2711         attr_type => "ia32_x87_attr_t",
2712         mode      => "mode_ANY",
2713         latency   => 1,
2714 },
2715
2716 emms => {
2717         op_flags  => "K",
2718         reg_req   => { },
2719         cmp_attr  => "return 1;",
2720         emit      => '. emms',
2721         attr_type => "ia32_x87_attr_t",
2722         mode      => "mode_ANY",
2723         latency   => 3,
2724 },
2725
2726 femms => {
2727         op_flags  => "K",
2728         reg_req   => { },
2729         cmp_attr  => "return 1;",
2730         emit      => '. femms',
2731         attr_type => "ia32_x87_attr_t",
2732         mode      => "mode_ANY",
2733         latency   => 3,
2734 },
2735
2736 # compare
2737
2738 FucomFnstsw => {
2739         reg_req   => { },
2740         emit      => ". fucom %X1\n".
2741                      ". fnstsw %%ax",
2742         attr_type => "ia32_x87_attr_t",
2743         latency   => 2,
2744 },
2745
2746 FucompFnstsw => {
2747         reg_req   => { },
2748         emit      => ". fucomp %X1\n".
2749                      ". fnstsw %%ax",
2750         attr_type => "ia32_x87_attr_t",
2751         latency   => 2,
2752 },
2753
2754 FucomppFnstsw => {
2755         reg_req   => { },
2756         emit      => ". fucompp\n".
2757                      ". fnstsw %%ax",
2758         attr_type => "ia32_x87_attr_t",
2759         latency   => 2,
2760 },
2761
2762 Fucomi => {
2763         reg_req   => { },
2764         emit      => '. fucomi %X1',
2765         attr_type => "ia32_x87_attr_t",
2766         latency   => 1,
2767 },
2768
2769 Fucompi => {
2770         reg_req   => { },
2771         emit      => '. fucompi %X1',
2772         attr_type => "ia32_x87_attr_t",
2773         latency   => 1,
2774 },
2775
2776 FtstFnstsw => {
2777         reg_req   => { },
2778         emit      => ". ftst\n".
2779                      ". fnstsw %%ax",
2780         attr_type => "ia32_x87_attr_t",
2781         latency   => 2,
2782 },
2783
2784
2785 # -------------------------------------------------------------------------------- #
2786 #  ____ ____  _____                  _                               _             #
2787 # / ___/ ___|| ____| __   _____  ___| |_ ___  _ __   _ __   ___   __| | ___  ___   #
2788 # \___ \___ \|  _|   \ \ / / _ \/ __| __/ _ \| '__| | '_ \ / _ \ / _` |/ _ \/ __|  #
2789 #  ___) |__) | |___   \ V /  __/ (__| || (_) | |    | | | | (_) | (_| |  __/\__ \  #
2790 # |____/____/|_____|   \_/ \___|\___|\__\___/|_|    |_| |_|\___/ \__,_|\___||___/  #
2791 #                                                                                  #
2792 # -------------------------------------------------------------------------------- #
2793
2794
2795 # Spilling and reloading of SSE registers, hardcoded, not generated #
2796
2797 xxLoad => {
2798         op_flags  => "L|F",
2799         state     => "exc_pinned",
2800         reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
2801         emit      => '. movdqu %D0, %AM',
2802         outs      => [ "res", "M" ],
2803         units     => [ "SSE" ],
2804         latency   => 1,
2805 },
2806
2807 xxStore => {
2808         op_flags => "L|F",
2809         state    => "exc_pinned",
2810         reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
2811         ins      => [ "base", "index", "mem", "val" ],
2812         emit     => '. movdqu %binop',
2813         units    => [ "SSE" ],
2814         latency   => 1,
2815         mode     => "mode_M",
2816 },
2817
2818 ); # end of %nodes
2819
2820 # Include the generated SIMD node specification written by the SIMD optimization
2821 $my_script_name = dirname($myname) . "/../ia32/ia32_simd_spec.pl";
2822 unless ($return = do $my_script_name) {
2823         warn "couldn't parse $my_script_name: $@" if $@;
2824         warn "couldn't do $my_script_name: $!"    unless defined $return;
2825         warn "couldn't run $my_script_name"       unless $return;
2826 }
2827
2828 # Transform some attributes
2829 foreach my $op (keys(%nodes)) {
2830         my $node         = $nodes{$op};
2831         my $op_attr_init = $node->{op_attr_init};
2832
2833         if(defined($op_attr_init)) {
2834                 $op_attr_init .= "\n\t";
2835         } else {
2836                 $op_attr_init = "";
2837         }
2838
2839         if(!defined($node->{latency})) {
2840                 if($op =~ m/^l_/) {
2841                         $node->{latency} = 0;
2842                 } else {
2843                         die("Latency missing for op $op");
2844                 }
2845         }
2846         $op_attr_init .= "attr->latency = ".$node->{latency} . ";";
2847
2848         $node->{op_attr_init} = $op_attr_init;
2849 }
2850
2851 print "";