- implemented __builtin_prefetch in ia32 BE
[libfirm] / ir / be / ia32 / ia32_spec.pl
index 983d4ad..a4c7a72 100644 (file)
@@ -17,7 +17,7 @@ $arch = "ia32";
 #
 # <op-name> => {
 #   op_flags  => "N|L|C|X|I|F|Y|H|c|K",
-#   irn_flags => "R|N|I|S"
+#   irn_flags => "R|N"
 #   arity     => "0|1|2|3 ... |variable|dynamic|any",
 #   state     => "floats|pinned|mem_pinned|exc_pinned",
 #   args      => [
@@ -28,12 +28,17 @@ $arch = "ia32";
 #   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",
+#   outs      => { "out1", "out2" } # optional, creates pn_op_out1, ... consts
+#   ins       => { "in1", "in2" }   # optional, creates n_op_in1, ... consts
+#   mode      => "mode_Iu"          # optional, predefines the mode
 #   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"
+#   attr      => "additional attribute arguments for constructor",
+#   init_attr => "emit attribute initialization template",
+#   rd_constructor => "c source code which constructs an ir_node",
+#   hash_func => "name of the hash function for this operation",
 #   latency   => "latency of this operation (can be float)"
 #   attr_type => "name of the attribute struct",
+#   modified_flags =>  [ "CF", ... ] # optional, list of modified flags
 # },
 #
 # ... # (all nodes you need to describe)
@@ -52,13 +57,13 @@ $arch = "ia32";
 #   H   irop_flag_highlevel
 #   c   irop_flag_constlike
 #   K   irop_flag_keep
+#   NB  irop_flag_dump_noblock
+#   NI  irop_flag_dump_noinput
 #
 # irn_flags: special node flags, OPTIONAL (default is 0)
 # following irn_flags are supported:
 #   R   rematerializeable
 #   N   not spillable
-#   I   ignore for register allocation
-#   S   modifies stack pointer
 #
 # state: state of the operation, OPTIONAL (default is "floats")
 #
@@ -73,10 +78,7 @@ $arch = "ia32";
 #
 # 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" ]
+#        example: [ "frame", "stack", "M" ]
 #
 # comment: OPTIONAL comment for the node constructor
 #
@@ -96,8 +98,6 @@ $arch = "ia32";
 #
 # 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
@@ -147,14 +147,14 @@ $arch = "ia32";
                { 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 => "vf0", type => 1 },
+               { name => "vf1", type => 1 },
+               { name => "vf2", type => 1 },
+               { name => "vf3", type => 1 },
+               { name => "vf4", type => 1 },
+               { name => "vf5", type => 1 },
+               { name => "vf6", type => 1 },
+               { name => "vf7", type => 1 },
                { 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" }
@@ -200,6 +200,7 @@ $arch = "ia32";
        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);",
+       SI1 => "${arch}_emit_source_register_or_immediate(node, 1);",
        SI3 => "${arch}_emit_source_register_or_immediate(node, 3);",
        D0 => "${arch}_emit_dest_register(node, 0);",
        D1 => "${arch}_emit_dest_register(node, 1);",
@@ -214,13 +215,12 @@ $arch = "ia32";
        XXM => "${arch}_emit_xmm_mode_suffix(node);",
        XSD => "${arch}_emit_xmm_mode_suffix_s(node);",
        AM => "${arch}_emit_am(node);",
-       unop3 => "${arch}_emit_unop(node, 3);",
-       unop4 => "${arch}_emit_unop(node, 4);",
-       unop5 => "${arch}_emit_unop(node, 5);",
-       DAM1  => "${arch}_emit_am_or_dest_register(node, 1);",
+       unop3 => "${arch}_emit_unop(node, n_ia32_unary_op);",
+       unop4 => "${arch}_emit_unop(node, n_ia32_binary_right);",
        binop => "${arch}_emit_binop(node);",
        x87_binop => "${arch}_emit_x87_binop(node);",
        CMP0  => "${arch}_emit_cmp_suffix_node(node, 0);",
+       CMP3  => "${arch}_emit_cmp_suffix_node(node, 3);",
 );
 
 #--------------------------------------------------#
@@ -234,34 +234,24 @@ $arch = "ia32";
 #                                      |_|         #
 #--------------------------------------------------#
 
-$default_attr_type = "ia32_attr_t";
-$default_copy_attr = "ia32_copy_attr";
+$default_op_attr_type = "ia32_op_attr_t";
+$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";
+               $res .= "\tarch_irn_add_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,unary") {
-                       $res .= "\tset_ia32_am_support(res, ia32_am_Source, ia32_am_unary);";
+               if($am eq "source,unary") {
+                       $res .= "\tset_ia32_am_support(res, 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);";
+                       $res .= "\tset_ia32_am_support(res, ia32_am_binary);";
                } elsif($am eq "none") {
                        # nothing to do
                } else {
@@ -279,46 +269,64 @@ sub ia32_custom_init_attr {
 $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_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
                "\tinit_ia32_x87_attributes(res);".
                "\tinit_ia32_asm_attributes(res);",
+       ia32_attr_t     =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
+       ia32_call_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_call_attributes(res, pop, call_tp);",
+       ia32_condcode_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_condcode_attributes(res, pnc);",
+       ia32_copyb_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_copyb_attributes(res, size);",
        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);"
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_immediate_attributes(res, symconst, symconst_sign, offset);",
+       ia32_x87_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_x87_attributes(res);",
+       ia32_climbframe_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);\n".
+               "\tinit_ia32_climbframe_attributes(res, count);",
 );
 
 %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",
+       ia32_attr_t            => "ia32_compare_nodes_attr",
+       ia32_call_attr_t       => "ia32_compare_call_attr",
+       ia32_condcode_attr_t   => "ia32_compare_condcode_attr",
+       ia32_copyb_attr_t      => "ia32_compare_copyb_attr",
+       ia32_immediate_attr_t  => "ia32_compare_immediate_attr",
+       ia32_x87_attr_t        => "ia32_compare_x87_attr",
+       ia32_climbframe_attr_t => "ia32_compare_climbframe_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" ];
+$mode_xmm           = "mode_E";
+$mode_gp            = "mode_Iu";
+$mode_flags         = "mode_Iu";
+$mode_fpcw          = "mode_fpcw";
+$status_flags       = [ "CF", "PF", "AF", "ZF", "SF", "OF" ];
+$status_flags_wo_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" ] },
+       reg_req   => { out => [ "gp_NOREG:I" ] },
        attr      => "ir_entity *symconst, int symconst_sign, long offset",
        attr_type => "ia32_immediate_attr_t",
+       hash_func => "ia32_hash_Immediate",
        latency   => 0,
        mode      => $mode_gp,
 },
@@ -332,9 +340,10 @@ Asm => {
        init_attr => "attr->asm_text = asm_text;\n".
                     "\tattr->register_map = register_map;\n",
        latency   => 10,
-       modified_flags => 1,
+       modified_flags => $status_flags,
 },
 
+# "allocates" a free register
 ProduceVal => {
        op_flags  => "c",
        irn_flags => "R",
@@ -362,11 +371,14 @@ ProduceVal => {
 Add => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5", "none", "flags" ] },
+       reg_req   => { in  => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "res", "flags", "M" ],
        emit      => '. add%M %binop',
-       am        => "full,binary",
+       am        => "source,binary",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -378,6 +390,7 @@ AddMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => ". add%M %SI3, %AM",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -389,17 +402,21 @@ AddMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => ". add%M %SB3, %AM",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
 
 Adc => {
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ], out => [ "in_r4 in_r5" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ],
+                      out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right", "eflags" ],
+       outs      => [ "res", "flags", "M" ],
        emit      => '. adc%M %binop',
-       am        => "full,binary",
+       am        => "source,binary",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -417,12 +434,13 @@ l_Adc => {
 
 Mul => {
        # we should not rematrialize this node. It produces 2 results and has
-       # very strict constrains
+       # very strict constraints
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
-       ins       => [ "base", "index", "mem", "val_high", "val_low" ],
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ],
+                      out => [ "eax", "flags", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
        emit      => '. mul%M %unop4',
-       outs      => [ "EAX", "EDX", "M" ],
+       outs      => [ "res_low", "flags", "res_high", "M" ],
        am        => "source,binary",
        latency   => 10,
        units     => [ "GP" ],
@@ -431,19 +449,22 @@ Mul => {
 
 l_Mul => {
        # we should not rematrialize this node. It produces 2 results and has
-       # very strict constrains
+       # very strict constraints
        op_flags  => "C",
        cmp_attr  => "return 1;",
-       outs      => [ "EAX", "EDX", "M" ],
+       outs      => [ "EAX", "flags", "EDX", "M" ],
        arity     => 2
 },
 
 IMul => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       # TODO: adjust out requirements for the 3 operand form
+       # (no need for should_be_same then)
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                          out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
-       emit      => '. imul%M %binop',
+       outs      => [ "res", "flags", "M" ],
        am        => "source,binary",
        latency   => 5,
        units     => [ "GP" ],
@@ -454,10 +475,11 @@ IMul => {
 IMul1OP => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
-       ins       => [ "base", "index", "mem", "val_high", "val_low" ],
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ],
+                      out => [ "eax", "flags", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "left", "right" ],
        emit      => '. imul%M %unop4',
-       outs      => [ "EAX", "EDX", "M" ],
+       outs      => [ "res_low", "flags", "res_high", "M" ],
        am        => "source,binary",
        latency   => 5,
        units     => [ "GP" ],
@@ -465,22 +487,24 @@ IMul1OP => {
 },
 
 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" ],
+       outs      => [ "res_low", "res_high", "M" ],
        arity     => 2
 },
 
 And => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                          out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
-       am        => "full,binary",
+       outs      => [ "res", "flags", "M" ],
+       op_modes  => "commutative | am | immediate | mode_neutral",
+       am        => "source,binary",
        emit      => '. and%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -492,6 +516,7 @@ AndMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. and%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -503,6 +528,7 @@ AndMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. and%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -510,11 +536,14 @@ AndMem8Bit => {
 Or => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
-       am        => "full,binary",
+       outs      => [ "res", "flags", "M" ],
+       am        => "source,binary",
        emit      => '. or%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -526,6 +555,7 @@ OrMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. or%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -537,6 +567,7 @@ OrMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. or%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -544,11 +575,26 @@ OrMem8Bit => {
 Xor => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4 in_r5" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r4 in_r5", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
-       am        => "full,binary",
+       outs      => [ "res", "flags", "M" ],
+       am        => "source,binary",
        emit      => '. xor%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Xor0 => {
+       op_flags  => "c",
+       irn_flags => "R",
+       reg_req   => { out => [ "gp", "flags" ] },
+       outs      => [ "res", "flags" ],
+       emit      => ". xor%M %D0, %D0",
+       units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -560,6 +606,7 @@ XorMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. xor%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -571,6 +618,7 @@ XorMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. xor%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -580,11 +628,14 @@ XorMem8Bit => {
 Sub => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4", "none", "flags" ] },
-       ins       => [ "base", "index", "mem", "left", "right" ],
-       am        => "full,binary",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r4", "flags", "none" ] },
+       ins       => [ "base", "index", "mem", "minuend", "subtrahend" ],
+       outs      => [ "res", "flags", "M" ],
+       am        => "source,binary",
        emit      => '. sub%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -593,9 +644,10 @@ SubMem => {
        irn_flags => "R",
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none" ] },
-       ins       => [ "base", "index", "mem", "val" ],
+       ins       => [ "base", "index", "mem", "subtrahend" ],
        emit      => '. sub%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => 'mode_M',
        modified_flags => $status_flags
 },
@@ -604,42 +656,58 @@ SubMem8Bit => {
        irn_flags => "R",
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => [ "none" ] },
-       ins       => [ "base", "index", "mem", "val" ],
+       ins       => [ "base", "index", "mem", "subtrahend" ],
        emit      => '. sub%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => 'mode_M',
        modified_flags => $status_flags
 },
 
 Sbb => {
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ], out => [ "in_r4 !in_r5" ] },
-       ins       => [ "base", "index", "mem", "left", "right", "eflags" ],
-       am        => "full,binary",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "flags" ],
+                      out => [ "in_r4 !in_r5", "flags", "none" ] },
+       ins       => [ "base", "index", "mem", "minuend", "subtrahend", "eflags" ],
+       outs      => [ "res", "flags", "M" ],
+       am        => "source,binary",
        emit      => '. sbb%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Sbb0 => {
+       irn_flags => "R",
+       reg_req   => { in => [ "flags" ], out => [ "gp", "flags" ] },
+       outs      => [ "res", "flags" ],
+       emit      => ". sbb%M %D0, %D0",
+       units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
 
 l_Sub => {
        reg_req   => { in => [ "none", "none" ], out => [ "none" ] },
-       ins       => [ "left", "right" ],
+       ins       => [ "minuend", "subtrahend" ],
 },
 
 l_Sbb => {
        reg_req   => { in => [ "none", "none", "none" ], out => [ "none" ] },
-       ins       => [ "left", "right", "eflags" ],
+       ins       => [ "minuend", "subtrahend", "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" ],
-       am        => "source,ternary",
-       emit      => ". idiv%M %unop5",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "eax", "edx" ],
+                      out => [ "eax", "flags", "none", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "divisor", "dividend_low", "dividend_high" ],
+       outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
+       am        => "source,unary",
+       emit      => ". idiv%M %unop3",
        latency   => 25,
        units     => [ "GP" ],
        modified_flags => $status_flags
@@ -648,11 +716,12 @@ IDiv => {
 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" ],
-       am        => "source,ternary",
-       emit      => ". div%M %unop5",
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "eax", "edx" ],
+                      out => [ "eax", "flags", "none", "edx", "none" ] },
+       ins       => [ "base", "index", "mem", "divisor", "dividend_low", "dividend_high" ],
+       outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
+       am        => "source,unary",
+       emit      => ". div%M %unop3",
        latency   => 25,
        units     => [ "GP" ],
        modified_flags => $status_flags
@@ -660,10 +729,13 @@ Div => {
 
 Shl => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
-       ins       => [ "left", "right" ],
-       emit      => '. shl %SB1, %S0',
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
+       ins       => [ "val", "count" ],
+       outs      => [ "res", "flags" ],
+       emit      => '. shl%M %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -675,23 +747,24 @@ ShlMem => {
        ins       => [ "base", "index", "mem", "count" ],
        emit      => '. shl%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
 
 l_ShlDep => {
-       cmp_attr  => "return 1;",
-       # value, cnt, dependency
-       arity     => 3
+       cmp_attr => "return 1;",
+       ins      => [ "val", "count", "dep" ],
+       arity    => 3
 },
 
 ShlD => {
        irn_flags => "R",
-       # see ShrD about the strange out constraint
-       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "!in" ] },
-       ins       => [ "left_high", "left_low", "right" ],
-       emit      => ". shld%M %SB2, %S1, %S0\n".
-                    ". movl %S0, %D0",
+       reg_req   => { in => [ "gp", "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2 !in_r3", "flags" ] },
+       ins       => [ "val_high", "val_low", "count" ],
+       outs      => [ "res", "flags" ],
+       emit      => ". shld%M %SB2, %S1, %D0",
        latency   => 6,
        units     => [ "GP" ],
        mode      => $mode_gp,
@@ -700,16 +773,20 @@ ShlD => {
 
 l_ShlD => {
        cmp_attr  => "return 1;",
+       ins       => [ "val_high", "val_low", "count" ],
        arity     => 3,
 },
 
 Shr => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
        ins       => [ "val", "count" ],
-       emit      => '. shr %SB1, %S0',
+       outs      => [ "res", "flags" ],
+       emit      => '. shr%M %SB1, %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
+       latency   => 1,
        modified_flags => $status_flags
 },
 
@@ -721,35 +798,23 @@ ShrMem => {
        emit      => '. shr%M %SB3, %AM',
        units     => [ "GP" ],
        mode      => "mode_M",
+       latency   => 1,
        modified_flags => $status_flags
 },
 
 l_ShrDep => {
        cmp_attr  => "return 1;",
-       # value, cnt, dependency
+       ins       => [ "val", "count", "dep" ],
        arity     => 3
 },
 
 ShrD => {
-       # What's going on with the out constraint here? We would like to write
-       # "in_r2" and be done. However in firm we only support should_be_same
-       # constraints at the moment. Which means they could be non-fullfilled in
-       # some cases. Now when all values happen to live through the node, out
-       # is ecx and in_r2 not ecx, then we're screwed. Because in this case we
-       # need a 4th Register.
-       #
-       # The best solution for this is extending the register allocator to support
-       # must_be_same constraints which create a copy when the in_r2 value
-       # lives through (this ensures that we have the 4th register in the cases
-       # when we need it and can always fix the situation).
-       #
-       # For now I'm doing this ultra ugly !in hack which allocates 4 registers
-       # and creates an extra mov
-       irn_flags => "R",
-       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "!in" ] },
-       ins       => [ "left_high", "left_low", "right" ],
-       emit      => ". shrd%M %SB2, %S1, %S0\n".
-                    ". movl   %S0, %D0",
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2 !in_r3", "flags" ] },
+       ins       => [ "val_high", "val_low", "count" ],
+       outs      => [ "res", "flags" ],
+       emit      => ". shrd%M %SB2, %S1, %D0",
        latency   => 6,
        units     => [ "GP" ],
        mode      => $mode_gp,
@@ -758,15 +823,19 @@ ShrD => {
 
 l_ShrD => {
        cmp_attr  => "return 1;",
-       arity     => 3
+       arity     => 3,
+       ins       => [ "val_high", "val_low", "count" ],
 },
 
 Sar => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
        ins       => [ "val", "count" ],
-       emit      => '. sar %SB1, %S0',
+       outs      => [ "res", "flags" ],
+       emit      => '. sar%M %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -778,22 +847,26 @@ SarMem => {
        ins       => [ "base", "index", "mem", "count" ],
        emit      => '. sar%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
 
 l_SarDep => {
        cmp_attr  => "return 1;",
-       # value, cnt, dependency
+       ins       => [ "val", "count", "dep" ],
        arity     => 3
 },
 
 Ror => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
        ins       => [ "val", "count" ],
-       emit      => '. ror %SB1, %S0',
+       outs      => [ "res", "flags" ],
+       emit      => '. ror%M %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -805,16 +878,20 @@ RorMem => {
        ins       => [ "base", "index", "mem", "count" ],
        emit      => '. ror%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
 
 Rol => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
        ins       => [ "val", "count" ],
-       emit      => '. rol %SB1, %S0',
+       outs      => [ "res", "flags" ],
+       emit      => '. rol%M %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -826,6 +903,7 @@ RolMem => {
        ins       => [ "base", "index", "mem", "count" ],
        emit      => '. rol%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -834,10 +912,13 @@ RolMem => {
 
 Neg => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
-       emit      => '. neg %S0',
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
+       emit      => '. neg%M %S0',
        ins       => [ "val" ],
+       outs      => [ "res", "flags" ],
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -849,31 +930,32 @@ NegMem => {
        ins       => [ "base", "index", "mem" ],
        emit      => '. neg%M %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
 
 Minus64Bit => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "gp" ] },
+       reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "in_r2" ] },
        outs      => [ "low_res", "high_res" ],
        units     => [ "GP" ],
+       latency   => 3,
        modified_flags => $status_flags
 },
 
 
-l_Neg => {
-       cmp_attr  => "return 1;",
-       arity     => 1,
-},
-
 Inc => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
-       emit      => '. inc %S0',
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
+       ins       => [ "val" ],
+       outs      => [ "res", "flags" ],
+       emit      => '. inc%M %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
-       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+       latency   => 1,
+       modified_flags => $status_flags_wo_cf
 },
 
 IncMem => {
@@ -884,16 +966,21 @@ IncMem => {
        emit      => '. inc%M %AM',
        units     => [ "GP" ],
        mode      => "mode_M",
-       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+       latency   => 1,
+       modified_flags => $status_flags_wo_cf
 },
 
 Dec => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
-       emit      => '. dec %S0',
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
+       ins       => [ "val" ],
+       outs      => [ "res", "flags" ],
+       emit      => '. dec%M %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
-       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+       latency   => 1,
+       modified_flags => $status_flags_wo_cf
 },
 
 DecMem => {
@@ -904,16 +991,21 @@ DecMem => {
        emit      => '. dec%M %AM',
        units     => [ "GP" ],
        mode      => "mode_M",
-       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+       latency   => 1,
+       modified_flags => $status_flags_wo_cf
 },
 
 Not => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
        ins       => [ "val" ],
-       emit      => '. not %S0',
+       outs      => [ "res", "flags" ],
+       emit      => '. not%M %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
+       # no flags modified
 },
 
 NotMem => {
@@ -923,7 +1015,27 @@ NotMem => {
        ins       => [ "base", "index", "mem" ],
        emit      => '. not%M %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
+       # no flags modified
+},
+
+Cmc => {
+       reg_req => { in => [ "flags" ], out => [ "flags" ] },
+       emit    => '.cmc',
+       units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_flags,
+       modified_flags => $status_flags
+},
+
+Stc => {
+       reg_req => { out => [ "flags" ] },
+       emit    => '.stc',
+       units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_flags,
+       modified_flags => $status_flags
 },
 
 # other operations
@@ -931,9 +1043,10 @@ NotMem => {
 Cmp => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ] , out => [ "flags" ] },
+       reg_req   => { in  => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "flags", "none", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
-       outs      => [ "eflags" ],
+       outs      => [ "eflags", "unused", "M" ],
        am        => "source,binary",
        emit      => '. cmp%M %binop',
        attr      => "int ins_permuted, int cmp_unsigned",
@@ -1000,9 +1113,9 @@ Set => {
        #irn_flags => "R",
        reg_req   => { in => [ "eflags" ], out => [ "eax ebx ecx edx" ] },
        ins       => [ "eflags" ],
+       attr_type => "ia32_condcode_attr_t",
        attr      => "pn_Cmp pnc, int ins_permuted",
-       init_attr => "attr->pn_code = pnc;\n".
-                    "attr->data.ins_permuted = ins_permuted;\n".
+       init_attr => "attr->attr.data.ins_permuted = ins_permuted;\n".
                      "\tset_ia32_ls_mode(res, mode_Bu);\n",
        emit      => '. set%CMP0 %DB0',
        latency   => 1,
@@ -1010,6 +1123,21 @@ Set => {
        mode      => $mode_gp,
 },
 
+SetMem => {
+       #irn_flags => "R",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "eflags" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem","eflags" ],
+       attr_type => "ia32_condcode_attr_t",
+       attr      => "pn_Cmp pnc, int ins_permuted",
+       init_attr => "attr->attr.data.ins_permuted = ins_permuted;\n".
+                     "\tset_ia32_ls_mode(res, mode_Bu);\n",
+       emit      => '. set%CMP3 %AM',
+       latency   => 1,
+       units     => [ "GP" ],
+       mode      => 'mode_M',
+},
+
 CMov => {
        #irn_flags => "R",
        # (note: leave the false,true order intact to make it compatible with other
@@ -1018,9 +1146,9 @@ CMov => {
        reg_req   => { in => [ "gp", "gp", "none", "gp", "gp", "eflags" ], out => [ "in_r4 in_r5" ] },
        ins       => [ "base", "index", "mem", "val_false", "val_true", "eflags" ],
        am        => "source,binary",
-       attr      => "int ins_permuted, pn_Cmp pn_code",
-       init_attr => "attr->pn_code          = pn_code;\n".
-                    "attr->data.ins_permuted = ins_permuted;",
+       attr_type => "ia32_condcode_attr_t",
+       attr      => "int ins_permuted, pn_Cmp pnc",
+       init_attr => "attr->attr.data.ins_permuted = ins_permuted;",
        latency   => 1,
        units     => [ "GP" ],
        mode      => $mode_gp,
@@ -1032,8 +1160,8 @@ Jcc => {
        reg_req   => { in  => [ "eflags" ], out => [ "none", "none" ] },
        ins       => [ "eflags" ],
        outs      => [ "false", "true" ],
+       attr_type => "ia32_condcode_attr_t",
        attr      => "pn_Cmp pnc",
-       init_attr => "attr->pn_code = pnc;",
        latency   => 2,
        units     => [ "BRANCH" ],
 },
@@ -1042,10 +1170,12 @@ SwitchJmp => {
        state     => "pinned",
        op_flags  => "L|X|Y",
        reg_req   => { in => [ "gp" ], out => [ "none" ] },
+       mode      => "mode_T",
+       attr_type => "ia32_condcode_attr_t",
+       attr      => "long pnc",
        latency   => 3,
        units     => [ "BRANCH" ],
-       mode      => "mode_T",
-       modified_flags => $status_flags
+       modified_flags => $status_flags,
 },
 
 IJmp => {
@@ -1055,6 +1185,7 @@ IJmp => {
        ins       => [ "base", "index", "mem", "target" ],
        am        => "source,unary",
        emit      => '. jmp *%unop3',
+       latency   => 1,
        units     => [ "BRANCH" ],
        mode      => "mode_X",
 },
@@ -1066,78 +1197,85 @@ Const => {
        units     => [ "GP" ],
        attr      => "ir_entity *symconst, int symconst_sign, long offset",
        attr_type => "ia32_immediate_attr_t",
+       latency   => 1,
        mode      => $mode_gp,
-# depends on the const and is set in ia32_transform
-# modified_flags => $status_flags
+},
+
+GetEIP => {
+       op_flags => "c",
+       reg_req  => { out => [ "gp" ] },
+       units    => [ "GP" ],
+       latency  => 5,
+       mode     => $mode_gp,
+       modified_flags => $status_flags,
 },
 
 Unknown_GP => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "gp_UKNWN" ] },
+       op_flags  => "c|NB",
+       reg_req   => { out => [ "gp_UKNWN:I" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => $mode_gp
 },
 
 Unknown_VFP => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "vfp_UKNWN" ] },
+       op_flags  => "c|NB",
+       reg_req   => { out => [ "vfp_UKNWN:I" ] },
        units     => [],
        emit      => "",
        mode      => "mode_E",
+       latency   => 0,
        attr_type => "ia32_x87_attr_t",
 },
 
 Unknown_XMM => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "xmm_UKNWN" ] },
+       op_flags  => "c|NB",
+       reg_req   => { out => [ "xmm_UKNWN:I" ] },
        units     => [],
        emit      => "",
-       mode      => "mode_E"
+       latency   => 0,
+       mode      => $mode_xmm
 },
 
 NoReg_GP => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "gp_NOREG" ] },
+       op_flags  => "c|NB|NI",
+       reg_req   => { out => [ "gp_NOREG:I" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => $mode_gp
 },
 
 NoReg_VFP => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "vfp_NOREG" ] },
+       op_flags  => "c|NB|NI",
+       reg_req   => { out => [ "vfp_NOREG:I" ] },
        units     => [],
        emit      => "",
        mode      => "mode_E",
+       latency   => 0,
        attr_type => "ia32_x87_attr_t",
 },
 
 NoReg_XMM => {
        state     => "pinned",
-       op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "xmm_NOREG" ] },
+       op_flags  => "c|NB|NI",
+       reg_req   => { out => [ "xmm_NOREG:I" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => "mode_E"
 },
 
 ChangeCW => {
        state     => "pinned",
        op_flags  => "c",
-       irn_flags => "I",
-       reg_req   => { out => [ "fp_cw" ] },
+       reg_req   => { out => [ "fpcw:I" ] },
        mode      => $mode_fpcw,
        latency   => 3,
        units     => [ "GP" ],
@@ -1147,7 +1285,7 @@ ChangeCW => {
 FldCW => {
        op_flags  => "L|F",
        state     => "pinned",
-       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "fp_cw" ] },
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "fpcw:I" ] },
        ins       => [ "base", "index", "mem" ],
        latency   => 5,
        emit      => ". fldcw %AM",
@@ -1167,11 +1305,22 @@ FnstCW => {
        units     => [ "GP" ],
 },
 
+FnstCWNOP => {
+       op_flags  => "L|F",
+       state     => "pinned",
+       reg_req   => { in => [ "fp_cw" ], out => [ "none" ] },
+       ins       => [ "fpcw" ],
+       latency   => 0,
+       emit      => "",
+       mode      => "mode_M",
+},
+
 Cltd => {
        # we should not rematrialize this node. It has very strict constraints.
        reg_req   => { in => [ "eax", "edx" ], out => [ "edx" ] },
-       ins       => [ "val", "globbered" ],
+       ins       => [ "val", "clobbered" ],
        emit      => '. cltd',
+       latency   => 1,
        mode      => $mode_gp,
        units     => [ "GP" ],
 },
@@ -1184,34 +1333,20 @@ Cltd => {
 Load => {
        op_flags  => "L|F",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "gp", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "gp", "none", "none" ] },
        ins       => [ "base", "index", "mem" ],
-       outs      => [ "res", "M" ],
+       outs      => [ "res", "M", "X_exc" ],
        latency   => 0,
        emit      => ". mov%SE%ME%.l %AM, %D0",
        units     => [ "GP" ],
 },
 
-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" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "none", "none" ] },
        ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "M", "X_exc" ],
        emit      => '. mov%M %SI3, %AM',
        latency   => 2,
        units     => [ "GP" ],
@@ -1221,8 +1356,9 @@ Store => {
 Store8Bit => {
        op_flags  => "L|F",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => ["none" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "eax ebx ecx edx" ], out => ["none", "none" ] },
        ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "M", "X_exc" ],
        emit      => '. mov%M %SB3, %AM',
        latency   => 2,
        units     => [ "GP" ],
@@ -1237,80 +1373,223 @@ Lea => {
        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
+# lea doesn't modify the flags, but setting this seems advantageous since it
+# increases chances that the Lea is transformed back to an Add
        modified_flags => 1,
 },
 
 Push => {
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "esp", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "esp" ], out => [ "esp:I|S", "none" ] },
        ins       => [ "base", "index", "mem", "val", "stack" ],
-       emit      => '. push%M %unop4',
-       outs      => [ "stack:I|S", "M" ],
-       am        => "source,binary",
+       emit      => '. push%M %unop3',
+       outs      => [ "stack", "M" ],
+       am        => "source,unary",
        latency   => 2,
        units     => [ "GP" ],
 },
 
 Pop => {
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "esp" ], out => [ "esp", "gp", "none" ] },
-       emit      => '. pop%M %DAM1',
-       outs      => [ "stack:I|S", "res", "M" ],
+       reg_req   => { in => [ "none", "esp" ], out => [ "gp", "none", "none", "esp:I|S" ] },
+       ins       => [ "mem", "stack" ],
+       outs      => [ "res", "M", "unused", "stack" ],
+       emit      => '. pop%M %D0',
+       latency   => 3, # Pop is more expensive than Push on Athlon
+       units     => [ "GP" ],
+},
+
+PopEbp => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "none", "esp" ], out => [ "ebp:I", "none", "none", "esp:I|S" ] },
+       ins       => [ "mem", "stack" ],
+       outs      => [ "res", "M", "unused", "stack" ],
+       emit      => '. pop%M %D0',
+       latency   => 3, # Pop is more expensive than Push on Athlon
+       units     => [ "GP" ],
+},
+
+PopMem => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none", "esp" ], out => [ "none", "none", "none", "esp:I|S" ] },
        ins       => [ "base", "index", "mem", "stack" ],
-       am        => "dest,unary",
+       outs      => [ "unused0", "M", "unused1", "stack" ],
+       emit      => '. pop%M %AM',
        latency   => 3, # Pop is more expensive than Push on Athlon
        units     => [ "GP" ],
 },
 
 Enter => {
-       reg_req   => { in => [ "esp" ], out => [ "ebp", "esp", "none" ] },
+       reg_req   => { in => [ "esp" ], out => [ "ebp", "esp:I|S", "none" ] },
        emit      => '. enter',
-       outs      => [ "frame:I", "stack:I|S", "M" ],
+       outs      => [ "frame", "stack", "M" ],
        latency   => 15,
        units     => [ "GP" ],
 },
 
 Leave => {
-       reg_req   => { in => [ "esp", "ebp" ], out => [ "ebp", "esp" ] },
+       reg_req   => { in => [ "ebp" ], out => [ "ebp:I", "esp:I|S" ] },
        emit      => '. leave',
-       outs      => [ "frame:I", "stack:I|S" ],
+       outs      => [ "frame", "stack" ],
        latency   => 3,
        units     => [ "GP" ],
 },
 
 AddSP => {
-       irn_flags => "I",
        state     => "pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "in_r4", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "esp:I|S", "none" ] },
        ins       => [ "base", "index", "mem", "stack", "size" ],
        am        => "source,binary",
        emit      => '. addl %binop',
-       outs      => [ "stack:S", "M" ],
+       latency   => 1,
+       outs      => [ "stack", "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" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "esp", "gp" ], out => [ "esp:I|S", "gp", "none" ] },
        ins       => [ "base", "index", "mem", "stack", "size" ],
        am        => "source,binary",
        emit      => ". subl %binop\n".
                     ". movl %%esp, %D1",
-       outs      => [ "stack:I|S", "addr", "M" ],
+       latency   => 2,
+       outs      => [ "stack", "addr", "M" ],
        units     => [ "GP" ],
        modified_flags => $status_flags
 },
 
+RepPrefix => {
+       op_flags  => "K",
+       state     => "pinned",
+       mode      => "mode_M",
+       emit      => ". rep",
+       latency   => 0,
+},
+
 LdTls => {
        irn_flags => "R",
        reg_req   => { out => [ "gp" ] },
        units     => [ "GP" ],
+       latency   => 1,
+},
+
+Bt => {
+       irn_flags => "R",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp" ], out => [ "flags" ] },
+       ins       => [ "left", "right" ],
+       emit      => '. bt%M %S1, %S0',
+       units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_flags,
+       modified_flags => $status_flags  # only CF is set, but the other flags are undefined
+},
+
+Call => {
+       state     => "exc_pinned",
+       reg_req   => {
+               in  => [ "gp", "gp", "none", "gp", "esp", "fpcw", "eax", "ecx", "edx" ],
+               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" ]
+       },
+       ins       => [ "base", "index", "mem", "addr", "stack", "fpcw", "eax", "ecx", "edx" ],
+       outs      => [ "stack", "fpcw", "M", "eax", "ecx", "edx", "vf0", "vf1", "vf2", "vf3", "vf4", "vf5", "vf6", "vf7", "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7" ],
+       attr_type => "ia32_call_attr_t",
+       attr      => "unsigned pop, ir_type *call_tp",
+       am        => "source,unary",
+       units     => [ "BRANCH" ],
+       latency   => 4, # random number
+       modified_flags => $status_flags
 },
 
+#
+# a Helper node for frame-climbing, needed for __builtin_(frame|return)_address
+#
+# PS: try gcc __builtin_frame_address(100000) :-)
+#
+ClimbFrame => {
+       reg_req   => { in => [ "gp", "gp", "gp"], out => [ "in_r3" ] },
+       ins       => [ "frame", "cnt", "tmp" ],
+       outs      => [ "res" ],
+       latency   => 4, # random number
+       attr_type => "ia32_climbframe_attr_t",
+       attr      => "unsigned count",
+       units     => [ "GP" ],
+       mode      => $mode_gp
+},
+
+#
+# Intel style prefetching
+#
+Prefetch0 => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetch0 %AM",
+       units     => [ "GP" ],
+},
+
+Prefetch1 => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetch1 %AM",
+       units     => [ "GP" ],
+},
+
+Prefetch2 => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetch2 %AM",
+       units     => [ "GP" ],
+},
+
+PrefetchNTA => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetchnta %AM",
+       units     => [ "GP" ],
+},
+
+#
+# 3DNow! prefetch instructions
+#
+Prefetch => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetch %AM",
+       units     => [ "GP" ],
+},
+
+PrefetchW => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "M" ],
+       latency   => 0,
+       emit      => ". prefetchw %AM",
+       units     => [ "GP" ],
+},
 
 #-----------------------------------------------------------------------------#
 #   _____ _____ ______    __ _             _                     _            #
@@ -1321,13 +1600,73 @@ LdTls => {
 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
 #-----------------------------------------------------------------------------#
 
+# produces a 0/+0.0
 xZero => {
        irn_flags => "R",
        reg_req   => { out => [ "xmm" ] },
        emit      => '. xorp%XSD %D0, %D0',
        latency   => 3,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
+},
+
+xPzero => {
+       irn_flags => "R",
+       reg_req   => { out => [ "xmm" ] },
+       emit      => '. pxor %D0, %D0',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
+},
+
+# produces all 1 bits
+xAllOnes => {
+       irn_flags => "R",
+       reg_req   => { out => [ "xmm" ] },
+       emit      => '. pcmpeqb %D0, %D0',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
+},
+
+# integer shift left, dword
+xPslld => {
+       irn_flags => "R",
+       reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
+       emit      => '. pslld %SI1, %D0',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
+},
+
+# integer shift left, qword
+xPsllq => {
+       irn_flags => "R",
+       reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
+       emit      => '. psllq %SI1, %D0',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
+},
+
+# integer shift right, dword
+xPsrld => {
+       irn_flags => "R",
+       reg_req   => { in => [ "xmm", "xmm" ], out => [ "in_r1 !in_r2" ] },
+       emit      => '. psrld %SI1, %D0',
+       latency   => 1,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
+},
+
+# mov from integer to SSE register
+xMovd  => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "xmm" ] },
+       emit      => '. movd %S0, %D0',
+       latency   => 1,
+       units     => [ "SSE" ],
+       mode      => $mode_xmm
 },
 
 # commutative operations
@@ -1341,7 +1680,7 @@ xAdd => {
        emit      => '. add%XXM %binop',
        latency   => 4,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xMul => {
@@ -1353,7 +1692,7 @@ xMul => {
        emit      => '. mul%XXM %binop',
        latency   => 4,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xMax => {
@@ -1365,7 +1704,7 @@ xMax => {
        emit      => '. max%XXM %binop',
        latency   => 2,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xMin => {
@@ -1377,7 +1716,7 @@ xMin => {
        emit      => '. min%XXM %binop',
        latency   => 2,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xAnd => {
@@ -1389,7 +1728,7 @@ xAnd => {
        emit      => '. andp%XSD %binop',
        latency   => 3,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xOr => {
@@ -1399,8 +1738,9 @@ xOr => {
        ins       => [ "base", "index", "mem", "left", "right" ],
        am        => "source,binary",
        emit      => '. orp%XSD %binop',
+       latency   => 3,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xXor => {
@@ -1412,7 +1752,7 @@ xXor => {
        emit      => '. xorp%XSD %binop',
        latency   => 3,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 # not commutative operations
@@ -1426,26 +1766,26 @@ xAndNot => {
        emit      => '. andnp%XSD %binop',
        latency   => 3,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xSub => {
        irn_flags => "R",
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4" ] },
-       ins       => [ "base", "index", "mem", "left", "right" ],
+       ins       => [ "base", "index", "mem", "minuend", "subtrahend" ],
        am        => "source,binary",
        emit      => '. sub%XXM %binop',
        latency   => 4,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm
 },
 
 xDiv => {
        irn_flags => "R",
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "xmm", "xmm" ], out => [ "in_r4 !in_r5", "none" ] },
-       ins       => [ "base", "index", "mem", "left", "right" ],
+       ins       => [ "base", "index", "mem", "dividend", "divisor" ],
        am        => "source,binary",
        outs      => [ "res", "M" ],
        emit      => '. div%XXM %binop',
@@ -1476,12 +1816,12 @@ Ucomi => {
 xLoad => {
        op_flags  => "L|F",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none", "none" ] },
        ins       => [ "base", "index", "mem" ],
+       outs      => [ "res", "M", "X_exc" ],
        emit      => '. mov%XXM %AM, %D0',
        attr      => "ir_mode *load_mode",
        init_attr => "attr->ls_mode = load_mode;",
-       outs      => [ "res", "M" ],
        latency   => 0,
        units     => [ "SSE" ],
 },
@@ -1489,8 +1829,9 @@ xLoad => {
 xStore => {
        op_flags => "L|F",
        state    => "exc_pinned",
-       reg_req  => { in => [ "gp", "gp", "none", "xmm" ] },
+       reg_req  => { in => [ "gp", "gp", "none", "xmm" ], out => [ "none", "none" ] },
        ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "M", "X_exc" ],
        emit     => '. mov%XXM %S3, %AM',
        latency  => 0,
        units    => [ "SSE" ],
@@ -1533,48 +1874,68 @@ CvtSI2SD => {
 },
 
 
-l_X87toSSE => {
+l_LLtoFloat => {
        op_flags => "L|F",
        cmp_attr => "return 1;",
-       arity    => 3,
+       ins      => [ "val_high", "val_low" ],
 },
 
-l_SSEtoX87 => {
+l_FloattoLL => {
        op_flags => "L|F",
        cmp_attr => "return 1;",
-       arity    => 3,
+       ins      => [ "val" ],
+       outs     => [ "res_high", "res_low" ],
 },
 
 # 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" ],
+       op_flags  => "F|H",
+       state     => "pinned",
+       reg_req   => { in => [ "edi", "esi", "ecx", "none" ], out => [ "edi", "esi", "ecx", "none" ] },
+       outs      => [ "DST", "SRC", "CNT", "M" ],
+       attr_type => "ia32_copyb_attr_t",
+       attr      => "unsigned size",
+       units     => [ "GP" ],
+       latency  => 3,
 # 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" ],
+       op_flags  => "F|H",
+       state     => "pinned",
+       reg_req   => { in => [ "edi", "esi", "none" ], out => [  "edi", "esi", "none" ] },
+       outs      => [ "DST", "SRC", "M" ],
+       attr_type => "ia32_copyb_attr_t",
+       attr      => "unsigned size",
+       units     => [ "GP" ],
+       latency  => 3,
 # we don't care about this flag, so no need to mark this node
 #      modified_flags => [ "DF" ]
 },
 
 # Conversions
 
+Cwtl => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "eax" ], out => [ "eax" ] },
+       ins       => [ "val" ],
+       outs      => [ "res" ],
+       emit      => '. cwtl',
+       units     => [ "GP" ],
+       latency   => 1,
+       mode      => $mode_gp,
+},
+
 Conv_I2I => {
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "gp" ], out => [ "gp", "none" ] },
        ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "res", "M" ],
        am        => "source,unary",
        units     => [ "GP" ],
+       latency   => 1,
        attr      => "ir_mode *smaller_mode",
        init_attr => "attr->ls_mode = smaller_mode;",
        mode      => $mode_gp,
@@ -1586,6 +1947,7 @@ Conv_I2I8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        am        => "source,unary",
        units     => [ "GP" ],
+       latency   => 1,
        attr      => "ir_mode *smaller_mode",
        init_attr => "attr->ls_mode = smaller_mode;",
        mode      => $mode_gp,
@@ -1598,7 +1960,7 @@ Conv_I2FP => {
        am        => "source,unary",
        latency   => 10,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm,
 },
 
 Conv_FP2I => {
@@ -1618,7 +1980,7 @@ Conv_FP2FP => {
        am        => "source,unary",
        latency   => 8,
        units     => [ "SSE" ],
-       mode      => "mode_E",
+       mode      => $mode_xmm,
 },
 
 #----------------------------------------------------------#
@@ -1666,7 +2028,7 @@ vfsub => {
 #      irn_flags => "R",
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp" ] },
-       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       ins       => [ "base", "index", "mem", "minuend", "subtrahend", "fpcw" ],
        am        => "source,binary",
        latency   => 4,
        units     => [ "VFP" ],
@@ -1677,7 +2039,7 @@ vfsub => {
 vfdiv => {
        state     => "exc_pinned",
        reg_req   => { in => [ "gp", "gp", "none", "vfp", "vfp", "fpcw" ], out => [ "vfp", "none" ] },
-       ins       => [ "base", "index", "mem", "left", "right", "fpcw" ],
+       ins       => [ "base", "index", "mem", "dividend", "divisor", "fpcw" ],
        am        => "source,binary",
        outs      => [ "res", "M" ],
        latency   => 20,
@@ -1720,9 +2082,9 @@ vfld => {
        irn_flags => "R",
        op_flags  => "L|F",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none", "none" ] },
        ins       => [ "base", "index", "mem" ],
-       outs      => [ "res", "M" ],
+       outs      => [ "res", "M", "X_exc" ],
        attr      => "ir_mode *load_mode",
        init_attr => "attr->attr.ls_mode = load_mode;",
        latency   => 2,
@@ -1734,8 +2096,9 @@ vfst => {
        irn_flags => "R",
        op_flags  => "L|F",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "vfp" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "none", "none" ] },
        ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "M", "X_exc" ],
        attr      => "ir_mode *store_mode",
        init_attr => "attr->attr.ls_mode = store_mode;",
        latency   => 2,
@@ -1756,12 +2119,6 @@ vfild => {
        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" ] },
@@ -1772,11 +2129,15 @@ vfist => {
        attr_type => "ia32_x87_attr_t",
 },
 
-l_vfist => {
-       cmp_attr  => "return 1;",
+# SSE3 fisttp instruction
+vfisttp => {
        state     => "exc_pinned",
-       arity     => 3,
-       mode      => "mode_M",
+       reg_req   => { in => [ "gp", "gp", "none", "vfp" ], out => [ "in_r4", "none" ]},
+       ins       => [ "base", "index", "mem", "val" ],
+       outs      => [ "res", "M" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
 },
 
 
@@ -1785,6 +2146,7 @@ l_vfist => {
 vfldz => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1794,6 +2156,7 @@ vfldz => {
 vfld1 => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1803,6 +2166,7 @@ vfld1 => {
 vfldpi => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1812,6 +2176,7 @@ vfldpi => {
 vfldln2 => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1821,6 +2186,7 @@ vfldln2 => {
 vfldlg2 => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1830,6 +2196,7 @@ vfldlg2 => {
 vfldl2t => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1839,6 +2206,7 @@ vfldl2t => {
 vfldl2e => {
        irn_flags => "R",
        reg_req   => { out => [ "vfp" ] },
+       outs      => [ "res" ],
        latency   => 4,
        units     => [ "VFP" ],
        mode      => "mode_E",
@@ -1894,6 +2262,7 @@ Sahf => {
        ins       => [ "val" ],
        outs      => [ "flags" ],
        emit      => '. sahf',
+       latency   => 1,
        units     => [ "GP" ],
        mode      => $mode_flags,
 },
@@ -1914,6 +2283,7 @@ fadd => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fadd%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1922,6 +2292,7 @@ faddp => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. faddp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1930,6 +2301,7 @@ fmul => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fmul%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1938,6 +2310,7 @@ fmulp => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fmulp%XM %x87_binop',,
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1946,6 +2319,7 @@ fsub => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fsub%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1955,6 +2329,7 @@ fsubp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fsubrp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1964,6 +2339,7 @@ fsubr => {
        irn_flags => "R",
        reg_req   => { },
        emit      => '. fsubr%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1974,6 +2350,7 @@ fsubrp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fsubp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1981,6 +2358,7 @@ fprem => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fprem1',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1989,7 +2367,9 @@ fprem => {
 fpremp => {
        rd_constructor => "NONE",
        reg_req   => { },
-       emit      => '. fprem1',
+       emit      => '. fprem1\n'.
+                    '. fstp %X0',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1998,6 +2378,7 @@ fdiv => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fdiv%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2007,6 +2388,7 @@ fdivp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fdivrp%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2015,6 +2397,7 @@ fdivr => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fdivr%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2024,6 +2407,7 @@ fdivrp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fdivp%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2031,6 +2415,7 @@ fabs => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fabs',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2039,6 +2424,7 @@ fchs => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fchs',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2051,6 +2437,7 @@ fld => {
        reg_req   => { },
        emit      => '. fld%XM %AM',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fst => {
@@ -2061,6 +2448,7 @@ fst => {
        emit      => '. fst%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fstp => {
@@ -2071,6 +2459,7 @@ fstp => {
        emit      => '. fstp%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # Conversions
@@ -2079,26 +2468,40 @@ fild => {
        state     => "exc_pinned",
        rd_constructor => "NONE",
        reg_req   => { },
-       emit      => '. fild%M %AM',
+       emit      => '. fild%XM %AM',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fist => {
        state     => "exc_pinned",
        rd_constructor => "NONE",
        reg_req   => { },
-       emit      => '. fist%M %AM',
+       emit      => '. fist%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fistp => {
        state     => "exc_pinned",
        rd_constructor => "NONE",
        reg_req   => { },
-       emit      => '. fistp%M %AM',
+       emit      => '. fistp%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
+},
+
+# SSE3 firsttp instruction
+fisttp => {
+       state     => "exc_pinned",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fisttp%XM %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # constants
@@ -2109,6 +2512,7 @@ fldz => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldz',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fld1 => {
@@ -2117,6 +2521,7 @@ fld1 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fld1',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldpi => {
@@ -2125,6 +2530,7 @@ fldpi => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldpi',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldln2 => {
@@ -2133,6 +2539,7 @@ fldln2 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldln2',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldlg2 => {
@@ -2141,6 +2548,7 @@ fldlg2 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldlg2',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldl2t => {
@@ -2149,6 +2557,7 @@ fldl2t => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldll2t',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldl2e => {
@@ -2157,6 +2566,7 @@ fldl2e => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldl2e',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # fxch, fpush, fpop
@@ -2170,6 +2580,7 @@ fxch => {
        emit      => '. fxch %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 fpush => {
@@ -2179,6 +2590,7 @@ fpush => {
        emit      => '. fld %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 fpushCopy => {
@@ -2186,6 +2598,7 @@ fpushCopy => {
        cmp_attr  => "return 1;",
        emit      => '. fld %X0',
        attr_type => "ia32_x87_attr_t",
+       latency   => 1,
 },
 
 fpop => {
@@ -2195,6 +2608,7 @@ fpop => {
        emit      => '. fstp %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 ffreep => {
@@ -2204,6 +2618,7 @@ ffreep => {
        emit      => '. ffreep %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 emms => {
@@ -2213,6 +2628,7 @@ emms => {
        emit      => '. emms',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 3,
 },
 
 femms => {
@@ -2222,6 +2638,7 @@ femms => {
        emit      => '. femms',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 3,
 },
 
 # compare
@@ -2229,41 +2646,47 @@ femms => {
 FucomFnstsw => {
        reg_req   => { },
        emit      => ". fucom %X1\n".
-                    ". fnstsw",
+                    ". fnstsw %%ax",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 FucompFnstsw => {
        reg_req   => { },
        emit      => ". fucomp %X1\n".
-                    ". fnstsw",
+                    ". fnstsw %%ax",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 FucomppFnstsw => {
        reg_req   => { },
        emit      => ". fucompp\n".
-                    ". fnstsw",
+                    ". fnstsw %%ax",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 Fucomi => {
        reg_req   => { },
        emit      => '. fucomi %X1',
        attr_type => "ia32_x87_attr_t",
+       latency   => 1,
 },
 
 Fucompi => {
        reg_req   => { },
        emit      => '. fucompi %X1',
        attr_type => "ia32_x87_attr_t",
+       latency   => 1,
 },
 
 FtstFnstsw => {
        reg_req   => { },
        emit      => ". ftst\n".
-                    ". fnstsw",
+                    ". fnstsw %%ax",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 
@@ -2286,6 +2709,7 @@ xxLoad => {
        emit      => '. movdqu %D0, %AM',
        outs      => [ "res", "M" ],
        units     => [ "SSE" ],
+       latency   => 1,
 },
 
 xxStore => {
@@ -2295,6 +2719,7 @@ xxStore => {
        ins      => [ "base", "index", "mem", "val" ],
        emit     => '. movdqu %binop',
        units    => [ "SSE" ],
+       latency   => 1,
        mode     => "mode_M",
 },
 
@@ -2307,3 +2732,28 @@ unless ($return = do $my_script_name) {
        warn "couldn't do $my_script_name: $!"    unless defined $return;
        warn "couldn't run $my_script_name"       unless $return;
 }
+
+# Transform some attributes
+foreach my $op (keys(%nodes)) {
+       my $node         = $nodes{$op};
+       my $op_attr_init = $node->{op_attr_init};
+
+       if(defined($op_attr_init)) {
+               $op_attr_init .= "\n\t";
+       } else {
+               $op_attr_init = "";
+       }
+
+       if(!defined($node->{latency})) {
+               if($op =~ m/^l_/) {
+                       $node->{latency} = 0;
+               } else {
+                       die("Latency missing for op $op");
+               }
+       }
+       $op_attr_init .= "attr->latency = ".$node->{latency} . ";";
+
+       $node->{op_attr_init} = $op_attr_init;
+}
+
+print "";