X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_new_opcodes.pl;h=0e89197cdff872bbd2dd2d483ed6db5da6d63cbd;hb=8544304305897e5f2b5752fc243fd45c4f95a38c;hp=36e07c61157edab7ca49c665542e15d621cb6dd6;hpb=78f1315fc0bf5f465a02532ae5ef9ab2d3965394;p=libfirm diff --git a/ir/be/scripts/generate_new_opcodes.pl b/ir/be/scripts/generate_new_opcodes.pl index 36e07c611..0e89197cd 100755 --- a/ir/be/scripts/generate_new_opcodes.pl +++ b/ir/be/scripts/generate_new_opcodes.pl @@ -42,6 +42,7 @@ my @obst_opvar; # stack for the "ir_op *op__ = NULL;" state my @obst_get_opvar; # stack for the get_op__() functions my @obst_constructor; # stack for node constructor functions my @obst_new_irop; # stack for the new_ir_op calls +my @obst_enum_op; # stack for creating the _opcode enum my @obst_header; # stack for function prototypes my @obst_is_archirn; # stack for the is_$arch_irn() function my @obst_cmp_attr; # stack for the compare attribute functions @@ -49,13 +50,14 @@ my $orig_op; my $arity; my $cmp_attr_func; my $temp; -my $n_opcodes = 2; # we have two additional border opcodes (lowest/highest) +my $n_opcodes = 0; # number of opcodes # for registering additional opcodes $n_opcodes += $additional_opcodes if (defined($additional_opcodes)); push(@obst_header, "void ".$arch."_create_opcodes(void);\n"); +push(@obst_enum_op, "typedef enum _$arch\_opcodes {\n"); foreach my $op (keys(%nodes)) { my %n = %{ $nodes{"$op"} }; @@ -194,7 +196,7 @@ foreach my $op (keys(%nodes)) { if (exists($n{"irn_flags"})) { foreach my $flag (split(/\|/, $n{"irn_flags"})) { if ($flag eq "R") { - $temp .= " flags |= arch_irn_flags_rematerializable; /* op can be easily recalulated */\n"; + $temp .= " flags |= arch_irn_flags_rematerializable; /* op can be easily recalculated */\n"; } elsif ($flag eq "N") { $temp .= " flags |= arch_irn_flags_dont_spill; /* op is NOT spillable */\n"; @@ -270,10 +272,15 @@ 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 = " op_$op = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", ".$n{"op_flags"}; $temp .= "|M, ".translate_arity($arity).", 0, sizeof($arch\_attr_t), &ops);\n"; push(@obst_new_irop, $temp); + push(@obst_enum_op, " iro_$op,\n"); } +push(@obst_enum_op, " iro_$arch\_last_generated,\n"); +push(@obst_enum_op, " iro_$arch\_last = iro_$arch\_last_generated"); +push(@obst_enum_op, " + $additional_opcodes") if (defined($additional_opcodes)); +push(@obst_enum_op, "\n} $arch\_opcodes;\n\n"); # emit the code @@ -289,36 +296,44 @@ print OUT "\n"; print OUT< 0 && "missing opcode init"); assert($arch\_opcode_end > 0 && "missing opcode init"); - if (opc > $arch\_opcode_start && opc < $arch\_opcode_end) + if (opc - (unsigned)$arch\_opcode_start < (unsigned)($arch\_opcode_end - $arch\_opcode_start)) return 1; return 0; } +int get_$arch\_irn_opcode(const ir_node *node) { + assert(is_$arch\_irn(node)); + return get_irn_opcode(node) - $arch\_opcode_start; +} + ENDOFISIRN print OUT @obst_constructor; print OUT<$target_h") || die("Could not open $target_h, reason: $!\n"); +print OUT "#ifndef __GEN_$arch\_NEW_NODES_H__\n"; +print OUT "#define __GEN_$arch\_NEW_NODES_H__\n\n"; +print OUT @obst_enum_op; print OUT "int is_$arch\_irn(const ir_node *node);\n\n"; -print OUT "opcode get_$arch\_opcode_first(void);\n"; -print OUT "opcode get_$arch\_opcode_last(void);\n\n"; +print OUT "int get_$arch\_opcode_first(void);\n"; +print OUT "int get_$arch\_opcode_last(void);\n"; +print OUT "int get_$arch\_irn_opcode(const ir_node *node);\n"; print OUT @obst_header; +print OUT "\n#endif /* __GEN_$arch\_NEW_NODES_H__ */\n"; close(OUT);