X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_new_opcodes.pl;h=7cd2679386a20cd760ca80e0668985624671425e;hb=edb89fdd5733701e759588fca01691b30309b093;hp=3c15871f16558740acaaf7b465f027bee5bf804b;hpb=c038690a555e2aabd76ce0eb39ffbc67e9444430;p=libfirm diff --git a/ir/be/scripts/generate_new_opcodes.pl b/ir/be/scripts/generate_new_opcodes.pl index 3c15871f1..7cd267938 100755 --- a/ir/be/scripts/generate_new_opcodes.pl +++ b/ir/be/scripts/generate_new_opcodes.pl @@ -23,7 +23,6 @@ # their coresponding node constructors for all operations in a given spec # so they can be used as normal firm nodes. # Creation: 2005/10/19 -# $Id$ use strict; use Data::Dumper; @@ -68,15 +67,15 @@ my $target_h = $target_dir."/gen_".$arch."_new_nodes.h"; if(!defined($default_attr_type)) { $default_attr_type = "${arch}_attr_t"; } -if(!defined(%init_attr)) { +if(! %init_attr) { %init_attr = ( - "$default_attr_type" => "\tinit_${arch}_attributes(res, flags, in_reqs, exec_units, n_res);", + "$default_attr_type" => "\tinit_${arch}_attributes(res, irn_flags_, in_reqs, n_res);", ); } if(!defined($default_cmp_attr)) { $default_cmp_attr = "${arch}_compare_attr"; } -if(!defined(%compare_attr)) { +if(! %compare_attr) { %compare_attr = ( "${default_attr_type}" => "${default_cmp_attr}", ); @@ -117,6 +116,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_free_irop; # stack for free_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 @@ -160,6 +160,7 @@ foreach my $class_name (keys(%reg_classes)) { $n_opcodes += $additional_opcodes if (defined($additional_opcodes)); $obst_header .= "void ${arch}_create_opcodes(const arch_irn_ops_t *be_ops);\n"; +$obst_header .= "void ${arch}_free_opcodes(void);\n"; sub create_constructor { my $op = shift; @@ -270,9 +271,10 @@ sub create_constructor { # emit constructor code $temp = <{"units"})) { - $temp .= gen_execunit_list_initializer($n->{"units"}); - } else { - $temp .= < "arch_irn_flags_simple_jump", "not_scheduled" => "arch_irn_flags_not_scheduled", ); - if (defined(%custom_irn_flags)) { + if (%custom_irn_flags) { %known_irn_flags = (%known_irn_flags, %custom_irn_flags); } foreach my $flag (@{$n->{"irn_flags"}}) { if (not defined($known_irn_flags{$flag})) { print STDERR "WARNING: irn_flag '$flag' in opcode $op is unknown\n"; } else { - $temp .= "\tflags |= " . $known_irn_flags{$flag} . ";\n"; + $temp .= "\tirn_flags_ |= " . $known_irn_flags{$flag} . ";\n"; } } $temp .= "\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}'"; + my $attr_init_code = "(void)in;(void)irn_flags_;(void)in_reqs;(void)n_res;"; + if ($attr_type ne "") { + $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}'"; + } } my $custominit = ""; if(defined($custom_init_attr_func)) { @@ -447,7 +443,7 @@ EOF $temp .= <{"init_attr"})) { $temp .= "\tattr = (${attr_type}*)get_irn_generic_attr(res);\n"; + $temp .= "\t(void) attr; /* avoid potential warning */\n"; $temp .= "\t".$n->{"init_attr"}."\n"; } $temp .= < 1 } ( - "none", "labeled", "commutative", "cfopcode", "op_cfopcode", - "fragile", "forking", "highlevel", "constlike", "always_opt", - "keep", "start_block", "uses_memory", "dump_noblock", - "dump_noinput", "machine", "machine_op", "cse_neutral" + "none", "commutative", "cfopcode", "unknown_jump", "fragile", + "forking", "highlevel", "constlike", "keep", "start_block", + "uses_memory", "dump_noblock", "cse_neutral" ); + my $is_fragile = 0; foreach my $flag (@{$n{"op_flags"}}) { if (not defined($known_flags{$flag})) { print STDERR "WARNING: Flag '$flag' in opcode $op is unknown\n"; } + if ($flag eq "fragile") { + $is_fragile = 1; + } } my @mapped = map { "irop_flag_$_" } @{$n{"op_flags"}}; my $op_flags = join('|', @mapped); + my $attr_size = "0"; + if ($attr_type ne "") { + $attr_size = "sizeof(${attr_type})" + } + $n_opcodes++; - $temp = "\top_$op = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", $op_flags"; - $temp .= "|irop_flag_machine, ".translate_arity($arity).", 0, sizeof(${attr_type}), &ops);\n"; + $temp = "\top = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", $op_flags"; + $temp .= ", ".translate_arity($arity).", 0, ${attr_size});\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 = &attrs[iro_$op];\n"); - if(defined($n{op_attr_init})) { - push(@obst_new_irop, "\t".$n{op_attr_init}."\n"); + push(@obst_new_irop, "\top->ops.be_ops = be_ops;\n"); + push(@obst_new_irop, "\top->ops.dump_node = ${dump_func};\n"); + if (defined($cmp_attr_func)) { + push(@obst_new_irop, "\top->ops.node_cmp_attr = ${cmp_attr_func};\n"); + } + my $copy_attr_func = $copy_attr{$attr_type}; + if (!defined($copy_attr_func)) { + # don't set a copy_attr function if the node has no additional attributes. + if ($attr_type ne "") { + $copy_attr_func = $default_copy_attr; } - push(@obst_new_irop, "\tset_op_attr(op_$op, attr);\n"); } + if (defined($copy_attr_func)) { + push(@obst_new_irop, "\top->ops.copy_attr = ${copy_attr_func};\n"); + } + if (defined($hash_func)) { + push(@obst_new_irop, "\top->ops.hash = ${hash_func};\n"); + } + + if ($is_fragile) { + push(@obst_new_irop, "\tir_op_set_memory_index(op, n_${op}_mem);\n"); + push(@obst_new_irop, "\tir_op_set_fragile_indices(op, pn_${op}_X_regular, pn_${op}_X_except);\n"); + } + push(@obst_new_irop, "\tset_op_tag(op, $arch\_op_tag);\n"); + if(defined($n{op_attr_init})) { + push(@obst_new_irop, "\t".$n{op_attr_init}."\n"); + } + push(@obst_new_irop, "\top_${op} = op;\n"); + + push(@obst_free_irop, "\tfree_ir_op(op_$op); op_$op = NULL;\n"); push(@obst_enum_op, "\tiro_$op,\n"); @@ -711,6 +724,7 @@ open(OUT, ">$target_c") || die("Fatal error: Could not open $target_c, reason: $ print OUT "#include \"gen_$arch\_regalloc_if.h\"\n"; print OUT "#include \"irverify_t.h\"\n"; +print OUT "#include \"fourcc.h\"\n"; print OUT "\n"; print OUT @obst_cmp_attr; print OUT "\n"; @@ -800,38 +814,32 @@ $obst_constructor * Creates the $arch specific Firm machine operations * needed for the assembler irgs. */ -void $arch\_create_opcodes(const arch_irn_ops_t *be_ops) { - 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, *attrs;\n"; - } - -print OUT< add them all - my $tp_name = "$arch\_execution_units_$unit"; - my $idx = 0; - foreach (@{ $cpu{"$unit"} }) { - next if ($idx++ == 0); # skip first element (it's not a unit) - my $unit_name = "$uc_arch\_EXECUNIT_TP_$unit\_$_"; - push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]"); - } - } - else { - # operation can be executed only a certain unit - # -> find corresponding unit type - my $found = 0; -TP_SEARCH: foreach my $cur_type (keys(%cpu)) { - foreach my $cur_unit (@{ $cpu{"$cur_type"} }) { - if ($unit eq $cur_unit) { - my $tp_name = "$arch\_execution_units_$cur_type"; - my $unit_name = "$uc_arch\_EXECUNIT_TP_$cur_type\_$unit"; - push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]"); - $found = 1; - last TP_SEARCH; - } - } - } - - if (! $found) { - print STDERR "Invalid execution unit $unit specified!\n"; - } - } - } - - # prepare the 2-dim array init - foreach my $key (keys(%init)) { - $ret .= "\tstatic const be_execution_unit_t *allowed_units_".$key."[] =\n"; - $ret .= "\t{\n"; - foreach (@{ $init{"$key"} }) { - $ret .= "$_,\n"; - } - $ret .= "\t\tNULL\n"; - $ret .= "\t};\n"; - $ret2 .= "\t\tallowed_units_$key,\n"; - } - $ret2 .= "\t\tNULL\n"; - - $ret .= "\tstatic const be_execution_unit_t **exec_units[] =\n"; - $ret .= "\t{\n"; - $ret .= $ret2; - $ret .= "\t};\n"; - - return $ret; -} - sub mangle_requirements { my $reqs = shift; my $class = shift;