fehler109
[libfirm] / ir / be / ia32 / ia32_spec.pl
index 01cef5c..372c593 100644 (file)
@@ -32,7 +32,6 @@ $arch = "ia32";
 #   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",
 # },
 #
@@ -96,8 +95,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
@@ -217,10 +214,11 @@ $arch = "ia32";
        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);",
+       DAM0  => "${arch}_emit_am_or_dest_register(node, 0);",
        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,13 +232,15 @@ $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";
        }
@@ -279,22 +279,22 @@ 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_attr_t     => "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
        ia32_x87_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);",
        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_immediate_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_immediate_attributes(res, symconst, symconst_sign, offset);",
        ia32_copyb_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_copyb_attributes(res, size);",
        ia32_condcode_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_condcode_attributes(res, pnc);",
 );
 
@@ -370,11 +370,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",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -386,6 +389,7 @@ AddMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => ". add%M %SI3, %AM",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -397,17 +401,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",
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -427,10 +435,11 @@ Mul => {
        # we should not rematrialize this node. It produces 2 results and has
        # very strict constrains
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
+       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" ],
+       outs      => [ "res_low", "res_high", "M" ],
        am        => "source,binary",
        latency   => 10,
        units     => [ "GP" ],
@@ -449,9 +458,12 @@ l_Mul => {
 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" ],
@@ -462,10 +474,11 @@ IMul => {
 IMul1OP => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "gp" ], out => [ "eax", "edx", "none" ] },
+       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" ],
+       outs      => [ "res_low", "res_high", "M" ],
        am        => "source,binary",
        latency   => 5,
        units     => [ "GP" ],
@@ -473,22 +486,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" ],
+       outs      => [ "res", "flags", "M" ],
+       op_modes  => "commutative | am | immediate | mode_neutral",
        am        => "full,binary",
        emit      => '. and%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -500,6 +515,7 @@ AndMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. and%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -511,6 +527,7 @@ AndMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. and%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -518,11 +535,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" ],
+       outs      => [ "res", "flags", "M" ],
        am        => "full,binary",
        emit      => '. or%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -534,6 +554,7 @@ OrMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. or%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -545,6 +566,7 @@ OrMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. or%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -552,11 +574,14 @@ 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" ],
+       outs      => [ "res", "flags", "M" ],
        am        => "full,binary",
        emit      => '. xor%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -568,6 +593,7 @@ XorMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. xor%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -579,6 +605,7 @@ XorMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. xor%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -588,11 +615,14 @@ XorMem8Bit => {
 Sub => {
        irn_flags => "R",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ], out => [ "in_r4", "none", "flags" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r4", "flags", "none" ] },
        ins       => [ "base", "index", "mem", "left", "right" ],
+       outs      => [ "res", "flags", "M" ],
        am        => "full,binary",
        emit      => '. sub%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -604,6 +634,7 @@ SubMem => {
        ins       => [ "base", "index", "mem", "val" ],
        emit      => '. sub%M %SI3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => 'mode_M',
        modified_flags => $status_flags
 },
@@ -615,17 +646,21 @@ SubMem8Bit => {
        ins       => [ "base", "index", "mem", "val" ],
        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" ] },
+       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" ],
        am        => "full,binary",
        emit      => '. sbb%M %binop',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -643,9 +678,10 @@ l_Sbb => {
 IDiv => {
        op_flags  => "F|L",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ], out => [ "eax", "edx", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ],
+                      out => [ "eax", "flags", "none", "edx", "none" ] },
        ins       => [ "base", "index", "mem", "left_low", "left_high", "right" ],
-       outs      => [ "div_res", "mod_res", "M" ],
+       outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
        am        => "source,ternary",
        emit      => ". idiv%M %unop5",
        latency   => 25,
@@ -656,9 +692,10 @@ IDiv => {
 Div => {
        op_flags  => "F|L",
        state     => "exc_pinned",
-       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ], out => [ "eax", "edx", "none" ] },
+       reg_req   => { in => [ "gp", "gp", "none", "eax", "edx", "gp" ],
+                      out => [ "eax", "flags", "none", "edx", "none" ] },
        ins       => [ "base", "index", "mem", "left_low", "left_high", "right" ],
-       outs      => [ "div_res", "mod_res", "M" ],
+       outs      => [ "div_res", "flags", "M", "mod_res", "X_exc" ],
        am        => "source,ternary",
        emit      => ". div%M %unop5",
        latency   => 25,
@@ -668,10 +705,13 @@ Div => {
 
 Shl => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
-       ins       => [ "left", "right" ],
+       reg_req   => { in => [ "gp", "ecx" ],
+                      out => [ "in_r1 !in_r2", "flags" ] },
+       ins       => [ "val", "count" ],
+       outs      => [ "res", "flags" ],
        emit      => '. shl %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -683,23 +723,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,
@@ -708,16 +749,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" ],
+       outs      => [ "res", "flags" ],
        emit      => '. shr %SB1, %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
+       latency   => 1,
        modified_flags => $status_flags
 },
 
@@ -729,35 +774,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,
@@ -766,15 +799,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" ],
+       outs      => [ "res", "flags" ],
        emit      => '. sar %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -786,22 +823,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" ],
+       outs      => [ "res", "flags" ],
        emit      => '. ror %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -813,16 +854,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" ],
+       outs      => [ "res", "flags" ],
        emit      => '. rol %SB1, %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -834,6 +879,7 @@ RolMem => {
        ins       => [ "base", "index", "mem", "count" ],
        emit      => '. rol%M %SB3, %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -842,10 +888,13 @@ RolMem => {
 
 Neg => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
        emit      => '. neg %S0',
        ins       => [ "val" ],
+       outs      => [ "res", "flags" ],
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
        modified_flags => $status_flags
 },
@@ -857,6 +906,7 @@ NegMem => {
        ins       => [ "base", "index", "mem" ],
        emit      => '. neg%M %AM',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => "mode_M",
        modified_flags => $status_flags
 },
@@ -866,21 +916,20 @@ Minus64Bit => {
        reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "gp" ] },
        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" ] },
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
+       outs      => [ "res", "flags" ],
        emit      => '. inc %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
+       latency   => 1,
        modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
@@ -892,15 +941,19 @@ IncMem => {
        emit      => '. inc%M %AM',
        units     => [ "GP" ],
        mode      => "mode_M",
+       latency   => 1,
        modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
 Dec => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
+       outs      => [ "res", "flags" ],
        emit      => '. dec %S0',
        units     => [ "GP" ],
        mode      => $mode_gp,
+       latency   => 1,
        modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
@@ -912,16 +965,21 @@ DecMem => {
        emit      => '. dec%M %AM',
        units     => [ "GP" ],
        mode      => "mode_M",
+       latency   => 1,
        modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
 },
 
 Not => {
        irn_flags => "R",
-       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       reg_req   => { in => [ "gp" ],
+                      out => [ "in_r1", "flags" ] },
        ins       => [ "val" ],
+       outs      => [ "res", "flags" ],
        emit      => '. not %S0',
        units     => [ "GP" ],
+       latency   => 1,
        mode      => $mode_gp,
+       # no flags modified
 },
 
 NotMem => {
@@ -931,7 +989,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
@@ -1018,6 +1096,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
@@ -1065,6 +1158,7 @@ IJmp => {
        ins       => [ "base", "index", "mem", "target" ],
        am        => "source,unary",
        emit      => '. jmp *%unop3',
+       latency   => 1,
        units     => [ "BRANCH" ],
        mode      => "mode_X",
 },
@@ -1076,9 +1170,8 @@ 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
 },
 
 Unknown_GP => {
@@ -1088,6 +1181,7 @@ Unknown_GP => {
        reg_req   => { out => [ "gp_UKNWN" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => $mode_gp
 },
 
@@ -1099,6 +1193,7 @@ Unknown_VFP => {
        units     => [],
        emit      => "",
        mode      => "mode_E",
+       latency   => 0,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1109,6 +1204,7 @@ Unknown_XMM => {
        reg_req   => { out => [ "xmm_UKNWN" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => "mode_E"
 },
 
@@ -1119,6 +1215,7 @@ NoReg_GP => {
        reg_req   => { out => [ "gp_NOREG" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => $mode_gp
 },
 
@@ -1130,6 +1227,7 @@ NoReg_VFP => {
        units     => [],
        emit      => "",
        mode      => "mode_E",
+       latency   => 0,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1140,6 +1238,7 @@ NoReg_XMM => {
        reg_req   => { out => [ "xmm_NOREG" ] },
        units     => [],
        emit      => "",
+       latency   => 0,
        mode      => "mode_E"
 },
 
@@ -1177,11 +1276,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" ],
        emit      => '. cltd',
+       latency   => 1,
        mode      => $mode_gp,
        units     => [ "GP" ],
 },
@@ -1194,9 +1304,9 @@ 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" ],
@@ -1220,8 +1330,9 @@ l_Store => {
 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" ],
@@ -1231,8 +1342,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" ],
@@ -1265,9 +1377,9 @@ Push => {
 
 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 => [ "gp", "gp", "none", "esp" ], out => [ "gp", "none", "none", "esp" ] },
+       emit      => '. pop%M %DAM0',
+       outs      => [ "res", "M", "unused", "stack:I|S" ],
        ins       => [ "base", "index", "mem", "stack" ],
        am        => "dest,unary",
        latency   => 3, # Pop is more expensive than Push on Athlon
@@ -1297,6 +1409,7 @@ AddSP => {
        ins       => [ "base", "index", "mem", "stack", "size" ],
        am        => "source,binary",
        emit      => '. addl %binop',
+       latency   => 1,
        outs      => [ "stack:S", "M" ],
        units     => [ "GP" ],
        modified_flags => $status_flags
@@ -1310,6 +1423,7 @@ SubSP => {
        am        => "source,binary",
        emit      => ". subl %binop\n".
                     ". movl %%esp, %D1",
+       latency   => 2,
        outs      => [ "stack:I|S", "addr", "M" ],
        units     => [ "GP" ],
        modified_flags => $status_flags
@@ -1319,6 +1433,7 @@ LdTls => {
        irn_flags => "R",
        reg_req   => { out => [ "gp" ] },
        units     => [ "GP" ],
+       latency   => 1,
 },
 
 
@@ -1409,6 +1524,7 @@ xOr => {
        ins       => [ "base", "index", "mem", "left", "right" ],
        am        => "source,binary",
        emit      => '. orp%XSD %binop',
+       latency   => 3,
        units     => [ "SSE" ],
        mode      => "mode_E",
 },
@@ -1486,12 +1602,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" ],
 },
@@ -1499,8 +1615,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" ],
@@ -1543,16 +1660,17 @@ 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
@@ -1565,6 +1683,7 @@ CopyB => {
        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" ]
 },
@@ -1577,6 +1696,7 @@ CopyB_i => {
        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" ]
 },
@@ -1589,6 +1709,7 @@ Conv_I2I => {
        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,
@@ -1600,6 +1721,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,
@@ -1734,9 +1856,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,
@@ -1748,8 +1870,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,
@@ -1908,6 +2031,7 @@ Sahf => {
        ins       => [ "val" ],
        outs      => [ "flags" ],
        emit      => '. sahf',
+       latency   => 1,
        units     => [ "GP" ],
        mode      => $mode_flags,
 },
@@ -1928,6 +2052,7 @@ fadd => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fadd%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1936,6 +2061,7 @@ faddp => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. faddp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1944,6 +2070,7 @@ fmul => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fmul%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1952,6 +2079,7 @@ fmulp => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fmulp%XM %x87_binop',,
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1960,6 +2088,7 @@ fsub => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fsub%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1969,6 +2098,7 @@ fsubp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fsubrp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1978,6 +2108,7 @@ fsubr => {
        irn_flags => "R",
        reg_req   => { },
        emit      => '. fsubr%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1988,6 +2119,7 @@ fsubrp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fsubp%XM %x87_binop',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -1995,6 +2127,7 @@ fprem => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fprem1',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2003,7 +2136,9 @@ fprem => {
 fpremp => {
        rd_constructor => "NONE",
        reg_req   => { },
-       emit      => '. fprem1',
+       emit      => '. fprem1\n'.
+                    '. fstp %X0',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2012,6 +2147,7 @@ fdiv => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fdiv%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2021,6 +2157,7 @@ fdivp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fdivrp%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2029,6 +2166,7 @@ fdivr => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fdivr%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2038,6 +2176,7 @@ fdivrp => {
        reg_req   => { },
 # see note about gas bugs
        emit      => '. fdivp%XM %x87_binop',
+       latency   => 20,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2045,6 +2184,7 @@ fabs => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fabs',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2053,6 +2193,7 @@ fchs => {
        rd_constructor => "NONE",
        reg_req   => { },
        emit      => '. fchs',
+       latency   => 4,
        attr_type => "ia32_x87_attr_t",
 },
 
@@ -2065,6 +2206,7 @@ fld => {
        reg_req   => { },
        emit      => '. fld%XM %AM',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fst => {
@@ -2075,6 +2217,7 @@ fst => {
        emit      => '. fst%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fstp => {
@@ -2085,6 +2228,7 @@ fstp => {
        emit      => '. fstp%XM %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # Conversions
@@ -2095,6 +2239,7 @@ fild => {
        reg_req   => { },
        emit      => '. fild%M %AM',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fist => {
@@ -2104,6 +2249,7 @@ fist => {
        emit      => '. fist%M %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fistp => {
@@ -2113,6 +2259,7 @@ fistp => {
        emit      => '. fistp%M %AM',
        mode      => "mode_M",
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # constants
@@ -2123,6 +2270,7 @@ fldz => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldz',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fld1 => {
@@ -2131,6 +2279,7 @@ fld1 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fld1',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldpi => {
@@ -2139,6 +2288,7 @@ fldpi => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldpi',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldln2 => {
@@ -2147,6 +2297,7 @@ fldln2 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldln2',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldlg2 => {
@@ -2155,6 +2306,7 @@ fldlg2 => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldlg2',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldl2t => {
@@ -2163,6 +2315,7 @@ fldl2t => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldll2t',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 fldl2e => {
@@ -2171,6 +2324,7 @@ fldl2e => {
        reg_req   => { out => [ "vfp" ] },
        emit      => '. fldl2e',
        attr_type => "ia32_x87_attr_t",
+       latency   => 2,
 },
 
 # fxch, fpush, fpop
@@ -2184,6 +2338,7 @@ fxch => {
        emit      => '. fxch %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 fpush => {
@@ -2193,6 +2348,7 @@ fpush => {
        emit      => '. fld %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 fpushCopy => {
@@ -2200,6 +2356,7 @@ fpushCopy => {
        cmp_attr  => "return 1;",
        emit      => '. fld %X0',
        attr_type => "ia32_x87_attr_t",
+       latency   => 1,
 },
 
 fpop => {
@@ -2209,6 +2366,7 @@ fpop => {
        emit      => '. fstp %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 ffreep => {
@@ -2218,6 +2376,7 @@ ffreep => {
        emit      => '. ffreep %X0',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 1,
 },
 
 emms => {
@@ -2227,6 +2386,7 @@ emms => {
        emit      => '. emms',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 3,
 },
 
 femms => {
@@ -2236,6 +2396,7 @@ femms => {
        emit      => '. femms',
        attr_type => "ia32_x87_attr_t",
        mode      => "mode_ANY",
+       latency   => 3,
 },
 
 # compare
@@ -2243,41 +2404,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,
 },
 
 
@@ -2300,6 +2467,7 @@ xxLoad => {
        emit      => '. movdqu %D0, %AM',
        outs      => [ "res", "M" ],
        units     => [ "SSE" ],
+       latency   => 1,
 },
 
 xxStore => {
@@ -2309,6 +2477,7 @@ xxStore => {
        ins      => [ "base", "index", "mem", "val" ],
        emit     => '. movdqu %binop',
        units    => [ "SSE" ],
+       latency   => 1,
        mode     => "mode_M",
 },
 
@@ -2321,3 +2490,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 "";