Remove ia32_Sub64Bit. Replace it by Sub and Sbb.
[libfirm] / ir / be / ia32 / ia32_spec.pl
index 353e617..dc0c49d 100644 (file)
@@ -2,8 +2,12 @@
 # $Id$
 # This is the specification for the ia32 assembler Firm-operations
 
-# the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
+use File::Basename;
+
+$new_emit_syntax = 1;
+my $myname = $0;
 
+# the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
 $arch = "ia32";
 
 # The node description is done as a perl hash initializer with the
@@ -12,18 +16,24 @@ $arch = "ia32";
 # %nodes = (
 #
 # <op-name> => {
-#   "op_flags"  => "N|L|C|X|I|F|Y|H|c|K",
-#   "irn_flags" => "R|N|I"
-#   "arity"     => "0|1|2|3 ... |variable|dynamic|any",
-#   "state"     => "floats|pinned|mem_pinned|exc_pinned",
-#   "args"      => [
-#                    { "type" => "type 1", "name" => "name 1" },
-#                    { "type" => "type 2", "name" => "name 2" },
+#   op_flags  => "N|L|C|X|I|F|Y|H|c|K",
+#   irn_flags => "R|N|I|S"
+#   arity     => "0|1|2|3 ... |variable|dynamic|any",
+#   state     => "floats|pinned|mem_pinned|exc_pinned",
+#   args      => [
+#                    { type => "type 1", name => "name 1" },
+#                    { type => "type 2", name => "name 2" },
 #                    ...
 #                  ],
-#   "comment"   => "any comment for constructor",
-#   "emit"      => "emit code with templates",
-#   "rd_constructor" => "c source code which constructs an ir_node"
+#   comment   => "any comment for constructor",
+#   reg_req   => { in => [ "reg_class|register" ], out => [ "reg_class|register|in_rX" ] },
+#   cmp_attr  => "c source code for comparing node attributes",
+#   emit      => "emit code with templates",
+#   attr      => "attitional attribute arguments for constructor"
+#   init_attr => "emit attribute initialization template"
+#   rd_constructor => "c source code which constructs an ir_node"
+#   latency   => "latency of this operation (can be float)"
+#   attr_type => "name of the attribute struct",
 # },
 #
 # ... # (all nodes you need to describe)
@@ -48,6 +58,7 @@ $arch = "ia32";
 #   R   rematerializeable
 #   N   not spillable
 #   I   ignore for register allocation
+#   S   modifies stack pointer
 #
 # state: state of the operation, OPTIONAL (default is "floats")
 #
@@ -60,6 +71,13 @@ $arch = "ia32";
 #        for i = 1 .. arity: ir_node *op_i
 #        ir_mode *mode
 #
+# outs:  if a node defines more than one output, the names of the projections
+#        nodes having outs having automatically the mode mode_T
+#        One can also annotate some flags for each out, additional to irn_flags.
+#        They are separated from name with a colon ':', and concatenated by pipe '|'
+#        Only I and S are available at the moment (same meaning as in irn_flags).
+#        example: [ "frame:I", "stack:I|S", "M" ]
+#
 # comment: OPTIONAL comment for the node constructor
 #
 # rd_constructor: for every operation there will be a
@@ -77,40 +95,149 @@ $arch = "ia32";
 #      return res
 #
 # NOTE: rd_constructor and args are only optional if and only if arity is 0,1,2 or 3
+#
+# latency: the latency of the operation, default is 1
+#
 
 # register types:
 #   0 - no special type
 #   1 - caller save (register must be saved by the caller of a function)
 #   2 - callee save (register must be saved by the called function)
 #   4 - ignore (do not assign this register)
+#   8 - emitter can choose an arbitrary register of this class
+#  16 - the register is a virtual one
+#  32 - register represents a state
 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
 %reg_classes = (
-  "gp" => [
-            { "name" => "eax", "type" => 1 },
-            { "name" => "edx", "type" => 1 },
-            { "name" => "ebx", "type" => 2 },
-            { "name" => "ecx", "type" => 1 },
-            { "name" => "esi", "type" => 2 },
-            { "name" => "edi", "type" => 2 },
-            { "name" => "ebp", "type" => 2 },
-            { "name" => "esp", "type" => 6 },
-            { "name" => "xxx", "type" => 6 },  # we need a dummy register for NoReg and Unknown nodes
-                       { "mode" => "mode_P" }
-          ],
-  "fp" => [
-            { "name" => "xmm0", "type" => 1 },
-            { "name" => "xmm1", "type" => 1 },
-            { "name" => "xmm2", "type" => 1 },
-            { "name" => "xmm3", "type" => 1 },
-            { "name" => "xmm4", "type" => 1 },
-            { "name" => "xmm5", "type" => 1 },
-            { "name" => "xmm6", "type" => 1 },
-            { "name" => "xmm7", "type" => 1 },
-            { "name" => "xxxx", "type" => 6 },  # we need a dummy register for NoReg and Unknown nodes
-                       { "mode" => "mode_D" }
-          ]
+       gp => [
+               { name => "edx", type => 1 },
+               { name => "ecx", type => 1 },
+               { name => "eax", type => 1 },
+               { name => "ebx", type => 2 },
+               { name => "esi", type => 2 },
+               { name => "edi", type => 2 },
+               { name => "ebp", type => 2 },
+               { name => "esp", type => 4 },
+               { name => "gp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
+               { name => "gp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
+               { mode => "mode_Iu" }
+       ],
+       mmx => [
+               { name => "mm0", type => 4 },
+               { name => "mm1", type => 4 },
+               { name => "mm2", type => 4 },
+               { name => "mm3", type => 4 },
+               { name => "mm4", type => 4 },
+               { name => "mm5", type => 4 },
+               { name => "mm6", type => 4 },
+               { name => "mm7", type => 4 },
+               { mode => "mode_E", flags => "manual_ra" }
+       ],
+       xmm => [
+               { name => "xmm0", type => 1 },
+               { name => "xmm1", type => 1 },
+               { name => "xmm2", type => 1 },
+               { name => "xmm3", type => 1 },
+               { name => "xmm4", type => 1 },
+               { name => "xmm5", type => 1 },
+               { name => "xmm6", type => 1 },
+               { name => "xmm7", type => 1 },
+               { name => "xmm_NOREG", type => 4 | 16 },     # we need a dummy register for NoReg nodes
+               { name => "xmm_UKNWN", type => 4 | 8 | 16},  # we need a dummy register for Unknown nodes
+               { mode => "mode_E" }
+       ],
+       vfp => [
+               { name => "vf0", type => 1 | 16 },
+               { name => "vf1", type => 1 | 16 },
+               { name => "vf2", type => 1 | 16 },
+               { name => "vf3", type => 1 | 16 },
+               { name => "vf4", type => 1 | 16 },
+               { name => "vf5", type => 1 | 16 },
+               { name => "vf6", type => 1 | 16 },
+               { name => "vf7", type => 1 | 16 },
+               { name => "vfp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
+               { name => "vfp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
+               { mode => "mode_E" }
+       ],
+       st => [
+               { name => "st0", realname => "st",    type => 4 },
+               { name => "st1", realname => "st(1)", type => 4 },
+               { name => "st2", realname => "st(2)", type => 4 },
+               { name => "st3", realname => "st(3)", type => 4 },
+               { name => "st4", realname => "st(4)", type => 4 },
+               { name => "st5", realname => "st(5)", type => 4 },
+               { name => "st6", realname => "st(6)", type => 4 },
+               { name => "st7", realname => "st(7)", type => 4 },
+               { mode => "mode_E", flags => "manual_ra" }
+       ],
+       fp_cw => [      # the floating point control word
+               { name => "fpcw", type => 4|32 },
+               { mode => "mode_fpcw", flags => "manual_ra|state" }
+       ],
+       flags => [
+               { name => "eflags", type => 0 },
+               { mode => "mode_Iu", flags => "manual_ra" }
+       ],
 ); # %reg_classes
 
+%cpu = (
+       GP     => [ 1, "GP_EAX", "GP_EBX", "GP_ECX", "GP_EDX", "GP_ESI", "GP_EDI", "GP_EBP" ],
+       SSE    => [ 1, "SSE_XMM0", "SSE_XMM1", "SSE_XMM2", "SSE_XMM3", "SSE_XMM4", "SSE_XMM5", "SSE_XMM6", "SSE_XMM7" ],
+       VFP    => [ 1, "VFP_VF0", "VFP_VF1", "VFP_VF2", "VFP_VF3", "VFP_VF4", "VFP_VF5", "VFP_VF6", "VFP_VF7" ],
+       BRANCH => [ 1, "BRANCH1", "BRANCH2" ],
+); # %cpu
+
+%vliw = (
+       bundle_size       => 1,
+       bundels_per_cycle => 1
+); # vliw
+
+%emit_templates = (
+       S0 => "${arch}_emit_source_register(node, 0);",
+       S1 => "${arch}_emit_source_register(node, 1);",
+       S2 => "${arch}_emit_source_register(node, 2);",
+       S3 => "${arch}_emit_source_register(node, 3);",
+       S4 => "${arch}_emit_source_register(node, 4);",
+       S5 => "${arch}_emit_source_register(node, 5);",
+       SB1 => "${arch}_emit_8bit_source_register_or_immediate(node, 1);",
+       SB2 => "${arch}_emit_8bit_source_register_or_immediate(node, 2);",
+       SB3 => "${arch}_emit_8bit_source_register_or_immediate(node, 3);",
+       SI0 => "${arch}_emit_source_register_or_immediate(node, 0);",
+       SI1 => "${arch}_emit_source_register_or_immediate(node, 1);",
+       SI2 => "${arch}_emit_source_register_or_immediate(node, 2);",
+       SI3 => "${arch}_emit_source_register_or_immediate(node, 3);",
+       D0 => "${arch}_emit_dest_register(node, 0);",
+       D1 => "${arch}_emit_dest_register(node, 1);",
+       D2 => "${arch}_emit_dest_register(node, 2);",
+       D3 => "${arch}_emit_dest_register(node, 3);",
+       D4 => "${arch}_emit_dest_register(node, 4);",
+       D5 => "${arch}_emit_dest_register(node, 5);",
+       DB0 => "${arch}_emit_8bit_dest_register(node, 0);",
+       X0 => "${arch}_emit_x87_register(node, 0);",
+       X1 => "${arch}_emit_x87_register(node, 1);",
+       X2 => "${arch}_emit_x87_register(node, 2);",
+       SE => "${arch}_emit_extend_suffix(get_ia32_ls_mode(node));",
+       ME => "if(get_mode_size_bits(get_ia32_ls_mode(node)) != 32)\n
+                  ia32_emit_mode_suffix(node);",
+       M  => "${arch}_emit_mode_suffix(node);",
+       XM => "${arch}_emit_x87_mode_suffix(node);",
+       XXM => "${arch}_emit_xmm_mode_suffix(node);",
+       XSD => "${arch}_emit_xmm_mode_suffix_s(node);",
+       AM => "${arch}_emit_am(node);",
+       unop0 => "${arch}_emit_unop(node, 0);",
+       unop1 => "${arch}_emit_unop(node, 1);",
+       unop2 => "${arch}_emit_unop(node, 2);",
+       unop3 => "${arch}_emit_unop(node, 3);",
+       unop4 => "${arch}_emit_unop(node, 4);",
+       unop5 => "${arch}_emit_unop(node, 5);",
+       DAM0  => "${arch}_emit_am_or_dest_register(node, 0);",
+       DAM1  => "${arch}_emit_am_or_dest_register(node, 1);",
+       binop => "${arch}_emit_binop(node, 1);",
+       binop_nores => "${arch}_emit_binop(node, 0);",
+       x87_binop => "${arch}_emit_x87_binop(node);",
+       CMP0  => "${arch}_emit_cmp_suffix_node(node, 0);",
+);
+
 #--------------------------------------------------#
 #                        _                         #
 #                       (_)                        #
@@ -122,8 +249,106 @@ $arch = "ia32";
 #                                      |_|         #
 #--------------------------------------------------#
 
+$default_attr_type = "ia32_attr_t";
+$default_copy_attr = "ia32_copy_attr";
+
+sub ia32_custom_init_attr {
+       my $node = shift;
+       my $name = shift;
+       my $res = "";
+       if(defined($node->{modified_flags})) {
+               $res .= "\tset_ia32_flags(res, get_ia32_flags(res) | arch_irn_flags_modify_flags);\n";
+       }
+       if(defined($node->{am})) {
+               my $am = $node->{am};
+               if($am eq "full,binary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Full, ia32_am_binary);";
+               } elsif($am eq "full,unary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Full, ia32_am_unary);";
+               } elsif($am eq "source,binary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Source, ia32_am_binary);";
+               } elsif($am eq "dest,unary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);";
+               } elsif($am eq "dest,binary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);";
+               } elsif($am eq "dest,ternary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Dest, ia32_am_ternary);";
+               } elsif($am eq "source,ternary") {
+                       $res .= "\tset_ia32_am_support(res, ia32_am_Source, ia32_am_ternary);";
+               } elsif($am eq "none") {
+                       # nothing to do
+               } else {
+                       die("Invalid address mode '$am' specified on op $name");
+               }
+       }
+       return $res;
+}
+$custom_init_attr_func = \&ia32_custom_init_attr;
+
+%init_attr = (
+       ia32_attr_t     => "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);",
+       ia32_x87_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_x87_attributes(res);",
+       ia32_asm_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_x87_attributes(res);".
+               "\tinit_ia32_asm_attributes(res);",
+       ia32_immediate_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_immediate_attributes(res, symconst, symconst_sign, offset);"
+);
+
+%compare_attr = (
+       ia32_attr_t           => "ia32_compare_nodes_attr",
+       ia32_x87_attr_t       => "ia32_compare_x87_attr",
+       ia32_asm_attr_t       => "ia32_compare_asm_attr",
+       ia32_immediate_attr_t => "ia32_compare_immediate_attr",
+);
+
+%operands = (
+);
+
+$mode_xmm     = "mode_E";
+$mode_gp      = "mode_Iu";
+$mode_flags   = "mode_Iu";
+$mode_fpcw    = "mode_fpcw";
+$status_flags = [ "CF", "PF", "AF", "ZF", "SF", "OF" ];
+$fpcw_flags   = [ "FP_IM", "FP_DM", "FP_ZM", "FP_OM", "FP_UM", "FP_PM",
+                  "FP_PC0", "FP_PC1", "FP_RC0", "FP_RC1", "FP_X" ];
+
 %nodes = (
 
+Immediate => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_NOREG" ] },
+       attr      => "ir_entity *symconst, int symconst_sign, long offset",
+       attr_type => "ia32_immediate_attr_t",
+       latency   => 0,
+       mode      => $mode_gp,
+},
+
+Asm => {
+       mode      => "mode_T",
+       arity     => "variable",
+       out_arity => "variable",
+       attr_type => "ia32_asm_attr_t",
+       latency   => 100,
+},
+
+ProduceVal => {
+       op_flags  => "c",
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       emit      => "",
+       units     => [ ],
+       latency   => 0,
+       mode      => $mode_gp,
+       cmp_attr  => "return 1;",
+},
+
 #-----------------------------------------------------------------#
 #  _       _                                         _            #
 # (_)     | |                                       | |           #
@@ -137,478 +362,1883 @@ $arch = "ia32";
 
 # commutative operations
 
-# NOTE:
-# All nodes supporting Addressmode have 5 INs:
-# 1 - base    r1 == NoReg in case of no AM or no base
-# 2 - index   r2 == NoReg in case of no AM or no index
-# 3 - op1     r3 == always present
-# 4 - op2     r4 == NoReg in case of immediate operation
-# 5 - mem     NoMem in case of no AM otherwise it takes the mem from the Load
-
-"Add" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Add: Add(a, b) = Add(b, a) = a + b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. add %ia32_emit_binop\t\t\t/* Add(%A1, %A2) -> %D1 */'
-},
-
-"Mul" => {
-  "irn_flags" => "A",
-  "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. imul %ia32_emit_binop\t\t\t/* Mul(%A1, %A2) -> %D1 */'
-},
-
-# Mulh is an exception from the 4 INs with AM because the target is always EAX:EDX
-"Mulh" => {
-  "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax in_r1", "edx in_r2" ] },
-  "emit"      => '. imul %ia32_emit_unop\t\t\t/* Mulh(%A1, %A2) -> %D1 */ '
-},
-
-"And" => {
-  "irn_flags" => "R",
-  "comment"   => "construct And: And(a, b) = And(b, a) = a AND b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. and %ia32_emit_binop\t\t\t/* And(%A1, %A2) -> %D1 */'
-},
-
-"Or" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. or %ia32_emit_binop\t\t\t/* Or(%A1, %A2) -> %D1 */'
-},
-
-"Eor" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. xor %ia32_emit_binop\t\t\t/* Xor(%A1, %A2) -> %D1 */'
-},
-
-"Max" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Max: Max(a, b) = Max(b, a) = a > b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
-  "emit"      =>
-'2. cmp %S1, %S2\t\t\t/* prepare Max (%S1 - %S2), (%A1, %A2) */
-  if (mode_is_signed(get_irn_mode(n))) {
-4.  cmovl %D1, %S2\t\t\t/* %S1 is less %S2 */
-  }
-  else {
-4.  cmovb %D1, %S2\t\t\t/* %S1 is below %S2 */
-  }
-'
-},
-
-"Min" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Min: Min(a, b) = Min(b, a) = a < b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
-  "emit"      =>
-'2. cmp %S1, %S2\t\t\t/* prepare Min (%S1 - %S2), (%A1, %A2) */
-  if (mode_is_signed(get_irn_mode(n))) {
-2.  cmovg %D1, %S2\t\t\t/* %S1 is greater %S2 */
-  }
-  else {
-2.  cmova %D1, %S2, %D1\t\t\t/* %S1 is above %S2 */
-  }
-'
+Add => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5", "none", "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. add%M %binop',
+       am        => "full,binary",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+AddMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => ". add%M %SI3, %AM",
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+AddMem8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => ". add%M %SB3, %AM",
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Adc => {
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "eflags" ],
+       emit      => '. adc%M %binop',
+       am        => "full,binary",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_Add => {
+       op_flags  => "C",
+       reg_req   => { in => [ "none", "none" ], out => [ "none" ] },
+       ins       => [ "left", "right" ],
+},
+
+l_Adc => {
+       reg_req   => { in => [ "none", "none", "none" ], out => [ "none" ] },
+       ins       => [ "left", "right", "eflags" ],
+},
+
+Mul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "val_high", "val_low" ],
+       emit      => '. mul%M %unop4',
+       outs      => [ "EAX", "EDX", "M" ],
+       am        => "source,binary",
+       latency   => 10,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_Mul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       outs      => [ "EAX", "EDX", "M" ],
+       arity     => 2
+},
+
+IMul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. imul%M %binop',
+       am        => "source,binary",
+       latency   => 5,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+IMul1OP => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "val_high", "val_low" ],
+       emit      => '. imul%M %unop4',
+       outs      => [ "EAX", "EDX", "M" ],
+       am        => "source,binary",
+       latency   => 5,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_IMul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       outs      => [ "EAX", "EDX", "M" ],
+       arity     => 2
+},
+
+And => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       am        => "full,binary",
+       emit      => '. and%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+AndMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. and%M %SI3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+AndMem8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none",  "eax ebx ecx edx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. and%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Or => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       am        => "full,binary",
+       emit      => '. or%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+OrMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. or%M %SI3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+OrMem8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. or%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Xor => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       am        => "full,binary",
+       emit      => '. xor%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+XorMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. xor%M %SI3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+XorMem8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. xor%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
 },
 
 # not commutative operations
 
-"Sub" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Sub: Sub(a, b) = a - b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. sub %ia32_emit_binop\t\t\t/* Sub(%A1, %A2) -> %D1 */'
+Sub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4", "none", "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       am        => "full,binary",
+       emit      => '. sub%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+SubMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. sub%M %SI3, %AM',
+       units     => [ "GP" ],
+       mode      => 'mode_M',
+       modified_flags => $status_flags
+},
+
+SubMem8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. sub%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => 'mode_M',
+       modified_flags => $status_flags
+},
+
+Sbb => {
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ], out => [ "in_r4 !in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "eflags" ],
+       am        => "full,binary",
+       emit      => '. sbb%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_Sub => {
+       reg_req   => { in => [ "none", "none" ], out => [ "none" ] },
+       ins       => [ "left", "right" ],
+},
+
+l_Sbb => {
+       reg_req   => { in => [ "none", "none", "none" ], out => [ "none" ] },
+       ins       => [ "left", "right", "eflags" ],
+},
+
+IDiv => {
+       op_flags  => "F|L",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ], out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "left_low", "left_high", "right" ],
+       outs      => [ "div_res", "mod_res", "M" ],
+       attr      => "ia32_op_flavour_t dm_flav",
+       am        => "source,ternary",
+       init_attr => "attr->data.op_flav = dm_flav;",
+       emit      => ". idiv%M %unop5",
+       latency   => 25,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+Div => {
+       op_flags  => "F|L",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ], out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "left_low", "left_high", "right" ],
+       outs      => [ "div_res", "mod_res", "M" ],
+       attr      => "ia32_op_flavour_t dm_flav",
+       am        => "source,ternary",
+       init_attr => "attr->data.op_flav = dm_flav;",
+       emit      => ". div%M %unop5",
+       latency   => 25,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+Shl => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "left", "right" ],
+       am        => "dest,binary",
+       emit      => '. shl %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+ShlMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "count" ],
+       emit      => '. shl%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_ShlDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
+},
+
+ShlD => {
+       # FIXME: WHY? the right requirement is in_r3 !in_r5, especially this is the same as in Shl
+       #
+       # Out requirements is: different from all in
+       # This is because, out must be different from LowPart and ShiftCount.
+       # We could say "!ecx !in_r4" but it can occur, that all values live through
+       # this Shift and the only value dying is the ShiftCount. Then there would be a
+       # register missing, as result must not be ecx and all other registers are
+       # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
+       # (and probably never will). So we create artificial interferences of the result
+       # with all inputs, so the spiller can always assure a free register.
+       # reg_req   => { in => [ "gp", "gp", "gp", "gp", "ecx", "none" ], out => [ "!in" ] },
+
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "in_r1 !in_r3" ] },
+       ins       => [ "left_high", "left_low", "right" ],
+       am        => "dest,ternary",
+       emit      => '. shld%M %SB2, %S1, %S0',
+       latency   => 6,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_ShlD => {
+       cmp_attr  => "return 1;",
+       arity     => 3,
+},
+
+Shr => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       am        => "dest,binary",
+       emit      => '. shr %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+ShrMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "count" ],
+       emit      => '. shr%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_ShrDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
+},
+
+ShrD => {
+       # FIXME: WHY? the right requirement is in_r3 !in_r5, especially this is the same as in Shr
+       #
+       # Out requirements is: different from all in
+       # This is because, out must be different from LowPart and ShiftCount.
+       # We could say "!ecx !in_r4" but it can occur, that all values live through
+       # this Shift and the only value dying is the ShiftCount. Then there would be a
+       # register missing, as result must not be ecx and all other registers are
+       # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
+       # (and probably never will). So we create artificial interferences of the result
+       # with all inputs, so the spiller can always assure a free register.
+       # reg_req   => { in => [ "gp", "gp", "gp", "gp", "ecx", "none" ], out => [ "!in" ] },
+
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "in_r1 !in_r3" ] },
+       ins       => [ "left_high", "left_low", "right" ],
+       am        => "dest,ternary",
+       emit      => '. shrd%M %SB2, %S1, %S0',
+       latency   => 6,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_ShrD => {
+       cmp_attr  => "return 1;",
+       arity     => 3
+},
+
+Sar => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       am        => "dest,binary",
+       emit      => '. sar %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
 },
 
-"DivMod" => {
-  "op_flags" => "F|L",
-  "state"    => "exc_pinned",
-  "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "eax in_r1", "edx in_r3" ] },
-  "emit"     =>
-'  if (mode_is_signed(get_irn_mode(n))) {
-4.  idiv %S2\t\t\t/* signed DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
-  }
-  else {
-4.  div %S2\t\t\t/* unsigned DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
-  }
-'
+SarMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "count" ],
+       emit      => '. sar%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
 },
 
-"Shl" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shl: Shl(a, b) = a << b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. shl %ia32_emit_binop\t\t\t/* Shl(%A1, %A2) -> %D1 */'
+l_Sar => {
+       cmp_attr  => "return 1;",
+       # value, cnt
+       arity     => 2
 },
 
-"Shr" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shr: Shr(a, b) = a >> b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. shr %ia32_emit_binop\t\t\t/* Shr(%A1, %A2) -> %D1 */'
+l_SarDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
 },
 
-"Shrs" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shrs: Shrs(a, b) = a >> b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. sar %ia32_emit_binop\t\t\t/* Shrs(%A1, %A2) -> %D1 */'
+Ror => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       am        => "dest,binary",
+       emit      => '. ror %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
 },
 
-"RotR" => {
-  "irn_flags" => "R",
-  "comment"     => "construct RotR: RotR(a, b) = a ROTR b",
-  "reg_req"     => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r1" ] },
-  "emit"        => '. ror %ia32_emit_binop\t\t\t/* RotR(%A1, %A2) -> %D1 */'
+RorMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "count" ],
+       emit      => '. ror%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
 },
 
-"RotL" => {
-  "irn_flags" => "R",
-  "comment"   => "construct RotL: RotL(a, b) = a ROTL b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. rol %ia32_emit_binop\t\t\t/* RotL(%A1, %A2) -> %D1 */'
+Rol => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       am        => "dest,binary",
+       emit      => '. rol %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+RolMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "ecx" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "count" ],
+       emit      => '. rol%M %SB3, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
 },
 
 # unary operations
 
-"Minus" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Minus: Minus(a) = -a",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. neg %ia32_emit_unop\t\t\t/* Neg(%A1) -> %D1, (%A1) */'
+Neg => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       emit      => '. neg %S0',
+       ins       => [ "val" ],
+       am        => "dest,unary",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+NegMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. neg%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Minus64Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "gp" ] },
+       outs      => [ "low_res", "high_res" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+
+l_Neg => {
+       cmp_attr  => "return 1;",
+       arity     => 1,
+},
+
+Inc => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       am        => "dest,unary",
+       emit      => '. inc %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
-"Inc" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Increment: Inc(a) = a++",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. inc %ia32_emit_unop\t\t\t/* Inc(%S1) -> %D1, (%A1) */'
+IncMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. inc%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
-"Dec" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Decrement: Dec(a) = a--",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. dec %ia32_emit_unop\t\t\t/* Dec(%S1) -> %D1, (%A1) */'
+Dec => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       am        => "dest,unary",
+       emit      => '. dec %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
-"Not" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Not: Not(a) = !a",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. not %ia32_emit_unop\t\t\t/* Not(%S1) -> %D1, (%A1) */'
+DecMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. dec%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+},
+
+Not => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       ins       => [ "val" ],
+       am        => "dest,unary",
+       emit      => '. not %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+NotMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. not%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
 },
 
 # other operations
 
-"Conv" => {
-  "reg_req"  => { "in" => [ "gp" ], "out" => [ "in_r1" ] },
-  "comment"  => "construct Conv: Conv(a) = (conv)a"
-},
-
-"CondJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump: CMP A, B && JMPxx LABEL",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "none", "none" ] },
-},
-
-"SwitchJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct switch",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "none" ] },
-},
-
-"Const" => {
-  "op_flags"  => "c",
-  "irn_flags" => "R",
-  "comment"   => "represents an integer constant",
-  "reg_req"   => { "out" => [ "gp" ] },
-  "emit"      => '. mov %D1, %C\t\t\t/* Mov Const into register */',
-  "cmp_attr"  =>
-'
-  if (attr_a->tp == attr_b->tp) {
-    if (attr_a->tp == ia32_SymConst) {
-      if (attr_a->sc == NULL || attr_b->sc == NULL)
-        return 1;
-      else
-        return strcmp(attr_a->sc, attr_b->sc);
-    }
-    else {
-      if (attr_a->tv == NULL || attr_b->tv == NULL)
-        return 1;
-
-      if (tarval_cmp(attr_a->tv, attr_b->tv) == pn_Cmp_Eq)
-        return 0;
-      else
-        return 1;
-    }
-  }
-  else
-    return 1;
-'
-},
-
-"Cdq" => {
-  "irn_flags" => "R",
-  "comment"   => "construct CDQ: sign extend EAX -> EDX:EAX",
-  "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax in_r1", "edx" ] },
-  "emit"      => '. cdq\t\t\t/* sign extend EAX -> EDX:EAX, (%A1) */'
+Cmp => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ] , out => [ "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "eflags" ],
+       am        => "source,binary",
+       emit      => '. cmp%M %binop_nores',
+       attr      => "int flipped, int cmp_unsigned",
+       init_attr => "attr->data.cmp_flipped = flipped;\n".
+                    "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_flags,
+       modified_flags => $status_flags
+},
+
+Cmp8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx", "eax ebx ecx edx" ] , out => [ "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "eflags" ],
+       am        => "source,binary",
+       emit      => '. cmpb %binop_nores',
+       attr      => "int flipped, int cmp_unsigned",
+       init_attr => "attr->data.cmp_flipped = flipped;\n".
+                    "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_flags,
+       modified_flags => $status_flags
+},
+
+Test => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ] , out => [ "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "eflags" ],
+       am        => "source,binary",
+       emit      => '. test%M %binop_nores',
+       attr      => "int flipped, int cmp_unsigned",
+       init_attr => "attr->data.cmp_flipped = flipped;\n".
+                    "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_flags,
+       modified_flags => $status_flags
+},
+
+Test8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx", "eax ebx ecx edx" ] , out => [ "flags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "eflags" ],
+       am        => "source,binary",
+       emit      => '. testb %binop_nores',
+       attr      => "int flipped, int cmp_unsigned",
+       init_attr => "attr->data.cmp_flipped = flipped;\n".
+                    "\tattr->data.cmp_unsigned = cmp_unsigned;\n",
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_flags,
+       modified_flags => $status_flags
+},
+
+Set => {
+       #irn_flags => "R",
+       reg_req   => { in => [ "eflags" ], out => [ "eax ebx ecx edx" ] },
+       ins       => [ "eflags" ],
+       am        => "dest,unary",
+       attr      => "pn_Cmp pnc",
+       init_attr => "attr->pn_code = pnc;\nset_ia32_ls_mode(res, mode_Bu);\n",
+       emit      => '. set%CMP0 %DB0',
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+CMov => {
+       #irn_flags => "R",
+       # (note: leave the false,true order intact to make it compatible with other
+       #  ia32_binary ops)
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "eflags" ], out => [ "in_r4" ] },
+       ins       => [ "base", "index", "mem", "val_false", "val_true", "eflags" ],
+       am        => "source,binary",
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+Jcc => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in  => [ "eflags" ], out => [ "none", "none" ] },
+       ins       => [ "eflags" ],
+       outs      => [ "false", "true" ],
+       attr      => "pn_Cmp pnc",
+       init_attr => "attr->pn_code = pnc;",
+       latency   => 2,
+       units     => [ "BRANCH" ],
+},
+
+SwitchJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in => [ "gp" ], out => [ "none" ] },
+       latency   => 3,
+       units     => [ "BRANCH" ],
+       mode      => "mode_T",
+       modified_flags => $status_flags
+},
+
+IJmp => {
+       state     => "pinned",
+       op_flags  => "X",
+       reg_req   => { in => [ "gp" ] },
+       emit      => '. jmp *%S0',
+       units     => [ "BRANCH" ],
+       mode      => "mode_X",
+},
+
+Const => {
+       op_flags  => "c",
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       units     => [ "GP" ],
+       attr      => "ir_entity *symconst, int symconst_sign, long offset",
+       attr_type => "ia32_immediate_attr_t",
+       mode      => $mode_gp,
+# depends on the const and is set in ia32_transform
+# modified_flags => $status_flags
+},
+
+Unknown_GP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => $mode_gp
+},
+
+Unknown_VFP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "vfp_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+Unknown_XMM => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "xmm_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E"
+},
+
+NoReg_GP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => $mode_gp
+},
+
+NoReg_VFP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "vfp_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+NoReg_XMM => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "xmm_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E"
+},
+
+ChangeCW => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "fp_cw" ] },
+       mode      => $mode_fpcw,
+       latency   => 3,
+       units     => [ "GP" ],
+       modified_flags => $fpcw_flags
+},
+
+FldCW => {
+       op_flags  => "L|F",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "fp_cw" ] },
+       ins       => [ "base", "index", "mem" ],
+       latency   => 5,
+       emit      => ". fldcw %AM",
+       mode      => $mode_fpcw,
+       units     => [ "GP" ],
+       modified_flags => $fpcw_flags
+},
+
+FnstCW => {
+       op_flags  => "L|F",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "fp_cw" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "fpcw" ],
+       latency   => 5,
+       emit      => ". fnstcw %AM",
+       mode      => "mode_M",
+       units     => [ "GP" ],
+},
+
+Cltd => {
+       # we should not rematrialize this node. It has very strict constraints.
+       reg_req   => { in => [ "eax", "edx" ], out => [ "edx" ] },
+       ins       => [ "val", "globbered" ],
+       emit      => '. cltd',
+       mode      => $mode_gp,
+       units     => [ "GP" ],
 },
 
 # Load / Store
+#
+# Note that we add additional latency values depending on address mode, so a
+# lateny of 0 for load is correct
+
+Load => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "gp", "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "res", "M" ],
+       latency   => 0,
+       emit      => ". mov%SE%ME%.l %AM, %D0",
+       units     => [ "GP" ],
+},
 
-"Load" => {
-  "op_flags"  => "L|F",
-  "irn_flags" => "R",
-  "state"     => "exc_pinned",
-  "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
-  "emit"      => '. mov %D1, %ia32_emit_am\t\t\t/* Load((%A1)) -> %D1 */'
-},
-
-"Store" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
-  "emit"      => '. mov %ia32_emit_am, %S3\t\t\t/* Store(%A2) -> (%A1) */'
-},
-
-"Lea" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
-  "emit"      => '. lea %D1, %ia32_emit_am\t\t/* %D1 = %S1 + %S2 << %C + %O, (%A1, %A2) */'
-},
-
-"StackParam" => {
-  "arity"    => 1,
-  "remat"    => 1,
-  "comment"  => "constructs a Stack Parameter to retrieve a parameter from Stack",
-  "reg_req"  => { "in" => [ "none" ], "out" => [ "gp" ] },
-  "cmp_attr" =>
-'
-  return (attr_a->pn_code != attr_b->pn_code);
-'
-},
-
-"StackArg" => {
-  "arity"    => 2,
-  "comment"  => "constructs a Stack Argument to pass an argument on Stack",
-  "reg_req"  => { "in" => [ "none", "gp" ], "out" => [ "none" ] },
-  "cmp_attr" =>
-'
-  return (attr_a->pn_code != attr_b->pn_code);
-'
-},
-
-#--------------------------------------------------------#
-#    __ _             _                     _            #
-#   / _| |           | |                   | |           #
-#  | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
-#  |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
-#  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
-#  |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
-#--------------------------------------------------------#
+l_Load => {
+       op_flags  => "L|F",
+       cmp_attr  => "return 1;",
+       outs      => [ "res", "M" ],
+       arity     => 2,
+},
+
+l_Store => {
+       op_flags  => "L|F",
+       cmp_attr  => "return 1;",
+       state     => "exc_pinned",
+       arity     => 3,
+       mode      => "mode_M",
+},
+
+Store => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. mov%M %SI3, %AM',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => "mode_M",
+},
+
+Store8Bit => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => ["none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit      => '. mov%M %SB3, %AM',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => "mode_M",
+},
+
+Lea => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp" ], out => [ "gp" ] },
+       ins       => [ "base", "index" ],
+       emit      => '. leal %AM, %D0',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+# well this isn't true for Lea, but we often transform Lea back to Add, Inc
+# or Dec, so we set the flag
+       modified_flags => 1,
+},
+
+Push => {
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "esp" ], out => [ "esp", "none" ] },
+       ins       => [ "base", "index", "mem", "val", "stack" ],
+       emit      => '. push%M %unop3',
+       outs      => [ "stack:I|S", "M" ],
+       am        => "source,binary",
+       latency   => 2,
+       units     => [ "GP" ],
+},
+
+Pop => {
+       reg_req   => { in => [ "gp", "gp", "none", "esp" ], out => [ "esp", "gp", "none" ] },
+       emit      => '. pop%M %DAM1',
+       outs      => [ "stack:I|S", "res", "M" ],
+       ins       => [ "base", "index", "mem", "stack" ],
+       am        => "dest,unary",
+       latency   => 3, # Pop is more expensive than Push on Athlon
+       units     => [ "GP" ],
+},
+
+Enter => {
+       reg_req   => { in => [ "esp" ], out => [ "ebp", "esp", "none" ] },
+       emit      => '. enter',
+       outs      => [ "frame:I", "stack:I|S", "M" ],
+       latency   => 15,
+       units     => [ "GP" ],
+},
+
+Leave => {
+       reg_req   => { in => [ "esp", "ebp" ], out => [ "ebp", "esp" ] },
+       emit      => '. leave',
+       outs      => [ "frame:I", "stack:I|S" ],
+       latency   => 3,
+       units     => [ "GP" ],
+},
+
+AddSP => {
+       irn_flags => "I",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "in_r4", "none" ] },
+       ins       => [ "base", "index", "mem", "stack", "size" ],
+       am        => "source,binary",
+       emit      => '. addl %binop',
+       outs      => [ "stack:S", "M" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+SubSP => {
+#irn_flags => "I",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "in_r4", "gp", "none" ] },
+       ins       => [ "base", "index", "mem", "stack", "size" ],
+       am        => "source,binary",
+       emit      => ". subl %binop\n".
+                    ". movl %%esp, %D1",
+       outs      => [ "stack:I|S", "addr", "M" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+LdTls => {
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       units     => [ "GP" ],
+},
+
+# the int instruction
+int => {
+       reg_req   => { in => [ "gp" ], out => [ "none" ] },
+       mode      => "mode_M",
+       emit      => '. int %SI0',
+       units     => [ "GP" ],
+       cmp_attr  => "return 1;",
+},
+
+
+#-----------------------------------------------------------------------------#
+#   _____ _____ ______    __ _             _                     _            #
+#  / ____/ ____|  ____|  / _| |           | |                   | |           #
+# | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
+#  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
+#  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
+# |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
+#-----------------------------------------------------------------------------#
+
+xZero => {
+       irn_flags => "R",
+       reg_req   => { out => [ "xmm" ] },
+       emit      => '. xorp%XSD %D1, %D1',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
+},
 
 # commutative operations
 
-"fAdd" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. adds%M %ia32_emit_binop\t\t\t/* SSE Add(%A1, %A2) -> %D1 */'
+xAdd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. add%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fMul" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. muls%M %ia32_emit_binop\t\t\t/* SSE Mul(%A1, %A2) -> %D1 */'
+xMul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. mul%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fMax" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. maxs%M %ia32_emit_binop\t\t\t/* SSE Max(%A1, %A2) -> %D1 */'
+xMax => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. max%XXM %binop',
+       latency   => 2,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fMin" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Min: Min(a, b) = Min(b, a) = a < b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. mins%M %ia32_emit_binop\t\t\t/* SSE Min(%A1, %A2) -> %D1 */'
+xMin => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. min%XXM %binop',
+       latency   => 2,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fAnd" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE And: And(a, b) = a AND b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. andp%M %ia32_emit_binop\t\t\t/* SSE And(%A3, %A4) -> %D1 */'
+xAnd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. andp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fOr" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Or: Or(a, b) = a OR b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. orp%M %ia32_emit_binop\t\t\t/* SSE Or(%A3, %A4) -> %D1 */'
+xOr => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. orp%XSD %binop',
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fEor" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Eor: Eor(a, b) = a XOR b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. xorp%M %ia32_emit_binop\t\t\t/* SSE Xor(%A3, %A4) -> %D1 */'
+xXor => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. xorp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
 # not commutative operations
 
-"fSub" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Sub: Sub(a, b) = a - b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. subs%M %ia32_emit_binop\t\t\t/* SSE Sub(%A1, %A2) -> %D1 */'
+xAndNot => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. andnp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
+},
+
+xSub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       emit      => '. sub%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"fDiv" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Div: Div(a, b) = a / b",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r1" ] },
-  "emit"      => '. divs%M %ia32_emit_binop\t\t\t/* SSE Div(%A1, %A2) -> %D1 */'
+xDiv => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5", "none" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "res", "M" ],
+       emit      => '. div%XXM %binop',
+       latency   => 16,
+       units     => [ "SSE" ],
 },
 
 # other operations
 
-"fConv" => {
-  "reg_req"  => { "in" => [ "fp" ], "out" => [ "gp" ] },
-  "comment"  => "construct Conv: Conv(a) = (conv)a"
-},
-
-"fCondJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
-  "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "none", "none" ] },
-},
-
-"fConst" => {
-  "op_flags"  => "c",
-  "irn_flags" => "R",
-  "comment"   => "represents a SSE constant",
-  "reg_req"   => { "out" => [ "fp" ] },
-  "emit"      => '. mov%M %D1, %C\t\t\t/* Load fConst into register */',
-  "cmp_attr"  =>
-'
-  if (attr_a->tp == attr_b->tp) {
-    if (attr_a->tp == ia32_SymConst) {
-      if (attr_a->sc == NULL || attr_b->sc == NULL)
-        return 1;
-      else
-        return strcmp(attr_a->sc, attr_b->sc);
-    }
-    else {
-      if (attr_a->tv == NULL || attr_b->tv == NULL)
-        return 1;
-
-      if (tarval_cmp(attr_a->tv, attr_b->tv) == pn_Cmp_Eq)
-        return 0;
-      else
-        return 1;
-    }
-  }
-  else
-    return 1;
-'
+Ucomi => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "eflags" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "flags" ],
+       am        => "source,binary",
+       attr      => "int flipped",
+       init_attr => "attr->data.cmp_flipped = flipped;",
+       emit      => ' .ucomi%XXM %binop_nores',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => $mode_flags,
+       modified_flags => 1,
 },
 
 # Load / Store
 
-"fLoad" => {
-  "op_flags"  => "L|F",
-  "irn_flags" => "R",
-  "state"     => "exc_pinned",
-  "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "fp" ] },
-  "emit"      => '. movs%M %D1, %ia32_emit_am\t\t\t/* Load((%A1)) -> %D1 */'
-},
-
-"fStore" => {
-  "op_flags" => "L|F",
-  "state"    => "exc_pinned",
-  "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
-  "reg_req"  => { "in" => [ "gp", "gp", "fp", "none" ] },
-  "emit"     => '. movs%M %ia32_emit_am, %S3\t\t\t/* Store(%S3) -> (%A1) */'
-},
-
-"fStackParam" => {
-  "arity"    => 1,
-  "remat"    => 1,
-  "comment"  => "constructs a Stack Parameter to retrieve a SSE parameter from Stack",
-  "reg_req"  => { "in" => [ "none" ], "out" => [ "fp" ] },
-  "cmp_attr" =>
-'
-  return (attr_a->pn_code != attr_b->pn_code);
-'
-},
-
-"fStackArg" => {
-  "arity"    => 2,
-  "comment"  => "constructs a Stack Argument to pass an argument on Stack",
-  "reg_req"  => { "in" => [ "none", "fp" ], "out" => [ "none" ] },
-  "cmp_attr" =>
-'
-  return (attr_a->pn_code != attr_b->pn_code);
-'
-},
-
-# Call
-
-"Call" => {
-  "op_flags" => "L|F",
-  "state"    => "mem_pinned",
-  "arity"    => "variable",
-  "comment"  => "construct Call: Call(...)",
-  "args"     => [
-                  { "type" => "int",        "name" => "n" },
-                  { "type" => "ir_node **", "name" => "in" }
-                ],
-  "rd_constructor" =>
-"  if (!op_ia32_Call) assert(0);
-  return new_ir_node(db, irg, block, op_ia32_Call, mode_T, n, in);
-"
-},
-
-# Return
-
-"Return" => {
-  "op_flags" => "L|X",
-  "state"    => "pinned",
-  "arity"    => "variable",
-  "comment"  => "construct Return: Return(...)",
-  "args"     => [
-                  { "type" => "int",        "name" => "n" },
-                  { "type" => "ir_node **", "name" => "in" }
-                ],
-  "rd_constructor" =>
-"  if (!op_ia32_Return) assert(0);
-  return new_ir_node(db, irg, block, op_ia32_Return, mode_X, n, in);
-"
-},
-
-# M/Alloc
-
-"Alloca" => {
-  "op_flags" => "L|F",
-  "state"    => "pinned",
-  "arity"    => "2",
-  "comment"  => "construct Alloca: allocate memory on Stack",
-  "reg_req"  => { "in" => [ "gp" ], "out" => [ "gp" ] }
+xLoad => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. mov%XXM %AM, %D0',
+       attr      => "ir_mode *load_mode",
+       init_attr => "attr->ls_mode = load_mode;",
+       outs      => [ "res", "M" ],
+       latency   => 0,
+       units     => [ "SSE" ],
+},
+
+xStore => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       emit     => '. mov%XXM %S3, %AM',
+       latency  => 0,
+       units    => [ "SSE" ],
+       mode     => "mode_M",
+},
+
+xStoreSimple => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       emit     => '. mov%XXM %S3, %AM',
+       latency  => 0,
+       units    => [ "SSE" ],
+       mode     => "mode_M",
+},
+
+CvtSI2SS => {
+       op_flags => "L|F",
+       reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       emit     => '. cvtsi2ss %D0, %AM',
+       latency  => 2,
+       units    => [ "SSE" ],
+       mode     => $mode_xmm
+},
+
+CvtSI2SD => {
+       op_flags => "L|F",
+       reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       emit     => '. cvtsi2sd %unop3',
+       latency  => 2,
+       units    => [ "SSE" ],
+       mode     => $mode_xmm
+},
+
+
+l_X87toSSE => {
+       op_flags => "L|F",
+       cmp_attr => "return 1;",
+       arity    => 3,
+},
+
+l_SSEtoX87 => {
+       op_flags => "L|F",
+       cmp_attr => "return 1;",
+       arity    => 3,
+},
+
+# CopyB
+
+CopyB => {
+       op_flags => "F|H",
+       state    => "pinned",
+       reg_req  => { in => [ "edi", "esi", "ecx", "none" ], out => [ "edi", "esi", "ecx", "none" ] },
+       outs     => [ "DST", "SRC", "CNT", "M" ],
+       units    => [ "GP" ],
+# we don't care about this flag, so no need to mark this node
+#      modified_flags => [ "DF" ]
+},
+
+CopyB_i => {
+       op_flags => "F|H",
+       state    => "pinned",
+       reg_req  => { in => [ "edi", "esi", "none" ], out => [  "edi", "esi", "none" ] },
+       outs     => [ "DST", "SRC", "M" ],
+       units    => [ "GP" ],
+# we don't care about this flag, so no need to mark this node
+#      modified_flags => [ "DF" ]
+},
+
+# Conversions
+
+Conv_I2I => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "gp", "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       units     => [ "GP" ],
+       attr      => "ir_mode *smaller_mode",
+       init_attr => "attr->ls_mode = smaller_mode;",
+       mode      => $mode_gp,
+},
+
+Conv_I2I8Bit => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "gp", "none" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       units     => [ "GP" ],
+       attr      => "ir_mode *smaller_mode",
+       init_attr => "attr->ls_mode = smaller_mode;",
+       mode      => $mode_gp,
+},
+
+Conv_I2FP => {
+       reg_req  => { in => [ "gp", "gp", "none", "gp" ], out => [ "xmm", "none" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       latency  => 10,
+       units    => [ "SSE" ],
+       mode     => "mode_E",
+},
+
+Conv_FP2I => {
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ], out => [ "gp", "none" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       latency  => 10,
+       units    => [ "SSE" ],
+       mode     => $mode_gp,
+},
+
+Conv_FP2FP => {
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ], out => [ "xmm", "none" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       latency  => 8,
+       units    => [ "SSE" ],
+       mode     => "mode_E",
+},
+
+#----------------------------------------------------------#
+#        _      _               _    __ _             _    #
+#       (_)    | |             | |  / _| |           | |   #
+# __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
+# \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
+#  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
+#   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
+#                 | |                                      #
+#  _ __   ___   __| | ___  ___                             #
+# | '_ \ / _ \ / _` |/ _ \/ __|                            #
+# | | | | (_) | (_| |  __/\__ \                            #
+# |_| |_|\___/ \__,_|\___||___/                            #
+#----------------------------------------------------------#
+
+vfadd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfmul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfmul => {
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+vfsub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfsub => {
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+vfdiv => {
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp", "none" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       outs      => [ "res", "M" ],
+       latency   => 20,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfdiv => {
+       cmp_attr  => "return 1;",
+       outs      => [ "res", "M" ],
+       arity     => 2,
+},
+
+vfprem => {
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       latency   => 20,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfprem => {
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+vfabs => {
+       irn_flags => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       ins       => [ "value" ],
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfchs => {
+       irn_flags => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       ins       => [ "value" ],
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+# virtual Load and Store
+
+vfld => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "res", "M" ],
+       attr      => "ir_mode *load_mode",
+       init_attr => "attr->attr.ls_mode = load_mode;",
+       latency   => 2,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfst => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp" ] },
+       ins       => [ "base", "index", "mem", "val" ],
+       attr      => "ir_mode *store_mode",
+       init_attr => "attr->attr.ls_mode = store_mode;",
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+# Conversions
+
+vfild => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
+       outs      => [ "res", "M" ],
+       ins       => [ "base", "index", "mem" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfild => {
+       cmp_attr  => "return 1;",
+       outs      => [ "res", "M" ],
+       arity     => 2,
+},
+
+vfist => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp", "fpcw" ] },
+       ins       => [ "base", "index", "mem", "val", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+l_vfist => {
+       cmp_attr  => "return 1;",
+       state     => "exc_pinned",
+       arity     => 3,
+       mode      => "mode_M",
+},
+
+
+# constants
+
+vfldz => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfld1 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldpi => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldln2 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldlg2 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldl2t => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldl2e => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+# other
+
+vFucomFnstsw => {
+# we can't allow to rematerialize this node so we don't have
+#  accidently produce Phi(Fucom, Fucom(flipped))
+#      irn_flags => "R",
+       reg_req   => { in => [ "vfp", "vfp" ], out => [ "eax" ] },
+       ins       => [ "left", "right" ],
+       outs      => [ "flags" ],
+       am        => "source,binary",
+       attr      => "int flipped",
+       init_attr => "attr->attr.data.cmp_flipped = flipped;",
+       latency   => 3,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
+       mode      => $mode_gp
+},
+
+Sahf => {
+       irn_flags => "R",
+       reg_req   => { in => [ "eax" ], out => [ "eflags" ] },
+       ins       => [ "val" ],
+       outs      => [ "flags" ],
+       emit      => '. sahf',
+       units     => [ "GP" ],
+       mode      => $mode_flags,
+},
+
+#------------------------------------------------------------------------#
+#       ___ _____    __ _             _                     _            #
+# __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
+# \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
+#  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
+# /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
+#------------------------------------------------------------------------#
+
+# Note: gas is strangely buggy: fdivrp and fdivp as well as fsubrp and fsubp
+#       are swapped, we work this around in the emitter...
+
+fadd => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fadd%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+faddp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. faddp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fmul => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fmul%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fmulp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fmulp%XM %x87_binop',,
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsub => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fsub%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fsubrp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubr => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       irn_flags => "R",
+       reg_req   => { },
+       emit      => '. fsubr%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubrp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       irn_flags => "R",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fsubp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fprem => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fprem1',
+       attr_type => "ia32_x87_attr_t",
+},
+
+# this node is just here, to keep the simulator running
+# we can omit this when a fprem simulation function exists
+fpremp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fprem1',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdiv => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fdiv%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fdivrp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivr => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fdivr%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivrp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fdivp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fabs => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fabs',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fchs => {
+       op_flags  => "R|K",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fchs',
+       attr_type => "ia32_x87_attr_t",
+},
+
+# x87 Load and Store
+
+fld => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fld%XM %AM',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fst => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fst%XM %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+fstp => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fstp%XM %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+# Conversions
+
+fild => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fild%M %AM',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fist => {
+       op_flags  => "R",
+       state     => "exc_pinned",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fist%M %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+fistp => {
+       op_flags  => "R",
+       state     => "exc_pinned",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fistp%M %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+},
+
+# constants
+
+fldz => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldz',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fld1 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fld1',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fldpi => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldpi',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fldln2 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldln2',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fldlg2 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldlg2',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fldl2t => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldll2t',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fldl2e => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldl2e',
+       attr_type => "ia32_x87_attr_t",
+},
+
+# fxch, fpush, fpop
+# Note that it is NEVER allowed to do CSE on these nodes
+# Moreover, note the virtual register requierements!
+
+fxch => {
+       op_flags  => "R|K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. fxch %X0',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fpush => {
+       op_flags  => "R|K",
+       reg_req   => {},
+       cmp_attr  => "return 1;",
+       emit      => '. fld %X0',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fpushCopy => {
+       op_flags  => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       cmp_attr  => "return 1;",
+       emit      => '. fld %X0',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fpop => {
+       op_flags  => "K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. fstp %X0',
+       attr_type => "ia32_x87_attr_t",
+},
+
+ffreep => {
+       op_flags  => "K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. ffreep %X0',
+       attr_type => "ia32_x87_attr_t",
+},
+
+emms => {
+       op_flags  => "K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. emms',
+       attr_type => "ia32_x87_attr_t",
+},
+
+femms => {
+       op_flags  => "K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. femms',
+       attr_type => "ia32_x87_attr_t",
+},
+
+# compare
+
+FucomFnstsw => {
+       op_flags  => "R",
+       reg_req   => { },
+       emit      => ". fucom %X1\n".
+                    ". fnstsw",
+       attr_type => "ia32_x87_attr_t",
+},
+
+FucompFnstsw => {
+       op_flags  => "R",
+       reg_req   => { },
+       emit      => ". fucomp %X1\n".
+                    ". fnstsw",
+       attr_type => "ia32_x87_attr_t",
+},
+
+FucomppFnstsw => {
+       op_flags  => "R",
+       reg_req   => { },
+       emit      => ". fucompp\n".
+                    ". fnstsw",
+       attr_type => "ia32_x87_attr_t",
+},
+
+
+# -------------------------------------------------------------------------------- #
+#  ____ ____  _____                  _                               _             #
+# / ___/ ___|| ____| __   _____  ___| |_ ___  _ __   _ __   ___   __| | ___  ___   #
+# \___ \___ \|  _|   \ \ / / _ \/ __| __/ _ \| '__| | '_ \ / _ \ / _` |/ _ \/ __|  #
+#  ___) |__) | |___   \ V /  __/ (__| || (_) | |    | | | | (_) | (_| |  __/\__ \  #
+# |____/____/|_____|   \_/ \___|\___|\__\___/|_|    |_| |_|\___/ \__,_|\___||___/  #
+#                                                                                  #
+# -------------------------------------------------------------------------------- #
+
+
+# Spilling and reloading of SSE registers, hardcoded, not generated #
+
+xxLoad => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       emit      => '. movdqu %D0, %AM',
+       outs      => [ "res", "M" ],
+       units     => [ "SSE" ],
+},
+
+xxStore => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
+       ins      => [ "base", "index", "mem", "val" ],
+       emit     => '. movdqu %binop',
+       units    => [ "SSE" ],
+       mode     => "mode_M",
 },
 
 ); # end of %nodes
+
+# Include the generated SIMD node specification written by the SIMD optimization
+$my_script_name = dirname($myname) . "/../ia32/ia32_simd_spec.pl";
+unless ($return = do $my_script_name) {
+       warn "couldn't parse $my_script_name: $@" if $@;
+       warn "couldn't do $my_script_name: $!"    unless defined $return;
+       warn "couldn't run $my_script_name"       unless $return;
+}