- Reworked backends to put out register_requirements into backend_info_t
[libfirm] / ir / be / scripts / generate_new_opcodes.pl
index b691e79..7f791fe 100755 (executable)
@@ -69,7 +69,7 @@ if(!defined($default_attr_type)) {
 }
 if(!defined(%init_attr)) {
        %init_attr = (
-               "$default_attr_type" => "\tinit_${arch}_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
+               "$default_attr_type" => "\tinit_${arch}_attributes(res, flags, in_reqs, exec_units, n_res);",
        );
 }
 if(!defined($default_cmp_attr)) {
@@ -265,6 +265,12 @@ foreach my $op (keys(%nodes)) {
                $attr_type = $default_attr_type;
        }
 
+       # determine hash function
+       my $hash_func;
+       if (exists($n{"hash_func"})) {
+               $hash_func = $n{"hash_func"};
+       }
+
        # determine compare function
        my $cmp_attr_func;
        if (exists($n{"cmp_attr"})) {
@@ -311,7 +317,7 @@ foreach my $op (keys(%nodes)) {
                my $complete_args = "";
                $temp             = "";
 
-               $temp = "ir_node *new_rd_$op(dbg_info *db, ir_graph *irg, ir_node *block";
+               $temp = "ir_node *new_bd_$op(dbg_info *db, ir_node *block";
                if (!exists($n{"args"})) { # default args
                        if ($arity == $ARITY_VARIABLE) {
                                $complete_args = ", int arity, ir_node *in[]";
@@ -354,43 +360,64 @@ foreach my $op (keys(%nodes)) {
 
                # emit constructor code
                if (!exists($n{"rd_constructor"})) { # default constructor
-                       $temp  = "\tir_node  *res;\n";
-                       $temp .= "\tir_op    *op      = op_${op};\n";
-                       $temp .= "\tint       flags   = 0;\n";
+                       $temp = <<EOF;
+       ir_node        *res;
+       ir_op          *op      = op_${op};
+       int             flags   = 0;
+       backend_info_t *info;
+EOF
 
                        if($arity == $ARITY_DYNAMIC) {
-                               $temp .= "\tint        arity   = -1;\n";
-                               $temp .= "\tir_node  **in      = NULL;\n";
+                               $temp .= <<EOF;
+       int             arity   = -1;
+       ir_node       **in      = NULL;
+EOF
                        } elsif($arity == $ARITY_VARIABLE) {
                        } else {
-                               $temp .= "\tint       arity   = $arity;\n";
+                               $temp .= <<EOF;
+       int             arity   = $arity;
+EOF
                                if($arity > 0) {
-                                       $temp .= "\tir_node  *in[$arity];\n";
+                                       $temp .= <<EOF;
+       ir_node        *in[$arity];
+EOF
                                } else {
-                                       $temp .= "\tir_node **in    = NULL;\n";
+                                       $temp .= <<EOF;
+       ir_node       **in    = NULL;
+EOF
                                }
                        }
                        if($out_arity == $ARITY_DYNAMIC) {
-                               $temp .= "\tint       n_res   = -1;\n";
+                               $temp .= <<EOF;
+       int             n_res   = -1;
+EOF
                        } elsif($out_arity == $ARITY_VARIABLE) {
                        } else {
-                               $temp .= "\tint       n_res   = ${out_arity};\n";
+                               $temp .= <<EOF;
+       int             n_res   = ${out_arity};
+EOF
                        }
 
                        if (defined($known_mode)) {
-                               $temp .= "\tir_mode  *mode    = ${known_mode};\n";
+                               $temp .= <<EOF;
+       ir_mode        *mode    = ${known_mode};
+EOF
                        }
 
                        # set up static variables for cpu execution unit assigments
                        if (exists($n{"units"})) {
                                $temp .= gen_execunit_list_initializer($n{"units"});
                        } else {
-                               $temp .= "\tstatic const be_execution_unit_t ***exec_units = NULL;\n";
+                               $temp .= <<EOF;
+       static const be_execution_unit_t ***exec_units = NULL;
+EOF
                        }
 
                        undef my $in_req_var;
                        undef my $out_req_var;
 
+                       my $set_out_reqs = "";
+
                        # set up static variables for requirements and registers
                        if (exists($n{"reg_req"})) {
                                my %req = %{ $n{"reg_req"} };
@@ -435,23 +462,20 @@ foreach my $op (keys(%nodes)) {
                                                die "Fatal error: Out-Arity and number of out requirements don't match for ${op}\n";
                                        }
 
-                                       $temp .= "\tstatic const arch_register_req_t *out_reqs[] =\n";
-                                       $temp .= "\t{\n";
                                        for ($idx = 0; $idx <= $#out; $idx++) {
                                                my $req = $out[$idx];
                                                my $reqstruct = generate_requirements($req, \%n, $op, $idx, 0);
-                                               $temp .= "\t\t& ${reqstruct},\n";
+                                               $set_out_reqs .= <<EOF;
+       info->out_infos[${idx}].req = &${reqstruct};
+EOF
                                        }
-                                       $temp .= "\t};\n";
                                } else {
                                        if($out_arity > 0) {
                                                die "Fatal error: need out requirements for ${op}\n";
                                        }
-                                       $temp .= "\tstatic const arch_register_req_t **out_reqs = NULL;\n";
                                }
                        } else {
                                $temp .= "\tstatic const arch_register_req_t **in_reqs = NULL;\n";
-                               $temp .= "\tstatic const arch_register_req_t **out_reqs = NULL;\n";
                        }
                        if(exists($n{"init_attr"})) {
                                $temp .= "\t${attr_type} *attr;\n";
@@ -481,70 +505,48 @@ foreach my $op (keys(%nodes)) {
                                                $temp .= "\tflags |= arch_irn_flags_rematerializable;\n";
                                        } elsif ($flag eq "N") {
                                                $temp .= "\tflags |= arch_irn_flags_dont_spill;\n";
-                                       } elsif ($flag eq "I") {
-                                               $temp .= "\tflags |= arch_irn_flags_ignore;\n";
-                                       } elsif ($flag eq "S") {
-                                               $temp .= "\tflags |= arch_irn_flags_modify_sp;\n";
+                                       } else {
+                                               die "Fatal error: unknown flag $flag for ${op}\n";
                                        }
                                }
                                $temp .= "\n";
                        }
 
-                       $temp .= "\t/* create node */\n";
-                       $temp .= "\tassert(op != NULL);\n";
-                       $temp .= "\tres = new_ir_node(db, irg, block, op, mode, arity, in);\n";
-                       $temp .= "\n";
-
-                       $temp .= "\t/* init node attributes */\n";
                        # lookup init function
                        my $attr_init_code = $init_attr{$attr_type};
                        if(!defined($attr_init_code)) {
                                die "Fatal error: Couldn't find attribute initialisation code for type '${attr_type}'";
                        }
-                       $temp .= "${attr_init_code}\n";
+                       my $custominit = "";
                        if(defined($custom_init_attr_func)) {
-                               $temp .= &$custom_init_attr_func(\%n, $op);
+                               $custominit .= &$custom_init_attr_func(\%n, $op);
                        }
-                       $temp .= "\n";
 
-                       # set flags for outs
-                       if (exists($n{"outs"})) {
-                               undef my @outs;
-                               @outs     = @{ $n{"outs"} };
-
-                               for (my $idx = 0; $idx <= $#outs; $idx++) {
-                                       # check, if we have additional flags annotated to out
-                                       if ($outs[$idx] =~ /:((S|I)(\|(S|I))*)/) {
-                                               my $flag_string = $1;
-                                               my $prefix = "";
-                                               my $flags  = "";
-
-                                               foreach my $flag (split(/\|/, $flag_string)) {
-                                                       if ($flag eq "I") {
-                                                               $flags .= $prefix."arch_irn_flags_ignore";
-                                                               $prefix = " | ";
-                                                       } elsif ($flag eq "S") {
-                                                               $flags .= $prefix."arch_irn_flags_modify_sp";
-                                                               $prefix = " | ";
-                                                       }
-                                               }
-
-                                               $temp .= "\tset_$arch\_out_flags(res, $flags, $idx);\n";
-                                       }
-                               }
-                       }
+                       $temp .= <<EOF;
+       /* create node */
+       assert(op != NULL);
+       res = new_ir_node(db, current_ir_graph, block, op, mode, arity, in);
+
+       /* init node attributes */
+       ${attr_init_code}
+       ${custominit}
+       info = be_get_info(res);
+       ${set_out_reqs}
+
+EOF
 
                        if (exists($n{"init_attr"})) {
                                $temp .= "\tattr = get_irn_generic_attr(res);\n";
                                $temp .= "\t".$n{"init_attr"}."\n";
                        }
 
-                       $temp .= "\t/* optimize node */\n";
-                       $temp .= "\tres = optimize_node(res);\n";
-                       $temp .= "\tirn_vrfy_irg(res, irg);\n";
-                       $temp .= "\n";
+                       $temp .= <<EOF;
+       /* optimize node */
+       res = optimize_node(res);
+       irn_vrfy_irg(res, current_ir_graph);
 
-                       $temp .= "\treturn res;\n";
+       return res;
+EOF
 
                        push(@obst_constructor, $temp);
                }
@@ -575,6 +577,9 @@ foreach my $op (keys(%nodes)) {
        if (defined($copy_attr_func)) {
                push(@obst_new_irop, "\tops.copy_attr = ${copy_attr_func};\n");
        }
+       if (defined($hash_func)) {
+               push(@obst_new_irop, "\tops.hash = ${hash_func};\n");
+       }
 
        $n_opcodes++;
        my $n_res = $out_arity;
@@ -586,8 +591,7 @@ foreach my $op (keys(%nodes)) {
        push(@obst_new_irop, $temp);
        push(@obst_new_irop, "\tset_op_tag(op_$op, $arch\_op_tag);\n");
        if(defined($default_op_attr_type)) {
-               push(@obst_new_irop, "\tattr = ($default_op_attr_type *) xmalloc(sizeof(attr[0]));\n");
-               push(@obst_new_irop, "\tmemset(attr, 0, sizeof(attr[0]));\n");
+               push(@obst_new_irop, "\tattr = &attrs[iro_$op];\n");
                if(defined($n{op_attr_init})) {
                        push(@obst_new_irop, "\t".$n{op_attr_init}."\n");
                }
@@ -709,16 +713,17 @@ void $arch\_create_opcodes(const arch_irn_ops_t *be_ops) {
 #define K   irop_flag_keep
 #define M   irop_flag_machine
 #define O   irop_flag_machine_op
+#define NB  irop_flag_dump_noblock
+#define NI  irop_flag_dump_noinput
 #define R   (irop_flag_user << 0)
 
        ir_op_ops  ops;
        int        cur_opcode;
        static int run_once = 0;
-       int        i;
 ENDOFMAIN
 
-       if(defined($default_op_attr_type)) {
-               print OUT "\t$default_op_attr_type *attr;\n";
+       if (defined($default_op_attr_type)) {
+               print OUT "\t$default_op_attr_type *attr, *attrs;\n";
        }
 
 print OUT<<ENDOFMAIN;
@@ -727,18 +732,16 @@ print OUT<<ENDOFMAIN;
                return;
        run_once = 1;
 
-       /* we handle all middleend nodes as well that have no other handler */
-       for (i = 0; i <= iro_Last; ++i) {
-               ir_op *op      = get_irp_opcode(i);
-               if (op->ops.be_ops == NULL)
-                       op->ops.be_ops = be_ops;
-       }
-
        cur_opcode = get_next_ir_opcodes(iro_$arch\_last);
 
        $arch\_opcode_start = cur_opcode;
 ENDOFMAIN
 
+       if (defined($default_op_attr_type)) {
+               print OUT "\tattrs = xmalloc(sizeof(attr[0]) * iro_$arch\_last);\n";
+               print OUT "\tmemset(attrs, 0, sizeof(attr[0]) * iro_$arch\_last);\n";
+       }
+
 print OUT @obst_new_irop;
 print OUT "\n";
 print OUT "\t$arch\_register_additional_opcodes(cur_opcode);\n" if (defined($additional_opcodes));
@@ -884,6 +887,7 @@ TP_SEARCH:  foreach my $cur_type (keys(%cpu)) {
 sub mangle_requirements {
        my $reqs  = shift;
        my $class = shift;
+       my $flags = shift;
 
        my @alternatives = split(/ /, $reqs);
        for(my $idx = 0; $idx < scalar(@alternatives); $idx++) {
@@ -893,6 +897,10 @@ sub mangle_requirements {
        @alternatives = sort @alternatives;
 
        my $name = $class."_".join('_', @alternatives);
+       if (defined($flags)) {
+               $flags =~ s/\|/_/g;
+               $name .= "_$flags";
+       }
 
        return $name;
 }
@@ -946,13 +954,14 @@ sub build_inout_idx_class {
 
                for (my $idx = 0; $idx <= $#reqs; $idx++) {
                        my $class = undef;
+                       my ($req,) = split(/:/, $reqs[$idx]);
 
-                       if ($reqs[$idx] eq "none") {
+                       if ($req eq "none") {
                                $class = "none";
-                       } elsif (is_reg_class($reqs[$idx])) {
-                               $class = $reqs[$idx];
+                       } elsif (is_reg_class($req)) {
+                               $class = $req;
                        } else {
-                               my @regs = split(/ /, $reqs[$idx]);
+                               my @regs = split(/ /, $req);
 GET_CLASS:             foreach my $reg (@regs) {
                                        if ($reg =~ /!?(in|out)\_r\d+/ || $reg =~ /!in/) {
                                                $class = "UNKNOWN_CLASS";
@@ -1000,6 +1009,7 @@ sub build_subset_class_func {
        my $idx   = shift;
        my $is_in = shift;
        my @regs  = split(/ /, shift);
+       my $flags = shift;
 
        my @idx_class = build_inout_idx_class($node, $op, !$is_in);
 
@@ -1113,7 +1123,7 @@ CHECK_REQS: foreach (@regs) {
                push(@obst_limit_func, "static const unsigned " . $limit_name . "[] = { ");
                my $first = 1;
                my $limitbitsetlen = $regclass2len{$class};
-               my $limitarraylen = $limitbitsetlen / 32 + ($limitbitsetlen % 32 > 0 ? 1 : 0);
+               my $limitarraylen = ($limitbitsetlen+31) / 32;
                for(my $i = 0; $i < $limitarraylen; $i++) {
 
                        my $limitarraypart = $limit_array[$i];
@@ -1150,7 +1160,7 @@ CHECK_REQS: foreach (@regs) {
 # Generate register requirements structure
 ###
 sub generate_requirements {
-       my $reqs  = shift;
+       my ($reqs, $flags) = split(/:/, shift);
        my $node  = shift;
        my $op    = shift;
        my $idx   = shift;
@@ -1158,6 +1168,17 @@ sub generate_requirements {
        my $class = "";
        my $result;
 
+       my @req_type_mask;
+       if (defined($flags)) {
+               foreach my $f (split(/|/, $flags)) {
+                       if ($f eq "I") {
+                               push(@req_type_mask, "arch_register_req_type_ignore");
+                       } elsif ($f eq "S") {
+                               push(@req_type_mask, "arch_register_req_type_produces_sp");
+                       }
+               }
+       }
+
        if ($reqs eq "none") {
 
                $result = <<EOF;
@@ -1169,27 +1190,14 @@ sub generate_requirements {
        0                             /* different pos */
 };
 
-EOF
-       } elsif ($reqs =~ /^new_reg_(.*)$/) {
-               if(!is_reg_class($1)) {
-                       die "$1 is not a register class in requirements for $op\n";
-               }
-               $class  = $1;
-               $result = <<EOF;
-{
-       arch_register_req_type_should_be_different_from_all,
-       & ${arch}_reg_classes[CLASS_${arch}_${class}],
-       NULL,        /* limit bitset */
-       0,           /* same pos */
-       0            /* different pos */
-};
-
 EOF
        } elsif (is_reg_class($reqs)) {
+               push(@req_type_mask, "arch_register_req_type_normal");
+               my $reqtype = join(" | ", @req_type_mask);
                $class  = $reqs;
                $result = <<EOF;
 {
-       arch_register_req_type_normal,
+       ${reqtype},
        & ${arch}_reg_classes[CLASS_${arch}_${class}],
        NULL,        /* limit bitset */
        0,           /* same pos */
@@ -1199,9 +1207,8 @@ EOF
 EOF
 
        } else {
-               my @req_type_mask;
                my ($regclass, $limit_bitset, $same_pos, $different_pos)
-                       = build_subset_class_func($node, $op, $idx, $is_in, $reqs);
+                       = build_subset_class_func($node, $op, $idx, $is_in, $reqs, $flags);
 
                if (!defined($regclass)) {
                        die("Fatal error: Could not build subset for requirements '$reqs' of '$op' pos $idx ... exiting.\n");
@@ -1214,9 +1221,9 @@ EOF
                        push(@req_type_mask, "arch_register_req_type_should_be_same");
                }
                if ($different_pos != 0) {
-                       push(@req_type_mask, "arch_register_req_type_should_be_different");
+                       push(@req_type_mask, "arch_register_req_type_must_be_different");
                }
-               my $reqtype      = join(" | ", @req_type_mask);
+               my $reqtype = join(" | ", @req_type_mask);
 
                if(!defined($limit_bitset)) {
                        $limit_bitset = "NULL";
@@ -1235,7 +1242,7 @@ EOF
 EOF
        }
 
-       my $name = "${arch}_requirements_".mangle_requirements($reqs, $class);
+       my $name = "${arch}_requirements_".mangle_requirements($reqs, $class, $flags);
        if(defined($requirements{$name})) {
                return $name;
        }