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