shouldn't be here anymore
[libfirm] / ir / be / scripts / generate_new_opcodes.pl
index 663c82f..363b56e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 #
-# Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+# Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
 #
 # This file is part of libFirm.
 #
@@ -39,6 +39,7 @@ our $additional_opcodes;
 our %nodes;
 our %operands;
 our %cpu;
+our $default_op_attr_type;
 our $default_attr_type;
 our $default_cmp_attr;
 our $default_copy_attr;
@@ -68,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, latency);",
+               "$default_attr_type" => "\tinit_${arch}_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
        );
 }
 if(!defined($default_cmp_attr)) {
@@ -376,12 +377,6 @@ foreach my $op (keys(%nodes)) {
                                $temp .= "\tint       n_res   = ${out_arity};\n";
                        }
 
-                       my $latency = $n{"latency"};
-                       if (!defined($latency)) {
-                               $latency = 1;
-                       }
-                       $temp .= "\tunsigned  latency = ${latency};\n";
-
                        if (defined($known_mode)) {
                                $temp .= "\tir_mode  *mode    = ${known_mode};\n";
                        }
@@ -508,34 +503,37 @@ foreach my $op (keys(%nodes)) {
                        }
                        $temp .= "${attr_init_code}\n";
                        if(defined($custom_init_attr_func)) {
-                               $temp .= &$custom_init_attr_func(\%n);
+                               $temp .= &$custom_init_attr_func(\%n, $op);
                        }
                        $temp .= "\n";
 
                        # set flags for outs
-                       if ($#out_flags >= 0) {
-                               $temp .= "\t/* set flags for outs */\n";
-                               for (my $idx = 0; $idx <= $#out_flags; $idx++) {
-                                       my $flags  = "";
-                                       my $prefix = "";
-
-                                       foreach my $flag (split(/\|/, $out_flags[$idx])) {
-                                               if ($flag eq "I") {
-                                                       $flags .= $prefix."arch_irn_flags_ignore";
-                                                       $prefix = " | ";
+                       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 = " | ";
+                                                       }
                                                }
-                                               elsif ($flag eq "S") {
-                                                       $flags .= $prefix."arch_irn_flags_modify_sp";
-                                                       $prefix = " | ";
-                                               }
-                                       }
 
-                                       $temp .= "\tset_$arch\_out_flags(res, $flags, $idx);\n";
+                                               $temp .= "\tset_$arch\_out_flags(res, $flags, $idx);\n";
+                                       }
                                }
-                               $temp .= "\n";
                        }
 
-
                        if (exists($n{"init_attr"})) {
                                $temp .= "\tattr = get_irn_generic_attr(res);\n";
                                $temp .= "\t".$n{"init_attr"}."\n";
@@ -586,6 +584,15 @@ foreach my $op (keys(%nodes)) {
        $temp .= "|M, ".translate_arity($arity).", 0, sizeof(${attr_type}), &ops);\n";
        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");
+               if(defined($n{op_attr_init})) {
+                       push(@obst_new_irop, "\t".$n{op_attr_init}."\n");
+               }
+               push(@obst_new_irop, "\tset_op_attr(op_$op, attr);\n");
+       }
+
        push(@obst_enum_op, "\tiro_$op,\n");
 
        push(@obst_header, "\n");
@@ -706,6 +713,13 @@ void $arch\_create_opcodes(void) {
        ir_op_ops  ops;
        int        cur_opcode;
        static int run_once = 0;
+ENDOFMAIN
+
+       if(defined($default_op_attr_type)) {
+               print OUT "\t$default_op_attr_type *attr;\n";
+       }
+
+print OUT<<ENDOFMAIN;
 
        if (run_once)
                return;
@@ -962,8 +976,8 @@ sub build_subset_class_func {
        my $class         = undef;
        my $has_limit     = 0;
        my $limit_name;
-       my $same_pos      = undef;
-       my $different_pos = undef;
+       my $same_pos      = 0;
+       my $different_pos = 0;
        my $temp;
        my @obst_init;
        my @obst_limits;
@@ -978,29 +992,38 @@ sub build_subset_class_func {
        my $is_in = shift;
        my @regs  = split(/ /, shift);
 
-       my $outin = $is_in ? "out" : "in";
-
        my @idx_class = build_inout_idx_class($node, $op, !$is_in);
 
        # set/unset registers
 CHECK_REQS: foreach (@regs) {
-               if (/(!)?$outin\_r(\d+)/) {
-                       if (($1 && defined($different_pos)) || (!$1 && defined($same_pos))) {
-                               print STDERR "Multiple in/out references of same type in one requirement not allowed.\n";
+               if (!$is_in && /(!)?in_r(\d+)/) {
+                       my $bit_pos = 1 << ($2 - 1);
+                       if ($different_pos & $bit_pos) {
+                               if ($1) {
+                                       print STDERR "duplicate !in constraint\n";
+                               } else {
+                                       print STDERR "conflicting !in and in constraints\n";
+                               }
+                               return (undef, undef, undef, undef);
+                       }
+
+                       if ($same_pos & $bit_pos) {
+                               if ($1) {
+                                       print STDERR "conflicting !in and in constraints\n";
+                               } else {
+                                       print STDERR "duplicate in constraint\n";
+                               }
                                return (undef, undef, undef, undef);
                        }
 
                        if ($1) {
-                               $different_pos = $is_in ? -$2 : $2 - 1;
+                               $different_pos |= $bit_pos;
                        } else {
-                               $same_pos = $is_in ? -$2 : $2 - 1;
+                               $same_pos      |= $bit_pos;
                        }
 
                        $class = $idx_class[$2 - 1];
                        next CHECK_REQS;
-               } elsif (/!in/) {
-                       $class = $idx_class[0];
-                       return ($class, "NULL", undef, 666);
                }
 
                # check for negate
@@ -1133,8 +1156,8 @@ sub generate_requirements {
        arch_register_req_type_none,
        NULL,                         /* regclass */
        NULL,                         /* limit bitset */
-       -1,                           /* same pos */
-       -1                            /* different pos */
+       0,                            /* same pos */
+                                   /* different pos */
 };
 
 EOF
@@ -1148,8 +1171,8 @@ EOF
        arch_register_req_type_should_be_different_from_all,
        & ${arch}_reg_classes[CLASS_${arch}_${class}],
        NULL,        /* limit bitset */
-       -1,          /* same pos */
-       -1           /* different pos */
+       0,           /* same pos */
+                  /* different pos */
 };
 
 EOF
@@ -1160,8 +1183,8 @@ EOF
        arch_register_req_type_normal,
        & ${arch}_reg_classes[CLASS_${arch}_${class}],
        NULL,        /* limit bitset */
-       -1,          /* same pos */
-       -1           /* different pos */
+       0,           /* same pos */
+                  /* different pos */
 };
 
 EOF
@@ -1178,24 +1201,17 @@ EOF
                if (defined($limit_bitset) && $limit_bitset ne "NULL") {
                        push(@req_type_mask, "arch_register_req_type_limited");
                }
-               if (defined($same_pos)) {
+               if ($same_pos != 0) {
                        push(@req_type_mask, "arch_register_req_type_should_be_same");
                }
-               if (defined($different_pos)) {
-                       if ($different_pos == 666) {
-                               push(@req_type_mask, "arch_register_req_type_should_be_different_from_all");
-                               undef $different_pos;
-                       } else {
-                               push(@req_type_mask, "arch_register_req_type_should_be_different");
-                       }
+               if ($different_pos != 0) {
+                       push(@req_type_mask, "arch_register_req_type_should_be_different");
                }
                my $reqtype      = join(" | ", @req_type_mask);
 
                if(!defined($limit_bitset)) {
                        $limit_bitset = "NULL";
                }
-               my $same_pos_str      = (defined($same_pos) ? $same_pos : "-1");
-               my $different_pos_str = (defined($different_pos) ? $different_pos : "-1");
 
                $class  = $regclass;
                $result = <<EOF;
@@ -1203,8 +1219,8 @@ EOF
        ${reqtype},
        & ${arch}_reg_classes[CLASS_${arch}_${class}],
        ${limit_bitset},
-       ${same_pos_str},       /* same pos */
-       ${different_pos_str}        /* different pos */
+       ${same_pos},        /* same pos */
+       ${different_pos}        /* different pos */
 };
 
 EOF