fixed some minor bugs
[libfirm] / ir / be / scripts / generate_new_opcodes.pl
index 7b07867..763af88 100755 (executable)
@@ -71,7 +71,8 @@ foreach my $op (keys(%nodes)) {
 
        push(@obst_is_archirn, "is_$op(node)");
 
-       push(@obst_header, "ir_op *get_op_$op(void);\n")
+       push(@obst_header, "extern ir_op *op_$op;\n");
+       push(@obst_header, "ir_op *get_op_$op(void);\n");
        push(@obst_header, "int is_$op(const ir_node *n);\n");
 
        $cmp_attr_func = 0;
@@ -131,9 +132,10 @@ foreach my $op (keys(%nodes)) {
                                print "DEFAULT rd_constructor requires numeric arity! Ignoring op $orig_op!\n";
                                next;
                        }
-                       $temp  = "  $arch\_attr_t *attr;\n";
-                       $temp .= "  ir_node *res;\n";
+
+                       $temp  = "  ir_node *res;\n";
                        $temp .= "  ir_node *in[$arity];\n" if ($arity > 0);
+                       $temp .= "  int flags = 0;\n";
 
                        undef my $in_req_var;
                        undef my $out_req_var;
@@ -181,23 +183,22 @@ foreach my $op (keys(%nodes)) {
                        $temp .= "  irn_vrfy_irg(res, irg);\n\n";
 
                        # set flags
-                       $temp .= "  attr = get_$arch\_attr(res);\n\n";
-                       $temp .= "  attr->flags  = 0;                                 /* clear flags */\n";
-
                        if (exists($n{"irn_flags"})) {
                                foreach my $flag (split(/\|/, $n{"irn_flags"})) {
                                        if ($flag eq "R") {
-                                               $temp .= "  attr->flags |= arch_irn_flags_rematerializable;   /* op can be easily recalulated */\n";
+                                               $temp .= "  flags |= arch_irn_flags_rematerializable;   /* op can be easily recalulated */\n";
                                        }
                                        elsif ($flag eq "N") {
-                                               $temp .= "  attr->flags |= arch_irn_flags_dont_spill;         /* op is NOT spillable */\n";
+                                               $temp .= "  flags |= arch_irn_flags_dont_spill;         /* op is NOT spillable */\n";
                                        }
                                        elsif ($flag eq "I") {
-                                               $temp .= "  attr->flags |= arch_irn_flags_ignore;             /* ignore op for register allocation */\n";
+                                               $temp .= "  flags |= arch_irn_flags_ignore;             /* ignore op for register allocation */\n";
                                        }
                                }
                        }
 
+                       my $in_param;
+                       my $out_param;
                        # allocate memory and set pointer to register requirements
                        if (exists($n{"reg_req"})) {
                                my %req = %{ $n{"reg_req"} };
@@ -207,26 +208,22 @@ foreach my $op (keys(%nodes)) {
                                undef my @out;
                                @out = @{ $req{"out"} } if exists(($req{"out"}));
 
-                               $temp .= "\n  /* set IN register requirements */\n";
                                if (@in) {
-                                       $temp .= "  attr->in_req  = ".$in_req_var.";\n";
+                                       $in_param = $in_req_var;
                                }
                                else {
-                                       $temp .= "  attr->in_req  = NULL;\n";
+                                       $in_param = "NULL";
                                }
 
-                               $temp .= "\n  /* set OUT register requirements and get space for registers */\n";
                                if (@out) {
-                                       $temp .= "  attr->out_req = ".$out_req_var.";\n";
-                                       $temp .= "  attr->slots   = xcalloc(".($#out + 1).", sizeof(attr->slots[0]));\n";
-                                       $temp .= "  attr->n_res   = ".($#out + 1).";\n";
+                                       $out_param = $out_req_var.", ".($#out + 1);
                                }
                                else {
-                                       $temp .= "  attr->out_req = NULL;\n";
-                                       $temp .= "  attr->slots   = NULL;\n";
-                                       $temp .= "  attr->n_res   = 0;\n";
+                                       $out_param = "NULL, 0";
                                }
                        }
+                       $temp .= "\n  /* init node attributes */\n";
+                       $temp .= "  init_$arch\_attributes(res, flags, $in_param, $out_param);\n";
 
                        $temp .= "\n  return res;\n";
 
@@ -254,7 +251,7 @@ foreach my $op (keys(%nodes)) {
 
        $n_opcodes++;
        $temp  = "  op_$op = new_ir_op(cur_opcode++, \"$op\", op_pin_state_".$n{"state"}.", ".$n{"op_flags"};
-       $temp .= ", ".translate_arity($arity).", 2, sizeof($arch\_attr_t), &ops);\n";
+       $temp .= ", ".translate_arity($arity).", 0, sizeof($arch\_attr_t), &ops);\n";
        push(@obst_new_irop, $temp);
 }
 
@@ -272,16 +269,16 @@ print OUT "\n";
 
 print OUT<<ENDOFISIRN;
 
-static opcode ia32_opcode_start = -1;
-static opcode ia32_opcode_end   = -1;
+static opcode $arch\_opcode_start = -1;
+static opcode $arch\_opcode_end   = -1;
 
 int is_$arch\_irn(const ir_node *node) {
   opcode opc = get_irn_opcode(node);
 
-  assert(ia32_opcode_start > 0 && "missing opcode init");
-  assert(ia32_opcode_end > 0 && "missing opcode init");
+  assert($arch\_opcode_start > 0 && "missing opcode init");
+  assert($arch\_opcode_end > 0 && "missing opcode init");
 
-  if (opc > ia32_opcode_start && opc < ia32_opcode_end)
+  if (opc > $arch\_opcode_start && opc < $arch\_opcode_end)
     return 1;
 
   return 0;
@@ -311,12 +308,12 @@ void $arch\_create_opcodes(void) {
   ir_op_ops ops;
   int cur_opcode = get_next_ir_opcodes($n_opcodes);
 
-  ia32_opcode_start = cur_opcode++;
+  $arch\_opcode_start = cur_opcode++;
 
 ENDOFMAIN
 
 print OUT @obst_new_irop;
-print OUT "\n  ia32_opcode_end = cur_opcode;\n";
+print OUT "\n  $arch\_opcode_end = cur_opcode;\n";
 print OUT "}\n";
 
 close(OUT);