Add magic for better code emission of 64bit minus.
[libfirm] / ir / be / ia32 / ia32_spec.pl
index 252f51e..e33debb 100644 (file)
@@ -2,14 +2,13 @@
 # $Id$
 # This is the specification for the ia32 assembler Firm-operations
 
-# the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
-$arch = "ia32";
+use File::Basename;
 
-# this string marks the beginning of a comment in emit
-$comment_string = "/*";
+$new_emit_syntax = 1;
+my $myname = $0;
 
-# the number of additional opcodes you want to register
-#$additional_opcodes = 0;
+# the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
+$arch = "ia32";
 
 # The node description is done as a perl hash initializer with the
 # following structure:
@@ -17,23 +16,24 @@ $comment_string = "/*";
 # %nodes = (
 #
 # <op-name> => {
-#   "op_flags"  => "N|L|C|X|I|F|Y|H|c|K",
-#   "irn_flags" => "R|N|I|S"
-#   "arity"     => "0|1|2|3 ... |variable|dynamic|any",
-#   "state"     => "floats|pinned|mem_pinned|exc_pinned",
-#   "args"      => [
-#                    { "type" => "type 1", "name" => "name 1" },
-#                    { "type" => "type 2", "name" => "name 2" },
+#   op_flags  => "N|L|C|X|I|F|Y|H|c|K",
+#   irn_flags => "R|N|I|S"
+#   arity     => "0|1|2|3 ... |variable|dynamic|any",
+#   state     => "floats|pinned|mem_pinned|exc_pinned",
+#   args      => [
+#                    { type => "type 1", name => "name 1" },
+#                    { type => "type 2", name => "name 2" },
 #                    ...
 #                  ],
-#   "comment"   => "any comment for constructor",
-#   "reg_req"   => { "in" => [ "reg_class|register" ], "out" => [ "reg_class|register|in_rX" ] },
-#   "cmp_attr"  => "c source code for comparing node attributes",
-#   "emit"      => "emit code with templates",
-#   "attr"      => "attitional attribute arguments for constructor"
-#   "init_attr" => "emit attribute initialization template"
-#   "rd_constructor" => "c source code which constructs an ir_node"
-#   "latency"   => "latency of this operation (can be float)"
+#   comment   => "any comment for constructor",
+#   reg_req   => { in => [ "reg_class|register" ], out => [ "reg_class|register|in_rX" ] },
+#   cmp_attr  => "c source code for comparing node attributes",
+#   emit      => "emit code with templates",
+#   attr      => "attitional attribute arguments for constructor"
+#   init_attr => "emit attribute initialization template"
+#   rd_constructor => "c source code which constructs an ir_node"
+#   latency   => "latency of this operation (can be float)"
+#   attr_type => "name of the attribute struct",
 # },
 #
 # ... # (all nodes you need to describe)
@@ -106,82 +106,188 @@ $comment_string = "/*";
 #   4 - ignore (do not assign this register)
 #   8 - emitter can choose an arbitrary register of this class
 #  16 - the register is a virtual one
+#  32 - register represents a state
 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
 %reg_classes = (
-  "gp" => [
-            { "name" => "eax", "type" => 1 },
-            { "name" => "edx", "type" => 1 },
-            { "name" => "ebx", "type" => 2 },
-            { "name" => "ecx", "type" => 1 },
-            { "name" => "esi", "type" => 2 },
-            { "name" => "edi", "type" => 2 },
-#            { "name" => "r11", "type" => 1 },
-#            { "name" => "r12", "type" => 1 },
-#            { "name" => "r13", "type" => 1 },
-#            { "name" => "r14", "type" => 1 },
-#            { "name" => "r15", "type" => 1 },
-#            { "name" => "r16", "type" => 1 },
-#            { "name" => "r17", "type" => 1 },
-#            { "name" => "r18", "type" => 1 },
-#            { "name" => "r19", "type" => 1 },
-#            { "name" => "r20", "type" => 1 },
-#            { "name" => "r21", "type" => 1 },
-#            { "name" => "r22", "type" => 1 },
-#            { "name" => "r23", "type" => 1 },
-#            { "name" => "r24", "type" => 1 },
-#            { "name" => "r25", "type" => 1 },
-#            { "name" => "r26", "type" => 1 },
-#            { "name" => "r27", "type" => 1 },
-#            { "name" => "r28", "type" => 1 },
-#            { "name" => "r29", "type" => 1 },
-#            { "name" => "r30", "type" => 1 },
-#            { "name" => "r31", "type" => 1 },
-#            { "name" => "r32", "type" => 1 },
-            { "name" => "ebp", "type" => 2 },
-            { "name" => "esp", "type" => 4 },
-            { "name" => "gp_NOREG", "type" => 2 | 4 | 16 },     # we need a dummy register for NoReg nodes
-            { "name" => "gp_UKNWN", "type" => 2 | 4 | 8 | 16},  # we need a dummy register for Unknown nodes
-                       { "mode" => "mode_P" }
-          ],
-  "xmm" => [
-            { "name" => "xmm0", "type" => 1 },
-            { "name" => "xmm1", "type" => 1 },
-            { "name" => "xmm2", "type" => 1 },
-            { "name" => "xmm3", "type" => 1 },
-            { "name" => "xmm4", "type" => 1 },
-            { "name" => "xmm5", "type" => 1 },
-            { "name" => "xmm6", "type" => 1 },
-            { "name" => "xmm7", "type" => 1 },
-            { "name" => "xmm_NOREG", "type" => 2 | 4 | 16 },     # we need a dummy register for NoReg nodes
-            { "name" => "xmm_UKNWN", "type" => 2 | 4 | 8 | 16},  # we need a dummy register for Unknown nodes
-                       { "mode" => "mode_D" }
-          ],
-  "vfp" => [
-            { "name" => "vf0", "type" => 1 | 16 },
-            { "name" => "vf1", "type" => 1 | 16 },
-            { "name" => "vf2", "type" => 1 | 16 },
-            { "name" => "vf3", "type" => 1 | 16 },
-            { "name" => "vf4", "type" => 1 | 16 },
-            { "name" => "vf5", "type" => 1 | 16 },
-            { "name" => "vf6", "type" => 1 | 16 },
-            { "name" => "vf7", "type" => 1 | 16 },
-            { "name" => "vfp_NOREG", "type" => 2 | 4 | 16 },     # we need a dummy register for NoReg nodes
-            { "name" => "vfp_UKNWN", "type" => 2 | 4 | 8 | 16},  # we need a dummy register for Unknown nodes
-                       { "mode" => "mode_E" }
-          ],
-  "st" => [
-            { "name" => "st0", "type" => 1 },
-            { "name" => "st1", "type" => 1 },
-            { "name" => "st2", "type" => 1 },
-            { "name" => "st3", "type" => 1 },
-            { "name" => "st4", "type" => 1 },
-            { "name" => "st5", "type" => 1 },
-            { "name" => "st6", "type" => 1 },
-            { "name" => "st7", "type" => 1 },
-                       { "mode" => "mode_E" }
-          ]
+       gp => [
+               { name => "eax", type => 1 },
+               { name => "edx", type => 1 },
+               { name => "ebx", type => 2 },
+               { name => "ecx", type => 1 },
+               { name => "esi", type => 2 },
+               { name => "edi", type => 2 },
+               { name => "ebp", type => 2 },
+               { name => "esp", type => 4 },
+               { name => "gp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
+               { name => "gp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
+               { mode => "mode_Iu" }
+       ],
+       mmx => [
+               { name => "mm0", type => 4 },
+               { name => "mm1", type => 4 },
+               { name => "mm2", type => 4 },
+               { name => "mm3", type => 4 },
+               { name => "mm4", type => 4 },
+               { name => "mm5", type => 4 },
+               { name => "mm6", type => 4 },
+               { name => "mm7", type => 4 },
+               { mode => "mode_E" }
+       ],
+       xmm => [
+               { name => "xmm0", type => 1 },
+               { name => "xmm1", type => 1 },
+               { name => "xmm2", type => 1 },
+               { name => "xmm3", type => 1 },
+               { name => "xmm4", type => 1 },
+               { name => "xmm5", type => 1 },
+               { name => "xmm6", type => 1 },
+               { name => "xmm7", type => 1 },
+               { name => "xmm_NOREG", type => 4 | 16 },     # we need a dummy register for NoReg nodes
+               { name => "xmm_UKNWN", type => 4 | 8 | 16},  # we need a dummy register for Unknown nodes
+               { mode => "mode_E" }
+       ],
+       vfp => [
+               { name => "vf0", type => 1 | 16 },
+               { name => "vf1", type => 1 | 16 },
+               { name => "vf2", type => 1 | 16 },
+               { name => "vf3", type => 1 | 16 },
+               { name => "vf4", type => 1 | 16 },
+               { name => "vf5", type => 1 | 16 },
+               { name => "vf6", type => 1 | 16 },
+               { name => "vf7", type => 1 | 16 },
+               { name => "vfp_NOREG", type => 4 | 8 | 16 }, # we need a dummy register for NoReg nodes
+               { name => "vfp_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
+               { mode => "mode_E" }
+       ],
+       st => [
+               { name => "st0", realname => "st",    type => 4 },
+               { name => "st1", realname => "st(1)", type => 4 },
+               { name => "st2", realname => "st(2)", type => 4 },
+               { name => "st3", realname => "st(3)", type => 4 },
+               { name => "st4", realname => "st(4)", type => 4 },
+               { name => "st5", realname => "st(5)", type => 4 },
+               { name => "st6", realname => "st(6)", type => 4 },
+               { name => "st7", realname => "st(7)", type => 4 },
+               { mode => "mode_E" }
+       ],
+       fp_cw => [      # the floating point control word
+               { name => "fpcw", type => 4 | 32},
+               { mode => "mode_fpcw" }
+       ],
+       flags => [
+               { name => "eflags", type => 4 },
+               { mode => "mode_Iu" }
+       ],
+       fp_sw => [
+               { name => "fpsw", type => 4 },
+               { mode => "mode_Hu" }
+       ],
 ); # %reg_classes
 
+%flags = (
+       CF  => { reg => "eflags", bit => 0 },
+       PF  => { reg => "eflags", bit => 2 },
+       AF  => { reg => "eflags", bit => 4 },
+       ZF  => { reg => "eflags", bit => 6 },
+       SF  => { reg => "eflags", bit => 7 },
+       TF  => { reg => "eflags", bit => 8 },
+       IF  => { reg => "eflags", bit => 9 },
+       DF  => { reg => "eflags", bit => 10 },
+       OF  => { reg => "eflags", bit => 11 },
+       IOPL0 => { reg => "eflags", bit => 12 },
+       IOPL1 => { reg => "eflags", bit => 13 },
+       NT  => { reg => "eflags", bit => 14 },
+       RF  => { reg => "eflags", bit => 16 },
+       VM  => { reg => "eflags", bit => 17 },
+       AC  => { reg => "eflags", bit => 18 },
+       VIF => { reg => "eflags", bit => 19 },
+       VIP => { reg => "eflags", bit => 20 },
+       ID  => { reg => "eflags", bit => 21 },
+
+       FP_IE => { reg => "fpsw", bit => 0 },
+       FP_DE => { reg => "fpsw", bit => 1 },
+       FP_ZE => { reg => "fpsw", bit => 2 },
+       FP_OE => { reg => "fpsw", bit => 3 },
+       FP_UE => { reg => "fpsw", bit => 4 },
+       FP_PE => { reg => "fpsw", bit => 5 },
+       FP_SF => { reg => "fpsw", bit => 6 },
+       FP_ES => { reg => "fpsw", bit => 7 },
+       FP_C0 => { reg => "fpsw", bit => 8 },
+       FP_C1 => { reg => "fpsw", bit => 9 },
+       FP_C2 => { reg => "fpsw", bit => 10 },
+       FP_TOP0 => { reg => "fpsw", bit => 11 },
+       FP_TOP1 => { reg => "fpsw", bit => 12 },
+       FP_TOP2 => { reg => "fpsw", bit => 13 },
+       FP_C3 => { reg => "fpsw", bit => 14 },
+       FP_B  => { reg => "fpsw", bit => 15 },
+
+       FP_IM => { reg => "fpcw", bit => 0 },
+       FP_DM => { reg => "fpcw", bit => 1 },
+       FP_ZM => { reg => "fpcw", bit => 2 },
+       FP_OM => { reg => "fpcw", bit => 3 },
+       FP_UM => { reg => "fpcw", bit => 4 },
+       FP_PM => { reg => "fpcw", bit => 5 },
+       FP_PC0 => { reg => "fpcw", bit => 8 },
+       FP_PC1 => { reg => "fpcw", bit => 9 },
+       FP_RC0 => { reg => "fpcw", bit => 10 },
+       FP_RC1 => { reg => "fpcw", bit => 11 },
+       FP_X  => { reg => "fpcw", bit => 12 }
+); # %flags
+
+%cpu = (
+       GP     => [ 1, "GP_EAX", "GP_EBX", "GP_ECX", "GP_EDX", "GP_ESI", "GP_EDI", "GP_EBP" ],
+       SSE    => [ 1, "SSE_XMM0", "SSE_XMM1", "SSE_XMM2", "SSE_XMM3", "SSE_XMM4", "SSE_XMM5", "SSE_XMM6", "SSE_XMM7" ],
+       VFP    => [ 1, "VFP_VF0", "VFP_VF1", "VFP_VF2", "VFP_VF3", "VFP_VF4", "VFP_VF5", "VFP_VF6", "VFP_VF7" ],
+       BRANCH => [ 1, "BRANCH1", "BRANCH2" ],
+); # %cpu
+
+%vliw = (
+       bundle_size       => 1,
+       bundels_per_cycle => 1
+); # vliw
+
+%emit_templates = (
+       S0 => "${arch}_emit_source_register(env, node, 0);",
+       S1 => "${arch}_emit_source_register(env, node, 1);",
+       S2 => "${arch}_emit_source_register(env, node, 2);",
+       S3 => "${arch}_emit_source_register(env, node, 3);",
+       S4 => "${arch}_emit_source_register(env, node, 4);",
+       S5 => "${arch}_emit_source_register(env, node, 5);",
+       SB1 => "${arch}_emit_8bit_source_register(env, node, 1);",
+       SB2 => "${arch}_emit_8bit_source_register(env, node, 2);",
+       SW0 => "${arch}_emit_16bit_source_register(env, node, 0);",
+       SI0 => "${arch}_emit_source_register_or_immediate(env, node, 0);",
+       SI1 => "${arch}_emit_source_register_or_immediate(env, node, 1);",
+       SI2 => "${arch}_emit_source_register_or_immediate(env, node, 2);",
+       SI3 => "${arch}_emit_source_register_or_immediate(env, node, 3);",
+       D0 => "${arch}_emit_dest_register(env, node, 0);",
+       D1 => "${arch}_emit_dest_register(env, node, 1);",
+       D2 => "${arch}_emit_dest_register(env, node, 2);",
+       D3 => "${arch}_emit_dest_register(env, node, 3);",
+       D4 => "${arch}_emit_dest_register(env, node, 4);",
+       D5 => "${arch}_emit_dest_register(env, node, 5);",
+       X0 => "${arch}_emit_x87_name(env, node, 0);",
+       X1 => "${arch}_emit_x87_name(env, node, 1);",
+       X2 => "${arch}_emit_x87_name(env, node, 2);",
+       SE => "${arch}_emit_extend_suffix(env, get_ia32_ls_mode(node));",
+       ME => "if(get_mode_size_bits(get_ia32_ls_mode(node)) != 32)\n
+                  ia32_emit_mode_suffix(env, node);",
+       M  => "${arch}_emit_mode_suffix(env, node);",
+       XM => "${arch}_emit_x87_mode_suffix(env, node);",
+       XXM => "${arch}_emit_xmm_mode_suffix(env, node);",
+       XSD => "${arch}_emit_xmm_mode_suffix_s(env, node);",
+       AM => "${arch}_emit_am(env, node);",
+       unop0 => "${arch}_emit_unop(env, node, 0);",
+       unop1 => "${arch}_emit_unop(env, node, 1);",
+       unop2 => "${arch}_emit_unop(env, node, 2);",
+       unop3 => "${arch}_emit_unop(env, node, 3);",
+       unop4 => "${arch}_emit_unop(env, node, 4);",
+       DAM0  => "${arch}_emit_am_or_dest_register(env, node, 0);",
+       DAM1  => "${arch}_emit_am_or_dest_register(env, node, 0);",
+       binop => "${arch}_emit_binop(env, node);",
+       x87_binop => "${arch}_emit_x87_binop(env, node);",
+);
+
 #--------------------------------------------------#
 #                        _                         #
 #                       (_)                        #
@@ -193,11 +299,72 @@ $comment_string = "/*";
 #                                      |_|         #
 #--------------------------------------------------#
 
+$default_attr_type = "ia32_attr_t";
+$default_copy_attr = "ia32_copy_attr";
+
+%init_attr = (
+       ia32_attr_t     => "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);",
+       ia32_x87_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_x87_attributes(res);",
+       ia32_asm_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_x87_attributes(res);".
+               "\tinit_ia32_asm_attributes(res);",
+       ia32_immediate_attr_t =>
+               "\tinit_ia32_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res, latency);\n".
+               "\tinit_ia32_immediate_attributes(res, symconst, symconst_sign, offset);"
+);
+
+%compare_attr = (
+       ia32_attr_t           => "ia32_compare_nodes_attr",
+       ia32_x87_attr_t       => "ia32_compare_x87_attr",
+       ia32_asm_attr_t       => "ia32_compare_asm_attr",
+       ia32_immediate_attr_t => "ia32_compare_immediate_attr",
+);
+
 %operands = (
 );
 
+$mode_xmm     = "mode_E";
+$mode_gp      = "mode_Iu";
+$mode_fpcw    = "mode_fpcw";
+$status_flags = [ "CF", "PF", "AF", "ZF", "SF", "OF" ];
+$fpcw_flags   = [ "FP_IM", "FP_DM", "FP_ZM", "FP_OM", "FP_UM", "FP_PM",
+                  "FP_PC0", "FP_PC1", "FP_RC0", "FP_RC1", "FP_X" ];
+
 %nodes = (
 
+Immediate => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_NOREG" ] },
+       attr      => "ir_entity *symconst, int symconst_sign, long offset",
+       attr_type => "ia32_immediate_attr_t",
+       latency   => 0,
+       mode      => $mode_gp,
+},
+
+Asm => {
+       mode      => "mode_T",
+       arity     => "variable",
+       out_arity => "variable",
+       attr_type => "ia32_asm_attr_t",
+       latency   => 100,
+},
+
+ProduceVal => {
+       op_flags  => "c",
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       emit      => "",
+       units     => [ ],
+       latency   => 0,
+       mode      => $mode_gp,
+       cmp_attr  => "return 1;",
+},
+
 #-----------------------------------------------------------------#
 #  _       _                                         _            #
 # (_)     | |                                       | |           #
@@ -219,622 +386,905 @@ $comment_string = "/*";
 # 4 - op2     r4 == NoReg in case of immediate operation
 # 5 - mem     NoMem in case of no AM otherwise it takes the mem from the Load
 
-"Add" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Add: Add(a, b) = Add(b, a) = a + b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. add %ia32_emit_binop /* Add(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"AddC" => {
-  "comment"   => "construct Add with Carry: AddC(a, b) = Add(b, a) = a + b + carry",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. adc %ia32_emit_binop /* AddC(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Add64Bit" => {
-  "irn_flags" => "R",
-  "comment"   => "construct 64Bit Add: Add(a_l, a_h, b_l, b_h) = a_l + b_l; a_h + b_h + carry",
-  "arity"     => 4,
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp" ], "out" => [ "!in", "!in" ] },
-  "emit"      => '
-. mov %D1, %S1 /* mov a_l into assigned l_res register */
-. mov %D2, %S2 /* mov a_h into assigned h_res register */
-. add %D1, %S3 /* a_l + b_l */
-. adc %D2, %S4 /* a_h + b_h + carry */
-',
-  "outs"      => [ "low_res", "high_res" ],
-},
-
-"l_Add" => {
-  "op_flags"  => "C",
-  "irn_flags" => "R",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Add: Add(a, b) = Add(b, a) = a + b",
-  "arity"     => 2,
-},
-
-"l_AddC" => {
-  "op_flags"  => "C",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Add with Carry: AddC(a, b) = Add(b, a) = a + b + carry",
-  "arity"     => 2,
-},
-
-"MulS" => {
-  # we should not rematrialize this node. It produces 2 results and has
-  # very strict constrains
-  "comment"   => "construct MulS: MulS(a, b) = MulS(b, a) = a * b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "eax", "gp", "none" ], "out" => [ "eax", "edx" ] },
-  "emit"      => '. mul %ia32_emit_unop /* Mul(%A1, %A2) -> %D1 */',
-  "outs"      => [ "EAX", "EDX", "M" ],
-  "latency"   => 10,
-},
-
-"l_MulS" => {
-  # we should not rematrialize this node. It produces 2 results and has
-  # very strict constrains
-  "op_flags"  => "C",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered MulS: MulS(a, b) = MulS(b, a) = a * b",
-  "outs"      => [ "EAX", "EDX", "M" ],
-  "arity"     => 2
-},
-
-"Mul" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. imul %ia32_emit_binop /* Mul(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 5,
-},
-
-"l_Mul" => {
-  "op_flags"  => "C",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "arity"     => 2
-},
-
-# Mulh is an exception from the 4 INs with AM because the target is always EAX:EDX
-"Mulh" => {
-  # we should not rematrialize this node. It produces 2 results and has
-  # very strict constrains
-  "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "eax", "gp", "none" ], "out" => [ "eax", "edx" ] },
-  "emit"      => '. imul %ia32_emit_unop /* Mulh(%A1, %A2) -> %D1 */',
-  "outs"      => [ "EAX", "EDX", "M" ],
-  "latency"   => 5,
-},
-
-"And" => {
-  "irn_flags" => "R",
-  "comment"   => "construct And: And(a, b) = And(b, a) = a AND b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. and %ia32_emit_binop /* And(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Or" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. or %ia32_emit_binop /* Or(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Eor" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. xor %ia32_emit_binop /* Xor(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"l_Eor" => {
-  "op_flags"  => "C",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Eor: Eor(a, b) = Eor(b, a) = a EOR b",
-  "arity"     => 2
-},
-
-"Max" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Max: Max(a, b) = Max(b, a) = a > b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
-  "emit"      =>
-'2. cmp %S1, %S2 /* prepare Max (%S1 - %S2), (%A1, %A2) */
-  if (mode_is_signed(get_irn_mode(n))) {
-4.  cmovl %D1, %S2 /* %S1 is less %S2 */
-  }
-  else {
-4.  cmovb %D1, %S2 /* %S1 is below %S2 */
-  }
-',
-  "latency"   => 2,
-},
-
-"Min" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Min: Min(a, b) = Min(b, a) = a < b ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
-  "emit"      =>
-'2. cmp %S1, %S2 /* prepare Min (%S1 - %S2), (%A1, %A2) */
-  if (mode_is_signed(get_irn_mode(n))) {
-2.  cmovg %D1, %S2 /* %S1 is greater %S2 */
-  }
-  else {
-2.  cmova %D1, %S2, %D1 /* %S1 is above %S2 */
-  }
+Add => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       emit      => '. add%M %binop',
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+AddMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       emit      => ". add%M %SI2, %AM",
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Adc => {
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       emit      => '. adc%M %binop',
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Add64Bit => {
+       irn_flags => "R",
+       arity     => 4,
+       reg_req   => { in => [ "gp", "gp", "gp", "gp" ], out => [ "!in", "!in" ] },
+       emit      => '
+. movl %S0, %D0
+. movl %S1, %D1
+. addl %SI2, %D0
+. adcl %SI3, %D1
 ',
-  "latency"   => 2,
+       outs      => [ "low_res", "high_res" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_Add => {
+       op_flags  => "C",
+       irn_flags => "R",
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+l_Adc => {
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+Mul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       reg_req   => { in => [ "gp", "gp", "eax", "gp", "none" ], out => [ "eax", "edx", "none" ] },
+       emit      => '. mul%M %unop3',
+       outs      => [ "EAX", "EDX", "M" ],
+       ins       => [ "base", "index", "val_high", "val_low", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 10,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_Mul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       outs      => [ "EAX", "EDX", "M" ],
+       arity     => 2
+},
+
+IMul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       emit      => '. imul%M %binop',
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 5,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+IMul1OP => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "eax", "gp", "none" ], out => [ "eax", "edx", "none" ] },
+       emit      => '. imul%M %unop3',
+       outs      => [ "EAX", "EDX", "M" ],
+       ins       => [ "base", "index", "val_high", "val_low", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 5,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_IMul => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       outs      => [ "EAX", "EDX", "M" ],
+       arity     => 2
+},
+
+And => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       emit      => '. and%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+AndMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "none" ] },
+       emit      => '. and%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Or => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       emit      => '. or%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+OrMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       emit      => '. or%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Xor => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       emit      => '. xor%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+XorMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       emit      => '. xor%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_Xor => {
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       arity     => 2,
+       modified_flags => $status_flags
 },
 
 # not commutative operations
 
-"Sub" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Sub: Sub(a, b) = a - b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. sub %ia32_emit_binop /* Sub(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"SubC" => {
-  "comment"   => "construct Sub with Carry: SubC(a, b) = a - b - carry",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. sbb %ia32_emit_binop /* SubC(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Sub64Bit" => {
-  "irn_flags" => "R",
-  "comment"   => "construct 64Bit Sub: Sub(a_l, a_h, b_l, b_h) = a_l - b_l; a_h - b_h - borrow",
-  "arity"     => 4,
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp" ], "out" => [ "!in", "!in" ] },
-  "emit"      => '
-. mov %D1, %S1 /* mov a_l into assigned l_res register */
-. mov %D2, %S2 /* mov a_h into assigned h_res register */
-. sub %D1, %S3 /* a_l - b_l */
-. sbb %D2, %S4 /* a_h - b_h - borrow */
+Sub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       emit      => '. sub%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+SubMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       emit      => '. sub%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => 'mode_M',
+       modified_flags => $status_flags
+},
+
+Sbb => {
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ], out => [ "in_r3 !in_r4" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);",
+       emit      => '. sbb%M %binop',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Sub64Bit => {
+       irn_flags => "R",
+       arity     => 4,
+       reg_req   => { in => [ "gp", "gp", "gp", "gp" ], out => [ "!in", "!in" ] },
+       emit      => '
+. movl %S0, %D0
+. movl %S1, %D1
+. subl %SI2, %D0
+. sbbl %SI3, %D1
 ',
-  "outs"      => [ "low_res", "high_res" ],
-},
-
-"l_Sub" => {
-  "irn_flags" => "R",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Sub: Sub(a, b) = a - b",
-  "arity"     => 2,
-},
-
-"l_SubC" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Sub with Carry: SubC(a, b) = a - b - carry",
-  "arity"     => 2,
-},
-
-"DivMod" => {
-  "op_flags"  => "F|L",
-  "state"     => "exc_pinned",
-  "reg_req"   => { "in" => [ "eax", "gp", "edx", "none" ], "out" => [ "eax", "edx" ] },
-  "attr"      => "ia32_op_flavour_t dm_flav",
-  "init_attr" => "  attr->data.op_flav = dm_flav;",
-  "cmp_attr"  => "  return attr_a->data.op_flav != attr_b->data.op_flav;\n",
-  "emit"      =>
-'  if (mode_is_signed(get_ia32_res_mode(n))) {
-4.  idiv %S2 /* signed DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
-  }
-  else {
-4.  div %S2 /* unsigned DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
-  }
-',
-  "outs"      => [ "div_res", "mod_res", "M" ],
-  "latency"   => 25,
-},
-
-"Shl" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shl: Shl(a, b) = a << b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx gp_NOREG", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. shl %ia32_emit_binop /* Shl(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"l_Shl" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Shl: Shl(a, b) = a << b",
-  "arity"     => 2
-},
-
-"ShlD" => {
-  "irn_flags" => "R",
-  "comment"   => "construct ShlD: ShlD(a, b, c) = a, b << count (shift left count bits from b into a)",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  # Out requirements is: different from all in
-  # This is because, out must be different from LowPart and ShiftCount.
-  # We could say "!ecx !in_r4" but it can occur, that all values live through
-  # this Shift and the only value dying is the ShiftCount. Then there would be a
-  # register missing, as result must not be ecx and all other registers are
-  # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
-  # (and probably never will). So we create artificial interferences of the result
-  # with all inputs, so the spiller can always assure a free register.
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "ecx", "none" ], "out" => [ "!in" ] },
-  "emit"      =>
-'
-if (get_ia32_immop_type(n) == ia32_ImmNone) {
-  if (get_ia32_op_type(n) == ia32_AddrModeD) {
-4. shld %ia32_emit_am, %S4, %%cl /* ShlD(%A3, %A4, %A5) -> %D1 */
-  }
-  else {
-4. shld %S3, %S4, %%cl /* ShlD(%A3, %A4, %A5) -> %D1 */
-  }
-}
-else {
-  if (get_ia32_op_type(n) == ia32_AddrModeD) {
-4. shld %ia32_emit_am, %S4, %C /* ShlD(%A3, %A4, %A5) -> %D1 */
-  }
-  else {
-4. shld %S3, %S4, %C /* ShlD(%A3, %A4, %A5) -> %D1 */
-  }
-}
-',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 6,
-},
-
-"l_ShlD" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered ShlD: ShlD(a, b, c) = a, b << count (shift left count bits from b into a)",
-  "arity"     => 3
-},
-
-"Shr" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shr: Shr(a, b) = a >> b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx gp_NOREG", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. shr %ia32_emit_binop /* Shr(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"l_Shr" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Shr: Shr(a, b) = a << b",
-  "arity"     => 2
-},
-
-"ShrD" => {
-  "irn_flags" => "R",
-  "comment"   => "construct ShrD: ShrD(a, b, c) = a, b >> count (shift rigth count bits from a into b)",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  # Out requirements is: different from all in
-  # This is because, out must be different from LowPart and ShiftCount.
-  # We could say "!ecx !in_r4" but it can occur, that all values live through
-  # this Shift and the only value dying is the ShiftCount. Then there would be a
-  # register missing, as result must not be ecx and all other registers are
-  # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
-  # (and probably never will). So we create artificial interferences of the result
-  # with all inputs, so the spiller can always assure a free register.
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "ecx", "none" ], "out" => [ "!in" ] },
-  "emit"      =>
-'
-if (get_ia32_immop_type(n) == ia32_ImmNone) {
-  if (get_ia32_op_type(n) == ia32_AddrModeD) {
-4. shrd %ia32_emit_am, %S4, %%cl /* ShrD(%A3, %A4, %A5) -> %D1 */
-  }
-  else {
-4. shrd %S3, %S4, %%cl /* ShrD(%A3, %A4, %A5) -> %D1 */
-  }
-}
-else {
-  if (get_ia32_op_type(n) == ia32_AddrModeD) {
-4. shrd %ia32_emit_am, %S4, %C /* ShrD(%A3, %A4, %A5) -> %D1 */
-  }
-  else {
-4. shrd %S3, %S4, %C /* ShrD(%A3, %A4, %A5) -> %D1 */
-  }
-}
-',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 6,
-},
-
-"l_ShrD" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered ShrD: ShrD(a, b, c) = a, b >> count (shift rigth count bits from a into b)",
-  "arity"     => 3
-},
-
-"Shrs" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Shrs: Shrs(a, b) = a >> b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx gp_NOREG", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. sar %ia32_emit_binop /* Shrs(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"l_Shrs" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Shrs: Shrs(a, b) = a << b",
-  "arity"     => 2
-},
-
-"RotR" => {
-  "irn_flags" => "R",
-  "comment"     => "construct RotR: RotR(a, b) = a ROTR b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"     => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"        => '. ror %ia32_emit_binop /* RotR(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"RotL" => {
-  "irn_flags" => "R",
-  "comment"   => "construct RotL: RotL(a, b) = a ROTL b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. rol %ia32_emit_binop /* RotL(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
+       outs      => [ "low_res", "high_res" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+l_Sub => {
+       irn_flags => "R",
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+l_Sbb => {
+       cmp_attr  => "return 1;",
+       arity     => 2,
+},
+
+IDiv => {
+       op_flags  => "F|L",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "eax", "edx", "gp", "none" ],
+                      out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "left_low", "left_high", "right", "mem" ],
+       outs      => [ "div_res", "mod_res", "M" ],
+       attr      => "ia32_op_flavour_t dm_flav",
+       init_attr =>
+               "attr->data.op_flav = dm_flav;".
+               "set_ia32_am_support(res, ia32_am_Full, ia32_am_ternary);",
+       emit      => ". idiv%M %unop4",
+       latency   => 25,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+Div => {
+       op_flags  => "F|L",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "eax", "edx", "gp", "none" ],
+                      out => [ "eax", "edx", "none" ] },
+       ins       => [ "base", "index", "left_low", "left_high", "right", "mem" ],
+       outs      => [ "div_res", "mod_res", "M" ],
+       attr      => "ia32_op_flavour_t dm_flav",
+       init_attr =>
+               "attr->data.op_flav = dm_flav;".
+               "set_ia32_am_support(res, ia32_am_Full, ia32_am_ternary);",
+       emit      => ". div%M %unop4",
+       latency   => 25,
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+Shl => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "left", "right" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);",
+       emit      => '. shl %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+ShlMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "count", "mem" ],
+       emit      => '. shl%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_ShlDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
+},
+
+ShlD => {
+       # FIXME: WHY? the right requirement is in_r3 !in_r5, especially this is the same as in Shl
+       #
+       # Out requirements is: different from all in
+       # This is because, out must be different from LowPart and ShiftCount.
+       # We could say "!ecx !in_r4" but it can occur, that all values live through
+       # this Shift and the only value dying is the ShiftCount. Then there would be a
+       # register missing, as result must not be ecx and all other registers are
+       # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
+       # (and probably never will). So we create artificial interferences of the result
+       # with all inputs, so the spiller can always assure a free register.
+       # reg_req   => { in => [ "gp", "gp", "gp", "gp", "ecx", "none" ], out => [ "!in" ] },
+
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "in_r1 !in_r3" ] },
+       ins       => [ "left_high", "left_low", "right" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_ternary);",
+       emit      => '. shld%M %SB2, %S1, %S0',
+       latency   => 6,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_ShlD => {
+       cmp_attr  => "return 1;",
+       arity     => 3,
+},
+
+Shr => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);",
+       emit      => '. shr %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+ShrMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "count", "mem" ],
+       emit      => '. shr%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_ShrDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
+},
+
+ShrD => {
+       # FIXME: WHY? the right requirement is in_r3 !in_r5, especially this is the same as in Shr
+       #
+       # Out requirements is: different from all in
+       # This is because, out must be different from LowPart and ShiftCount.
+       # We could say "!ecx !in_r4" but it can occur, that all values live through
+       # this Shift and the only value dying is the ShiftCount. Then there would be a
+       # register missing, as result must not be ecx and all other registers are
+       # occupied. What we should write is "!in_r4 !in_r5", but this is not supported
+       # (and probably never will). So we create artificial interferences of the result
+       # with all inputs, so the spiller can always assure a free register.
+       # reg_req   => { in => [ "gp", "gp", "gp", "gp", "ecx", "none" ], out => [ "!in" ] },
+
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx" ], out => [ "in_r1 !in_r3" ] },
+       ins       => [ "left_high", "left_low", "right" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_ternary);",
+       emit      => '. shrd%M %SB2, %S1, %S0',
+       latency   => 6,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+l_ShrD => {
+       cmp_attr  => "return 1;",
+       arity     => 3
+},
+
+Sar => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);",
+       emit      => '. sar %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+SarMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "count", "mem" ],
+       emit      => '. sar%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+l_Sar => {
+       cmp_attr  => "return 1;",
+       # value, cnt
+       arity     => 2
+},
+
+l_SarDep => {
+       cmp_attr  => "return 1;",
+       # value, cnt, dependency
+       arity     => 3
+},
+
+Ror => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);",
+       emit      => '. ror %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+RorMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "count", "mem" ],
+       emit      => '. ror%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Rol => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "ecx" ], out => [ "in_r1 !in_r2" ] },
+       ins       => [ "val", "count" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_binary);",
+       emit      => '. rol %SB1, %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+RolMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "ecx", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "count", "mem" ],
+       emit      => '. rol%M %SI2, %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
 },
 
 # unary operations
 
-"Minus" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Minus: Minus(a) = -a",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. neg %ia32_emit_unop /* Neg(%A1) -> %D1, (%A1) */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Minus64Bit" => {
-  "irn_flags" => "R",
-  "comment"   => "construct 64Bit Minus: Minus(a_l, a_h, 0) = 0 - a_l; 0 - a_h - borrow",
-  "arity"     => 4,
-  "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "!in", "!in" ] },
-  "emit"      => '
-. mov %D1, %S1 /* l_res */
-. mov %D2, %S1 /* h_res */
-. sub %D1, %S2 /* 0 - a_l  ->  low_res */
-. sbb %D2, %S3 /* 0 - a_h - borrow -> high_res */
-',
-  "outs"      => [ "low_res", "high_res" ],
-},
-
-
-"l_Minus" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Minus: Minus(a) = -a",
-  "arity"     => 1,
-},
-
-"Inc" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Increment: Inc(a) = a++",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. inc %ia32_emit_unop /* Inc(%S1) -> %D1, (%A1) */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Dec" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Decrement: Dec(a) = a--",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. dec %ia32_emit_unop /* Dec(%S1) -> %D1, (%A1) */',
-  "outs"      => [ "res", "M" ],
-},
-
-"Not" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Not: Not(a) = !a",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. not %ia32_emit_unop /* Not(%S1) -> %D1, (%A1) */',
-  "outs"      => [ "res", "M" ],
+Neg => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       emit      => '. neg %S0',
+       ins       => [ "val" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);",
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+NegMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. neg%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => $status_flags
+},
+
+Minus64Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp" ], out => [ "in_r1", "gp" ] },
+       outs      => [ "low_res", "high_res" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+
+l_Neg => {
+       cmp_attr  => "return 1;",
+       arity     => 1,
+},
+
+Inc => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);",
+       emit      => '. inc %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+},
+
+IncMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. inc%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+},
+
+Dec => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);",
+       emit      => '. dec %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+},
+
+DecMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. dec%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => [ "OF", "SF", "ZF", "AF", "PF" ]
+},
+
+Not => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp" ], out => [ "in_r1" ] },
+       ins       => [ "val" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);",
+       emit      => '. not %S0',
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => []
+},
+
+NotMem => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       emit      => '. not%M %AM',
+       units     => [ "GP" ],
+       mode      => "mode_M",
+       modified_flags => [],
 },
 
 # other operations
 
-"CondJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump: CMP A, B && JMPxx LABEL",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ] },
-  "outs"      => [ "false", "true" ],
-  "latency"   => 3,
-},
-
-"TestJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump: TEST A, B && JMPxx LABEL",
-  "reg_req"  => { "in" => [ "gp", "gp" ] },
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "outs"      => [ "false", "true" ],
-  "latency"   => 3,
-},
-
-"CJmpAM" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump without CMP (replaces CondJmp): JMPxx LABEL",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "none", "none" ] },
-  "outs"      => [ "false", "true" ],
-},
-
-"CJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump without CMP (replaces TestJmp): JMPxx LABEL",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp" ] },
-},
-
-"SwitchJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct switch",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp" ], "out" => [ "none" ] },
-  "latency"   => 3,
-},
-
-"Const" => {
-  "op_flags"  => "c",
-  "irn_flags" => "R",
-  "comment"   => "represents an integer constant",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "out" => [ "gp" ] },
-},
-
-"Cdq" => {
-  # we should not rematrialize this node. It produces 2 results and has
-  # very strict constrains
-  "comment"   => "construct CDQ: sign extend EAX -> EDX:EAX",
-  "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax in_r1", "edx" ] },
-  "emit"      => '. cdq /* sign extend EAX -> EDX:EAX, (%A1) */',
-  "outs"      => [ "EAX", "EDX" ],
+CmpJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in  => [ "gp", "gp", "gp", "gp", "none" ],
+                      out => [ "none", "none"] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       outs      => [ "false", "true" ],
+       attr      => "long pnc",
+       init_attr =>
+               "attr->pn_code = pnc;".
+               "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 3,
+       units     => [ "BRANCH" ],
+},
+
+CmpJmp8Bit => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in  => [ "gp", "gp", "eax ebx ecx edx", "eax ebx ecx edx",
+                               "none" ],
+                      out => [ "none", "none"] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       outs      => [ "false", "true" ],
+       attr      => "long pnc",
+       init_attr =>
+               "attr->pn_code = pnc;".
+               "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 3,
+       units     => [ "BRANCH" ],
+},
+
+TestJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in  => [ "gp", "gp", "gp", "gp", "none" ],
+                      out => [ "none", "none" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       outs      => [ "false", "true" ],
+       attr      => "long pnc",
+       init_attr =>
+               "attr->pn_code = pnc;".
+               "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 3,
+       units     => [ "BRANCH" ],
+},
+
+TestJmp8Bit => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in  => [ "gp", "gp", "eax ebx ecx edx", "eax ebx ecx edx",
+                               "none" ],
+                      out => [ "none", "none" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       outs      => [ "false", "true" ],
+       attr      => "long pnc",
+       init_attr =>
+               "attr->pn_code = pnc;".
+               "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 3,
+       units     => [ "BRANCH" ],
+},
+
+SwitchJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in => [ "gp" ], out => [ "none" ] },
+       latency   => 3,
+       units     => [ "BRANCH" ],
+       mode      => "mode_T",
+},
+
+IJmp => {
+       state     => "pinned",
+       op_flags  => "X",
+       reg_req   => { in => [ "gp" ] },
+       emit      => '. jmp *%S0',
+       units     => [ "BRANCH" ],
+       mode      => "mode_X",
+       modified_flags => []
+},
+
+Const => {
+       op_flags  => "c",
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       units     => [ "GP" ],
+       attr      => "ir_entity *symconst, int symconst_sign, long offset",
+       attr_type => "ia32_immediate_attr_t",
+       mode      => $mode_gp,
+},
+
+Unknown_GP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => $mode_gp
+},
+
+Unknown_VFP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "vfp_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+Unknown_XMM => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "xmm_UKNWN" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E"
+},
+
+NoReg_GP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "gp_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => $mode_gp
+},
+
+NoReg_VFP => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "vfp_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+NoReg_XMM => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "xmm_NOREG" ] },
+       units     => [],
+       emit      => "",
+       mode      => "mode_E"
+},
+
+ChangeCW => {
+       state     => "pinned",
+       op_flags  => "c",
+       irn_flags => "I",
+       reg_req   => { out => [ "fp_cw" ] },
+       mode      => $mode_fpcw,
+       latency   => 3,
+       units     => [ "GP" ],
+       modified_flags => $fpcw_flags
+},
+
+FldCW => {
+       op_flags  => "L|F",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "fp_cw" ] },
+       ins       => [ "base", "index", "mem" ],
+       latency   => 5,
+       emit      => ". fldcw %AM",
+       mode      => $mode_fpcw,
+       units     => [ "GP" ],
+       modified_flags => $fpcw_flags
+},
+
+FnstCW => {
+       op_flags  => "L|F",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "fp_cw", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "fpcw", "mem" ],
+       latency   => 5,
+       emit      => ". fnstcw %AM",
+       mode      => "mode_M",
+       units     => [ "GP" ],
+},
+
+Cltd => {
+       # we should not rematrialize this node. It produces 2 results and has
+       # very strict constrains
+       reg_req   => { in => [ "eax", "edx" ], out => [ "edx" ] },
+       ins       => [ "val", "globbered" ],
+       emit      => '. cltd',
+       mode      => $mode_gp,
+       units     => [ "GP" ],
 },
 
 # Load / Store
-
-"Load" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
-  "latency"   => 3,
-  "emit"      =>
-'  if (get_mode_size_bits(get_ia32_ls_mode(n)) < 32) {
-4.   mov%Mx %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
-  }
-  else {
-4.   mov %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
-  }
-',
-  "outs"      => [ "res", "M" ],
-},
-
-"l_Load" => {
-  "op_flags"  => "L|F",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "construct lowered Load: Load(ptr, mem) = LD ptr -> reg",
-  "outs"      => [ "res", "M" ],
-  "arity"     => 2,
-},
-
-"l_Store" => {
-  "op_flags"  => "L|F",
-  "cmp_attr"  => "  return 1;\n",
-  "state"     => "exc_pinned",
-  "comment"   => "construct lowered Store: Store(ptr, val, mem) = ST ptr,val",
-  "arity"     => 3,
-  "outs"      => [ "M" ],
-},
-
-"Store" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
-  "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
-  "outs"      => [ "M" ],
-  "latency"   => 3,
-},
-
-"Store8Bit" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "construct 8Bit Store: Store(ptr, val, mem) = ST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "eax ebx ecx edx gp_NOREG", "none" ] },
-  "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
-  "outs"      => [ "M" ],
-  "latency"   => 3,
-},
-
-"Lea" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
-  "emit"      => '. lea %D1, %ia32_emit_am /* LEA(%A1, %A2) */',
-  "latency"   => 2,
-},
-
-"Push" => {
-  "comment"   => "push on the stack",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "esp", "none" ], "out" => [ "esp" ] },
-  "emit"      => '. push %ia32_emit_unop /* PUSH(%A1) */',
-  "outs"      => [ "stack:I|S", "M" ],
-  "latency"   => 3,
-},
-
-"Pop" => {
-  # We don't set class modify stack here (but we will do this on proj 1)
-  "comment"   => "pop a gp register from the stack",
-  "reg_req"   => { "in" => [ "gp", "gp", "esp", "none" ], "out" => [ "gp", "esp" ] },
-  "emit"      => '. pop %ia32_emit_unop /* POP(%A1) */',
-  "outs"      => [ "res", "stack:I|S", "M" ],
-  "latency"   => 4,
-},
-
-"Enter" => {
-  "comment"   => "create stack frame",
-  "reg_req"   => { "in" => [ "esp" ], "out" => [ "ebp", "esp" ] },
-  "emit"      => '. enter /* Enter */',
-  "outs"      => [ "frame:I", "stack:I|S", "M" ],
-  "latency"   => 15,
-},
-
-"Leave" => {
-  "comment"   => "destroy stack frame",
-  "reg_req"   => { "in" => [ "esp", "ebp" ], "out" => [ "ebp", "esp" ] },
-  "emit"      => '. leave /* Leave */',
-  "outs"      => [ "frame:I", "stack:I|S", "M" ],
-  "latency"   => 3,
-},
-
-"AddSP" => {
-  "irn_flags" => "I",
-  "comment"   => "allocate space on stack",
-  "reg_req"   => { "in" => [ "esp", "gp" ], "out" => [ "esp", "none" ] },
-  "outs"      => [ "stack:S", "M" ],
-},
-
-"SubSP" => {
-  "irn_flags" => "I",
-  "comment"   => "free space on stack",
-  "reg_req"   => { "in" => [ "esp", "gp" ], "out" => [ "esp", "none" ] },
-  "outs"      => [ "stack:S", "M" ],
-},
-
-"LdTls" => {
-  "irn_flags" => "R",
-  "comment"   => "get the TLS base address",
-  "reg_req"   => { "out" => [ "gp" ] },
+#
+# Note that we add additional latency values depending on address mode, so a
+# lateny of 0 for load is correct
+
+Load => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "gp", "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "res", "M" ],
+       latency   => 0,
+       emit      => ". mov%SE%ME%.l %AM, %D0",
+       units     => [ "GP" ],
+},
+
+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", "gp", "none" ], out => [ "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       emit      => '. mov%M %SI2, %AM',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => "mode_M",
+},
+
+Store8Bit => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "eax ebx ecx edx", "none" ], out => ["none" ] },
+       emit      => '. mov%M %SB2, %AM',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => "mode_M",
+},
+
+Lea => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp" ], out => [ "gp" ] },
+       ins       => [ "base", "index" ],
+       emit      => '. leal %AM, %D0',
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+       modified_flags => [],
+},
+
+Push => {
+       reg_req   => { in => [ "gp", "gp", "gp", "esp", "none" ], out => [ "esp", "none" ] },
+       emit      => '. push%M %unop2',
+       ins       => [ "base", "index", "val", "stack", "mem" ],
+       outs      => [ "stack:I|S", "M" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       latency   => 2,
+       units     => [ "GP" ],
+       modified_flags => [],
+},
+
+Pop => {
+       reg_req   => { in => [ "gp", "gp", "esp", "none" ], out => [ "esp", "gp", "none" ] },
+       emit      => '. pop%M %DAM1',
+       outs      => [ "stack:I|S", "res", "M" ],
+       ins       => [ "base", "index", "stack", "mem" ],
+       init_attr => "set_ia32_am_support(res, ia32_am_Dest, ia32_am_unary);",
+       latency   => 3, # Pop is more expensive than Push on Athlon
+       units     => [ "GP" ],
+       modified_flags => [],
+},
+
+Enter => {
+       reg_req   => { in => [ "esp" ], out => [ "ebp", "esp", "none" ] },
+       emit      => '. enter',
+       outs      => [ "frame:I", "stack:I|S", "M" ],
+       latency   => 15,
+       units     => [ "GP" ],
+},
+
+Leave => {
+       reg_req   => { in => [ "esp", "ebp" ], out => [ "ebp", "esp" ] },
+       emit      => '. leave',
+       outs      => [ "frame:I", "stack:I|S" ],
+       latency   => 3,
+       units     => [ "GP" ],
+},
+
+AddSP => {
+       irn_flags => "I",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "esp", "gp", "none" ], out => [ "in_r3", "none" ] },
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       emit      => '. addl %binop',
+       outs      => [ "stack:S", "M" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+SubSP => {
+#irn_flags => "I",
+       state     => "pinned",
+       reg_req   => { in => [ "gp", "gp", "esp", "gp", "none" ], out => [ "in_r3", "gp", "none" ] },
+       init_attr => "set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);",
+       emit      => ". subl %binop\n".
+                    ". movl %%esp, %D1",
+       outs      => [ "stack:I|S", "addr", "M" ],
+       units     => [ "GP" ],
+       modified_flags => $status_flags
+},
+
+LdTls => {
+       irn_flags => "R",
+       reg_req   => { out => [ "gp" ] },
+       units     => [ "GP" ],
+},
+
+# the int instruction
+int => {
+       reg_req   => { in => [ "gp" ], out => [ "none" ] },
+       mode      => "mode_M",
+       emit      => '. int %SI0',
+       units     => [ "GP" ],
+       cmp_attr  => "return 1;",
 },
 
 
-
 #-----------------------------------------------------------------------------#
 #   _____ _____ ______    __ _             _                     _            #
 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
@@ -844,334 +1294,403 @@ else {
 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
 #-----------------------------------------------------------------------------#
 
-# commutative operations
-
-"xAdd" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. adds%M %ia32_emit_binop /* SSE Add(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
-},
-
-"xMul" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. muls%M %ia32_emit_binop /* SSE Mul(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
-},
-
-"xMax" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? a : b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. maxs%M %ia32_emit_binop /* SSE Max(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 2,
-},
-
-"xMin" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Min: Min(a, b) = Min(b, a) = a < b ? a : b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. mins%M %ia32_emit_binop /* SSE Min(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 2,
-},
-
-"xAnd" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE And: And(a, b) = a AND b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. andp%M %ia32_emit_binop /* SSE And(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 3,
-},
-
-"xOr" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Or: Or(a, b) = a OR b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. orp%M %ia32_emit_binop /* SSE Or(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-},
-
-"xEor" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Eor: Eor(a, b) = a XOR b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. xorp%M %ia32_emit_binop /* SSE Xor(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 3,
+xZero => {
+       irn_flags => "R",
+       reg_req   => { out => [ "xmm" ] },
+       emit      => '. xorp%XSD %D1, %D1',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-# not commutative operations
+# commutative operations
 
-"xAndNot" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE AndNot: AndNot(a, b) = a AND NOT b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. andnp%M %ia32_emit_binop /* SSE AndNot(%A3, %A4) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 3,
+xAdd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. add%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"xSub" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Sub: Sub(a, b) = a - b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
-  "emit"      => '. subs%M %ia32_emit_binop /* SSE Sub(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
+xMul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. mul%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"xDiv" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Div: Div(a, b) = a / b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "emit"      => '. divs%M %ia32_emit_binop /* SSE Div(%A1, %A2) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 16,
+xMax => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. max%XXM %binop',
+       latency   => 2,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-# other operations
+xMin => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. min%XXM %binop',
+       latency   => 2,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
+},
 
-"xCmp" => {
-  "irn_flags" => "R",
-  "comment"   => "construct SSE Compare: Cmp(a, b) == a = a cmp b",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 3,
+xAnd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. andp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"xCondJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "none", "none" ] },
-  "outs"      => [ "false", "true" ],
-  "latency"   => 5,
+xOr => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. orp%XSD %binop',
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"xConst" => {
-  "op_flags"  => "c",
-  "irn_flags" => "R",
-  "comment"   => "represents a SSE constant",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "out" => [ "xmm" ] },
-  "emit"      => '. movs%M %D1, %C /* Load fConst into register */',
-  "latency"   => 2,
+xXor => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. xorp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-# Load / Store
+# not commutative operations
 
-"xLoad" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "xmm" ] },
-  "emit"      => '. movs%M %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */',
-  "outs"      => [ "res", "M" ],
-  "latency"   => 2,
-},
-
-"xStore" => {
-  "op_flags" => "L|F",
-  "state"    => "exc_pinned",
-  "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ] },
-  "emit"     => '. movs%M %ia32_emit_binop /* Store(%S3) -> (%A1) */',
-  "outs"      => [ "M" ],
-  "latency"   => 2,
-},
-
-"xStoreSimple" => {
-  "op_flags" => "L|F",
-  "state"    => "exc_pinned",
-  "comment"  => "construct Store without index: Store(ptr, val, mem) = ST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"  => { "in" => [ "gp", "xmm", "none" ] },
-  "emit"     => '. movs%M %ia32_emit_am, %S2 /* store XMM0 onto stack */',
-  "outs"      => [ "M" ],
-  "latency"   => 2,
-},
-
-"l_X87toSSE" => {
-  "op_flags" => "L|F",
-  "comment"  => "construct: transfer a value from x87 FPU into a SSE register",
-  "cmp_attr" => "  return 1;\n",
-  "arity"    => 3,
-},
-
-"l_SSEtoX87" => {
-  "op_flags" => "L|F",
-  "comment"  => "construct: transfer a value from SSE register to x87 FPU",
-  "cmp_attr" => "  return 1;\n",
-  "arity"    => 3,
-},
-
-"GetST0" => {
-  "op_flags" => "L|F",
-  "irn_flags" => "I",
-  "state"    => "exc_pinned",
-  "comment"  => "store ST0 onto stack",
-  "cmp_attr" => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"  => { "in" => [ "gp", "none" ] },
-  "emit"     => '. fstp %ia32_emit_am /* store ST0 onto stack */',
-  "outs"     => [ "M" ],
-  "latency"  => 4,
-},
-
-"SetST0" => {
-  "op_flags" => "L|F",
-  "irn_flags" => "I",
-  "state"    => "exc_pinned",
-  "comment"  => "load ST0 from stack",
-  "cmp_attr" => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"  => { "in" => [ "gp", "none" ], "out" => [ "vf0", "none" ] },
-  "emit"     => '. fld %ia32_emit_am /* load ST0 from stack */',
-  "outs"     => [ "res", "M" ],
-  "latency"  => 2,
+xAndNot => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3 !in_r4" ] },
+       emit      => '. andnp%XSD %binop',
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-# CopyB
-
-"CopyB" => {
-  "op_flags" => "F|H",
-  "state"    => "pinned",
-  "comment"  => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
-  "reg_req"  => { "in" => [ "edi", "esi", "ecx", "none" ], "out" => [ "edi", "esi", "ecx", "none" ] },
-  "outs"     => [ "DST", "SRC", "CNT", "M" ],
+xSub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3" ] },
+       emit      => '. sub%XXM %binop',
+       latency   => 4,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"CopyB_i" => {
-  "op_flags" => "F|H",
-  "state"    => "pinned",
-  "comment"  => "implements a memcopy: CopyB(dst, src, mem) == memcpy(dst, src, attr(size))",
-  "cmp_attr" => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"  => { "in" => [ "edi", "esi", "none" ], "out" => [  "edi", "esi", "none" ] },
-  "outs"     => [ "DST", "SRC", "M" ],
+xDiv => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3 !in_r4", "none" ] },
+       outs      => [ "res", "M" ],
+       emit      => '. div%XXM %binop',
+       latency   => 16,
+       units     => [ "SSE" ],
 },
 
-# Conversions
+# other operations
 
-"Conv_I2I" => {
-  "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3", "none" ] },
-  "cmp_attr" => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
-  "comment"  => "construct Conv Int -> Int",
-  "outs"     => [ "res", "M" ],
+xCmp => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "in_r3 !in_r4" ] },
+       latency   => 3,
+       units     => [ "SSE" ],
+       mode      => "mode_E",
 },
 
-"Conv_I2I8Bit" => {
-  "reg_req"  => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ], "out" => [ "in_r3", "none" ] },
-  "cmp_attr" => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
-  "comment"  => "construct Conv Int -> Int",
-  "outs"     => [ "res", "M" ],
+xCmpJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "none", "none" ] },
+       ins       => [ "base", "index", "left", "right", "mem" ],
+       outs      => [ "false", "true" ],
+       attr      => "long pnc",
+       init_attr => "attr->pn_code = pnc;",
+       latency   => 5,
+       units     => [ "SSE" ],
 },
 
-"Conv_I2FP" => {
-  "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "xmm", "none" ] },
-  "cmp_attr" => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
-  "comment"  => "construct Conv Int -> Floating Point",
-  "outs"     => [ "res", "M" ],
-  "latency"  => 10,
-},
+# Load / Store
 
-"Conv_FP2I" => {
-  "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "gp", "none" ] },
-  "cmp_attr" => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
-  "comment"  => "construct Conv Floating Point -> Int",
-  "outs"     => [ "res", "M" ],
-  "latency"  => 10,
+xLoad => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       emit      => '. mov%XXM %AM, %D0',
+       attr      => "ir_mode *load_mode",
+       init_attr => "attr->ls_mode = load_mode;",
+       outs      => [ "res", "M" ],
+       latency   => 0,
+       units     => [ "SSE" ],
 },
 
-"Conv_FP2FP" => {
-  "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "xmm", "none" ] },
-  "cmp_attr" => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
-  "comment"  => "construct Conv Floating Point -> Floating Point",
-  "outs"     => [ "res", "M" ],
-  "latency"  => 8,
+xStore => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "xmm", "none" ] },
+       emit     => '. mov%XXM %S2, %AM',
+       latency  => 0,
+       units    => [ "SSE" ],
+       mode     => "mode_M",
 },
 
-"CmpCMov" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Conditional Move: CMov(sel, a, b) == sel ? a : b",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp" ], "out" => [ "in_r4" ] },
-  "latency"   => 2,
+xStoreSimple => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "xmm", "none" ] },
+       ins      => [ "base", "index", "val", "mem" ],
+       emit     => '. mov%XXM %S2, %AM',
+       latency  => 0,
+       units    => [ "SSE" ],
+       mode     => "mode_M",
 },
 
-"PsiCondCMov" => {
-  "irn_flags" => "R",
-  "comment"   => "check if Psi condition tree evaluates to true and move result accordingly",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "in_r3" ] },
-  "latency"   => 2,
+CvtSI2SS => {
+       op_flags => "L|F",
+       reg_req  => { in => [ "gp", "gp", "gp", "none" ], out => [ "xmm" ] },
+       emit     => '. cvtsi2ss %D0, %AM',
+       latency  => 2,
+       units    => [ "SSE" ],
+       mode     => $mode_xmm
 },
 
-"xCmpCMov" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Conditional Move: SSE Compare + int CMov ",
-  "reg_req"   => { "in" => [ "xmm", "xmm", "gp", "gp" ], "out" => [ "in_r4" ] },
-  "latency"   => 5,
+CvtSI2SD => {
+       op_flags => "L|F",
+       reg_req  => { in => [ "gp", "gp", "gp", "none" ], out => [ "xmm" ] },
+       emit     => '. cvtsi2sd %unop2',
+       latency  => 2,
+       units    => [ "SSE" ],
+       mode     => $mode_xmm
 },
 
-"vfCmpCMov" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Conditional Move: x87 Compare + int CMov",
-  "reg_req"   => { "in" => [ "vfp", "vfp", "gp", "gp" ], "out" => [ "in_r4" ] },
-  "latency"   => 10,
-},
 
-"CmpSet" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Set: Set(sel) == sel ? 1 : 0",
-  "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 2,
+l_X87toSSE => {
+       op_flags => "L|F",
+       cmp_attr => "return 1;",
+       arity    => 3,
 },
 
-"PsiCondSet" => {
-  "irn_flags" => "R",
-  "comment"   => "check if Psi condition tree evaluates to true and set result accordingly",
-  "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax ebx ecx edx" ] },
-  "latency"   => 2,
+l_SSEtoX87 => {
+       op_flags => "L|F",
+       cmp_attr => "return 1;",
+       arity    => 3,
 },
 
-"xCmpSet" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Set: SSE Compare + int Set",
-  "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 5,
+# 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" ],
+       modified_flags => [ "DF" ]
 },
 
-"vfCmpSet" => {
-  "irn_flags" => "R",
-  "comment"   => "construct Set: x87 Compare + int Set",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 10,
+CopyB_i => {
+       op_flags => "F|H",
+       state    => "pinned",
+       reg_req  => { in => [ "edi", "esi", "none" ], out => [  "edi", "esi", "none" ] },
+       outs     => [ "DST", "SRC", "M" ],
+       units    => [ "GP" ],
+       modified_flags => [ "DF" ]
 },
 
-"vfCMov" => {
-  "irn_flags" => "R",
-  "comment"   => "construct x87 Conditional Move: vfCMov(sel, a, b) = sel ? a : b",
-  "reg_req"   => { "in" => [ "vfp", "vfp", "vfp", "vfp" ], "out" => [ "vfp" ] },
-  "latency"   => 10,
+# Conversions
+
+Conv_I2I => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "gp", "none" ], out => [ "in_r3", "none" ] },
+       units     => [ "GP" ],
+       ins       => [ "base", "index", "val", "mem" ],
+       attr      => "ir_mode *smaller_mode",
+       init_attr => "attr->ls_mode = smaller_mode;",
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Conv_I2I8Bit => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "eax ebx ecx edx", "none" ], out => [ "in_r3", "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       units     => [ "GP" ],
+       attr      => "ir_mode *smaller_mode",
+       init_attr => "attr->ls_mode = smaller_mode;",
+       mode      => $mode_gp,
+       modified_flags => $status_flags
+},
+
+Conv_I2FP => {
+       reg_req  => { in => [ "gp", "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       latency  => 10,
+       units    => [ "SSE" ],
+       mode     => "mode_E",
+},
+
+Conv_FP2I => {
+       reg_req  => { in => [ "gp", "gp", "xmm", "none" ], out => [ "gp", "none" ] },
+       latency  => 10,
+       units    => [ "SSE" ],
+       mode     => $mode_gp,
+},
+
+Conv_FP2FP => {
+       reg_req  => { in => [ "gp", "gp", "xmm", "none" ], out => [ "xmm", "none" ] },
+       latency  => 8,
+       units    => [ "SSE" ],
+       mode     => "mode_E",
+},
+
+CmpCMov => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none", "gp", "gp" ], out => [ "in_r7" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem", "val_true", "val_false" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+CmpCMov8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none", "gp", "gp" ], out => [ "in_r7" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem", "val_true", "val_false" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+TestCMov => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r7" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem", "val_true",
+                      "val_false" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+TestCMov8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none", "gp", "gp" ],
+                      out => [ "in_r7" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem", "val_true",
+                      "val_false" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+xCmpCMov => {
+       irn_flags => "R",
+       reg_req   => { in => [ "xmm", "xmm", "gp", "gp" ], out => [ "in_r4" ] },
+       latency   => 5,
+       units     => [ "SSE" ],
+       mode      => $mode_gp,
+},
+
+vfCmpCMov => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "gp", "gp" ],
+                      out => [ "in_r7" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem", "val_true",
+                      "val_false" ],
+       latency   => 10,
+       units     => [ "VFP", "GP" ],
+       mode      => $mode_gp,
+       attr_type => "ia32_x87_attr_t",
+},
+
+CmpSet => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ],
+                      out => [ "eax ebx ecx edx" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+CmpSet8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "eax ebx ecx edx", "eax ebx ecx edx",
+                              "none" ],
+                      out => [ "eax ebx ecx edx" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+TestSet => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "gp", "gp", "none" ],
+                      out => [ "eax ebx ecx edx" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+TestSet8Bit => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "eax ebx ecx edx", "eax ebx ecx edx",
+                              "none" ],
+                      out => [ "eax ebx ecx edx" ] },
+       ins       => [ "base", "index", "cmp_left", "cmp_right", "mem" ],
+       attr      => "pn_Cmp pn_code",
+       init_attr => "attr->pn_code = pn_code;",
+       latency   => 2,
+       units     => [ "GP" ],
+       mode      => $mode_gp,
+},
+
+xCmpSet => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "xmm", "xmm", "none" ], out => [ "eax ebx ecx edx" ] },
+       latency   => 5,
+       units     => [ "SSE" ],
+       mode      => $mode_gp,
+},
+
+vfCmpSet => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none" ], out => [ "eax ebx ecx edx" ] },
+       latency   => 10,
+       units     => [ "VFP" ],
+       mode      => $mode_gp,
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfCMov => {
+       irn_flags => "R",
+       reg_req   => { in => [ "vfp", "vfp", "vfp", "vfp" ], out => [ "vfp" ] },
+       latency   => 10,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
 #----------------------------------------------------------#
@@ -1188,220 +1707,238 @@ else {
 # |_| |_|\___/ \__,_|\___||___/                            #
 #----------------------------------------------------------#
 
-"vfadd" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Add: Add(a, b) = Add(b, a) = a + b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
-},
-
-"vfmul" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
+vfadd => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "left", "right", "mem", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"l_vfmul" => {
-  "op_flags"  => "C",
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "lowered virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
-  "arity"     => 2,
+vfmul => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "left", "right", "mem", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"vfsub" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Sub: Sub(a, b) = a - b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
+l_vfmul => {
+       op_flags  => "C",
+       cmp_attr  => "return 1;",
+       arity     => 2,
 },
 
-"l_vfsub" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "lowered virtual fp Sub: Sub(a, b) = a - b",
-  "arity"     => 2,
+vfsub => {
+       irn_flags => "R",
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "left", "right", "mem", "fpcw" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"vfdiv" => {
-  "comment"   => "virtual fp Div: Div(a, b) = a / b",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 20,
+l_vfsub => {
+       cmp_attr  => "return 1;",
+       arity     => 2,
 },
 
-"l_vfdiv" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "lowered virtual fp Div: Div(a, b) = a / b",
-  "arity"     => 2,
+vfdiv => {
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "fpcw" ], out => [ "vfp", "none" ] },
+       ins       => [ "base", "index", "left", "right", "mem", "fpcw" ],
+       outs      => [ "res", "M" ],
+       latency   => 20,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
 },
 
-"vfabs" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Abs: Abs(a) = |a|",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "latency"   => 2,
+l_vfdiv => {
+       cmp_attr  => "return 1;",
+       outs      => [ "res", "M" ],
+       arity     => 2,
 },
 
-"vfchs" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Chs: Chs(a) = -a",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "latency"   => 2,
+vfprem => {
+       reg_req   => { in => [ "gp", "gp", "vfp", "vfp", "none", "fpcw" ], out => [ "vfp" ] },
+       ins       => [ "base", "index", "left", "right", "mem", "fpcw" ],
+       latency   => 20,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"vfsin" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Sin: Sin(a) = sin(a)",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "latency"   => 150,
+l_vfprem => {
+       cmp_attr  => "return 1;",
+       arity     => 2,
 },
 
-"vfcos" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Cos: Cos(a) = cos(a)",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "latency"   => 150,
+vfabs => {
+       irn_flags => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       ins       => [ "value" ],
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"vfsqrt" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Sqrt: Sqrt(a) = a ^ 0.5",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "latency"   => 30,
+vfchs => {
+       irn_flags => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       ins       => [ "value" ],
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
 # virtual Load and Store
 
-"vfld" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "virtual fp Load: Load(ptr, mem) = LD ptr -> reg",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 2,
-},
-
-"vfst" => {
-  "op_flags"  => "L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "virtual fp Store: Store(ptr, val, mem) = ST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
-  "outs"      => [ "M" ],
-  "latency"   => 2,
+vfld => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
+       ins       => [ "base", "index", "mem" ],
+       outs      => [ "res", "M" ],
+       attr      => "ir_mode *load_mode",
+       init_attr => "attr->attr.ls_mode = load_mode;",
+       latency   => 2,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfst => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "vfp", "none" ] },
+       ins       => [ "base", "index", "val", "mem" ],
+       attr      => "ir_mode *store_mode",
+       init_attr => "attr->attr.ls_mode = store_mode;",
+       latency   => 2,
+       units     => [ "VFP" ],
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
 # Conversions
 
-"vfild" => {
-  "comment"   => "virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
-  "outs"      => [ "res", "M" ],
-  "latency"   => 4,
+vfild => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "vfp", "none" ] },
+       outs      => [ "res", "M" ],
+       ins       => [ "base", "index", "mem" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
 },
 
-"l_vfild" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "lowered virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
-  "outs"      => [ "res", "M" ],
-  "arity"     => 2,
+l_vfild => {
+       cmp_attr  => "return 1;",
+       outs      => [ "res", "M" ],
+       arity     => 2,
 },
 
-"vfist" => {
-  "comment"   => "virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
-  "outs"      => [ "M" ],
-  "latency"   => 4,
+vfist => {
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "vfp", "fpcw", "none" ] },
+       ins       => [ "base", "index", "val", "fpcw", "mem" ],
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"l_vfist" => {
-  "cmp_attr"  => "  return 1;\n",
-  "comment"   => "lowered virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
-  "outs"      => [ "M" ],
-  "arity"     => 3,
+l_vfist => {
+       cmp_attr  => "return 1;",
+       state     => "exc_pinned",
+       arity     => 3,
+       mode      => "mode_M",
 },
 
 
 # constants
 
-"vfldz" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load 0.0: Ld 0.0 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfld1" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load 1.0: Ld 1.0 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfldpi" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load pi: Ld pi -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfldln2" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load ln 2: Ld ln 2 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfldlg2" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load lg 2: Ld lg 2 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfldl2t" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load ld 10: Ld ld 10 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfldl2e" => {
-  "irn_flags" => "R",
-  "comment"   => "virtual fp Load ld e: Ld ld e -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 4,
-},
-
-"vfConst" => {
-  "op_flags"  => "c",
-  "irn_flags" => "R",
-  "init_attr" => "  set_ia32_ls_mode(res, mode);",
-  "comment"   => "represents a virtual floating point constant",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "latency"   => 3,
+vfldz => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfld1 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldpi => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldln2 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldlg2 => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldl2t => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
+},
+
+vfldl2e => {
+       irn_flags => "R",
+       reg_req   => { out => [ "vfp" ] },
+       latency   => 4,
+       units     => [ "VFP" ],
+       mode      => "mode_E",
+       attr_type => "ia32_x87_attr_t",
 },
 
 # other
 
-"vfCondJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "represents a virtual floating point compare",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "none", "none", "eax" ] },
-  "outs"      => [ "false", "true", "temp_reg_eax" ],
-  "latency"   => 10,
+vfCmpJmp => {
+       state     => "pinned",
+       op_flags  => "L|X|Y",
+       reg_req   => { in => [ "vfp", "vfp" ], out => [ "none", "none", "eax" ] },
+       ins       => [ "left", "right" ],
+       outs      => [ "false", "true", "temp_reg_eax" ],
+       attr      => "long pnc",
+       init_attr => "attr->attr.pn_code = pnc;",
+       latency   => 10,
+       units     => [ "VFP" ],
+       attr_type => "ia32_x87_attr_t",
 },
 
 #------------------------------------------------------------------------#
@@ -1412,345 +1949,375 @@ else {
 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
 #------------------------------------------------------------------------#
 
-"fadd" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
-  "reg_req"   => { },
-  "emit"      => '. fadd %ia32_emit_x87_binop /* x87 fadd(%A3, %A4) -> %D1 */',
-},
-
-"faddp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
-  "reg_req"   => { },
-  "emit"      => '. faddp %ia32_emit_x87_binop /* x87 fadd(%A3, %A4) -> %D1 */',
-},
-
-"fmul" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
-  "reg_req"   => { },
-  "emit"      => '. fmul %ia32_emit_x87_binop /* x87 fmul(%A3, %A4) -> %D1 */',
-},
-
-"fmulp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
-  "reg_req"   => { },
-  "emit"      => '. fmulp %ia32_emit_x87_binop /* x87 fmul(%A3, %A4) -> %D1 */',,
-},
-
-"fsub" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
-  "reg_req"   => { },
-  "emit"      => '. fsub %ia32_emit_x87_binop /* x87 fsub(%A3, %A4) -> %D1 */',
-},
-
-"fsubp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
-  "reg_req"   => { },
-  "emit"      => '. fsubp %ia32_emit_x87_binop /* x87 fsub(%A3, %A4) -> %D1 */',
-},
-
-"fsubr" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "irn_flags" => "R",
-  "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
-  "reg_req"   => { },
-  "emit"      => '. fsubr %ia32_emit_x87_binop /* x87 fsubr(%A3, %A4) -> %D1 */',
+# Note: gas is strangely buggy: fdivrp and fdivp as well as fsubrp and fsubp
+#       are swapped, we work this around in the emitter...
+
+fadd => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fadd%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+faddp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. faddp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fmul => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fmul%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fmulp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fmulp%XM %x87_binop',,
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsub => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fsub%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fsubrp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubr => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       irn_flags => "R",
+       reg_req   => { },
+       emit      => '. fsubr%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fsubrp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       irn_flags => "R",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fsubp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fprem => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fprem1',
+       attr_type => "ia32_x87_attr_t",
+},
+
+# this node is just here, to keep the simulator running
+# we can omit this when a fprem simulation function exists
+fpremp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fprem1',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdiv => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fdiv%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fdivrp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivr => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fdivr%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fdivrp => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+# see note about gas bugs
+       emit      => '. fdivp%XM %x87_binop',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fabs => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fabs',
+       attr_type => "ia32_x87_attr_t",
+},
+
+fchs => {
+       op_flags  => "R|K",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fchs',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fsubrp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "irn_flags" => "R",
-  "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
-  "reg_req"   => { },
-  "emit"      => '. fsubrp %ia32_emit_x87_binop /* x87 fsubr(%A3, %A4) -> %D1 */',
-},
+# x87 Load and Store
 
-"fdiv" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Div: Div(a, b) = a / b",
-  "reg_req"   => { },
-  "emit"      => '. fdiv %ia32_emit_x87_binop /* x87 fdiv(%A3, %A4) -> %D1 */',
+fld => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fld%XM %AM',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fdivp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Div: Div(a, b) = a / b",
-  "reg_req"   => { },
-  "emit"      => '. fdivp %ia32_emit_x87_binop /* x87 fdiv(%A3, %A4) -> %D1 */',
+fst => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fst%XM %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fdivr" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
-  "reg_req"   => { },
-  "emit"      => '. fdivr %ia32_emit_x87_binop /* x87 fdivr(%A3, %A4) -> %D1 */',
+fstp => {
+       rd_constructor => "NONE",
+       op_flags  => "R|L|F",
+       state     => "exc_pinned",
+       reg_req   => { },
+       emit      => '. fstp%XM %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fdivrp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
-  "reg_req"   => { },
-  "emit"      => '. fdivrp %ia32_emit_x87_binop /* x87 fdivr(%A3, %A4) -> %D1 */',
-},
+# Conversions
 
-"fabs" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Abs: Abs(a) = |a|",
-  "reg_req"   => { },
-  "emit"      => '. fabs /* x87 fabs(%A1) -> %D1 */',
+fild => {
+       op_flags  => "R",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fild%M %AM',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fchs" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Chs: Chs(a) = -a",
-  "reg_req"   => { },
-  "emit"      => '. fchs /* x87 fchs(%A1) -> %D1 */',
+fist => {
+       op_flags  => "R",
+       state     => "exc_pinned",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fist%M %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fsin" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Sin: Sin(a) = sin(a)",
-  "reg_req"   => { },
-  "emit"      => '. fsin /* x87 sin(%A1) -> %D1 */',
+fistp => {
+       op_flags  => "R",
+       state     => "exc_pinned",
+       rd_constructor => "NONE",
+       reg_req   => { },
+       emit      => '. fistp%M %AM',
+       mode      => "mode_M",
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fcos" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Cos: Cos(a) = cos(a)",
-  "reg_req"   => { },
-  "emit"      => '. fcos /* x87 cos(%A1) -> %D1 */',
-},
+# constants
 
-"fsqrt" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp Sqrt: Sqrt(a) = a ^ 0.5",
-  "reg_req"   => { },
-  "emit"      => '. fsqrt $ /* x87 sqrt(%A1) -> %D1 */',
+fldz => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldz',
+       attr_type => "ia32_x87_attr_t",
 },
 
-# x87 Load and Store
-
-"fld" => {
-  "rd_constructor" => "NONE",
-  "op_flags"  => "R|L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "x87 fp Load: Load(ptr, mem) = LD ptr -> reg",
-  "reg_req"   => { },
-  "emit"      => '. fld %ia32_emit_am /* Load((%A1)) -> %D1 */',
+fld1 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fld1',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fst" => {
-  "rd_constructor" => "NONE",
-  "op_flags"  => "R|L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
-  "reg_req"   => { },
-  "emit"      => '. fst %ia32_emit_am /* Store(%A3) -> (%A1) */',
+fldpi => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldpi',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fstp" => {
-  "rd_constructor" => "NONE",
-  "op_flags"  => "R|L|F",
-  "state"     => "exc_pinned",
-  "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
-  "reg_req"   => { },
-  "emit"      => '. fstp %ia32_emit_am /* Store(%A3) -> (%A1) and pop */',
+fldln2 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldln2',
+       attr_type => "ia32_x87_attr_t",
 },
 
-# Conversions
-
-"fild" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
-  "reg_req"   => { },
-  "emit"      => '. fild %ia32_emit_am /* integer Load((%A1)) -> %D1 */',
+fldlg2 => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldlg2',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fist" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
-  "reg_req"   => { },
-  "emit"      => '. fist %ia32_emit_am /* integer Store(%A3) -> (%A1) */',
+fldl2t => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldll2t',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fistp" => {
-  "op_flags"  => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
-  "reg_req"   => { },
-  "emit"      => '. fistp %ia32_emit_am /* integer Store(%A3) -> (%A1) and pop */',
+fldl2e => {
+       op_flags  => "R|c|K",
+       irn_flags  => "R",
+       reg_req   => { },
+       emit      => '. fldl2e',
+       attr_type => "ia32_x87_attr_t",
 },
 
-# constants
-
-"fldz" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load 0.0: Ld 0.0 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldz /* x87 0.0 -> %D1 */',
-},
+# fxch, fpush, fpop
+# Note that it is NEVER allowed to do CSE on these nodes
+# Moreover, note the virtual register requierements!
 
-"fld1" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load 1.0: Ld 1.0 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fld1 /* x87 1.0 -> %D1 */',
+fxch => {
+       op_flags  => "R|K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. fxch %X0',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fldpi" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load pi: Ld pi -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldpi /* x87 pi -> %D1 */',
+fpush => {
+       op_flags  => "R|K",
+       reg_req   => {},
+       cmp_attr  => "return 1;",
+       emit      => '. fld %X0',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fldln2" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load ln 2: Ld ln 2 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldln2 /* x87 ln(2) -> %D1 */',
+fpushCopy => {
+       op_flags  => "R",
+       reg_req   => { in => [ "vfp"], out => [ "vfp" ] },
+       cmp_attr  => "return 1;",
+       emit      => '. fld %X0',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fldlg2" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load lg 2: Ld lg 2 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldlg2 /* x87 log(2) -> %D1 */',
+fpop => {
+       op_flags  => "R|K",
+       reg_req   => { },
+       cmp_attr  => "return 1;",
+       emit      => '. fstp %X0',
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fldl2t" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load ld 10: Ld ld 10 -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldll2t /* x87 ld(10) -> %D1 */',
-},
+# compare
 
-"fldl2e" => {
-  "op_flags"  => "R|c",
-  "irn_flags"  => "R",
-  "comment"   => "x87 fp Load ld e: Ld ld e -> reg",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fldl2e /* x87 ld(e) -> %D1 */',
+fcomJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fldConst" => {
-  "op_flags"  => "R|c",
-  "irn_flags" => "R",
-  "rd_constructor" => "NONE",
-  "comment"   => "represents a x87 constant",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { "out" => [ "vfp" ] },
-  "emit"      => '. fld %ia32_emit_adr /* Load fConst into register -> %D1 */',
+fcompJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-# fxch, fpush, fpop
-# Note that it is NEVER allowed to do CSE on these nodes
-# Moreover, note the virtual register requierements!
-
-"fxch" => {
-  "op_flags"  => "R|K",
-  "comment"   => "x87 stack exchange",
-  "reg_req"   => { },
-  "cmp_attr"  => "  return 1;\n",
-  "emit"      => '. fxch %X1 /* x87 swap %X1, %X3 */',
+fcomppJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fpush" => {
-  "op_flags"  => "R|K",
-  "comment"   => "x87 stack push",
-  "reg_req"   => {},
-  "cmp_attr"  => "  return 1;\n",
-  "emit"      => '. fld %X1 /* x87 push %X1 */',
+fcomrJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fpushCopy" => {
-  "op_flags"  => "R",
-  "comment"   => "x87 stack push",
-  "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
-  "cmp_attr"  => "  return 1;\n",
-  "emit"      => '. fld %X1 /* x87 push %X1 */',
+fcomrpJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-"fpop" => {
-  "op_flags"  => "R|K",
-  "comment"   => "x87 stack pop",
-  "reg_req"   => { },
-  "cmp_attr"  => "  return 1;\n",
-  "emit"      => '. fstp %X1 /* x87 pop %X1 */',
+fcomrppJmp => {
+       op_flags  => "L|X|Y",
+       reg_req   => { },
+       attr_type => "ia32_x87_attr_t",
 },
 
-# compare
-
-"fcomJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
-},
 
-"fcompJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare and pop",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
-},
+# -------------------------------------------------------------------------------- #
+#  ____ ____  _____                  _                               _             #
+# / ___/ ___|| ____| __   _____  ___| |_ ___  _ __   _ __   ___   __| | ___  ___   #
+# \___ \___ \|  _|   \ \ / / _ \/ __| __/ _ \| '__| | '_ \ / _ \ / _` |/ _ \/ __|  #
+#  ___) |__) | |___   \ V /  __/ (__| || (_) | |    | | | | (_) | (_| |  __/\__ \  #
+# |____/____/|_____|   \_/ \___|\___|\__\___/|_|    |_| |_|\___/ \__,_|\___||___/  #
+#                                                                                  #
+# -------------------------------------------------------------------------------- #
 
-"fcomppJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare and pop twice",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
-},
 
-"fcomrJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare reverse",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
-},
+# Spilling and reloading of SSE registers, hardcoded, not generated #
 
-"fcomrpJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare reverse and pop",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
+xxLoad => {
+       op_flags  => "L|F",
+       state     => "exc_pinned",
+       reg_req   => { in => [ "gp", "gp", "none" ], out => [ "xmm", "none" ] },
+       emit      => '. movdqu %D0, %AM',
+       outs      => [ "res", "M" ],
+       units     => [ "SSE" ],
 },
 
-"fcomrppJmp" => {
-  "op_flags"  => "L|X|Y",
-  "comment"   => "floating point compare reverse and pop twice",
-  "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
-  "reg_req"   => { },
+xxStore => {
+       op_flags => "L|F",
+       state    => "exc_pinned",
+       reg_req  => { in => [ "gp", "gp", "xmm", "none" ] },
+       emit     => '. movdqu %binop',
+       units    => [ "SSE" ],
+       mode     => "mode_M",
 },
 
 ); # end of %nodes
+
+# Include the generated SIMD node specification written by the SIMD optimization
+$my_script_name = dirname($myname) . "/../ia32/ia32_simd_spec.pl";
+unless ($return = do $my_script_name) {
+       warn "couldn't parse $my_script_name: $@" if $@;
+       warn "couldn't do $my_script_name: $!"    unless defined $return;
+       warn "couldn't run $my_script_name"       unless $return;
+}