X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_new_opcodes.pl;h=1a634a6e37c5ba6b7623fdcf873022de63c0566a;hb=429d687f06baeeb63d04750f846d39e55fb62343;hp=4a2ac3bcf70b9bcd0bdb83648d12368e3f406e99;hpb=49945632462e31574a99def85791220dc0f4d872;p=libfirm diff --git a/ir/be/scripts/generate_new_opcodes.pl b/ir/be/scripts/generate_new_opcodes.pl index 4a2ac3bcf..1a634a6e3 100755 --- a/ir/be/scripts/generate_new_opcodes.pl +++ b/ir/be/scripts/generate_new_opcodes.pl @@ -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. # @@ -158,7 +158,7 @@ foreach my $class_name (keys(%reg_classes)) { # for registering additional opcodes $n_opcodes += $additional_opcodes if (defined($additional_opcodes)); -push(@obst_header, "void ".$arch."_create_opcodes(void);\n"); +push(@obst_header, "void ".$arch."_create_opcodes(const arch_irn_ops_t *be_ops);\n"); push(@obst_enum_op, "typedef enum _$arch\_opcodes {\n"); foreach my $op (keys(%nodes)) { @@ -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"})) { @@ -562,6 +568,7 @@ foreach my $op (keys(%nodes)) { push(@obst_new_irop, "\n\tmemset(&ops, 0, sizeof(ops));\n"); + push(@obst_new_irop, "\tops.be_ops = be_ops;\n"); push(@obst_new_irop, "\tops.dump_node = $arch\_dump_node;\n"); if (defined($cmp_attr_func)) { @@ -574,6 +581,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; @@ -583,10 +593,9 @@ foreach my $op (keys(%nodes)) { $temp = "\top_$op = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", ".$n{"op_flags"}; $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"); + 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"); } @@ -644,7 +653,7 @@ if (length($arch) >= 4) { print OUT<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)); @@ -976,9 +1000,8 @@ sub build_subset_class_func { my $class = undef; my $has_limit = 0; my $limit_name; - my $same_pos = undef; - my $same_pos2 = undef; - my $different_pos = undef; + my $same_pos = 0; + my $different_pos = 0; my $temp; my @obst_init; my @obst_limits; @@ -998,26 +1021,33 @@ sub build_subset_class_func { # set/unset registers CHECK_REQS: foreach (@regs) { if (!$is_in && /(!)?in_r(\d+)/) { - if (($1 && defined($different_pos)) || (!$1 && defined($same_pos2))) { - print STDERR "Multiple in/out references of same type in one requirement not allowed.\n"; - return (undef, undef, undef, undef, undef); + 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 ($1) { - $different_pos = $2 - 1; - } else { - if (!defined($same_pos)) { - $same_pos = $2 - 1; + if ($same_pos & $bit_pos) { + if ($1) { + print STDERR "conflicting !in and in constraints\n"; } else { - $same_pos2 = $2 - 1; + print STDERR "duplicate in constraint\n"; } + return (undef, undef, undef, undef); + } + + if ($1) { + $different_pos |= $bit_pos; + } else { + $same_pos |= $bit_pos; } $class = $idx_class[$2 - 1]; next CHECK_REQS; - } elsif (/!in/) { - $class = $idx_class[0]; - return ($class, "NULL", undef, undef, 666); } # check for negate @@ -1026,7 +1056,7 @@ CHECK_REQS: foreach (@regs) { # we have seen a positiv constraint as first one but this one is negative # this doesn't make sense print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n"; - return (undef, undef, undef, undef, undef); + return (undef, undef, undef, undef); } if (!defined($neg)) { @@ -1040,7 +1070,7 @@ CHECK_REQS: foreach (@regs) { # we have seen a negative constraint as first one but this one is positive # this doesn't make sense print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n"; - return (undef, undef, undef, undef, undef); + return (undef, undef, undef, undef); } $has_limit = 1; @@ -1051,7 +1081,7 @@ CHECK_REQS: foreach (@regs) { $temp = get_reg_class($_); if (!defined($temp)) { print STDERR "Unknown register '$_'!\n"; - return (undef, undef, undef, undef, undef); + return (undef, undef, undef, undef); } # set class @@ -1060,7 +1090,7 @@ CHECK_REQS: foreach (@regs) { } elsif ($class ne $temp) { # all registers must belong to the same class print STDERR "Registerclass mismatch. '$_' is not member of class '$class'.\n"; - return (undef, undef, undef, undef, undef); + return (undef, undef, undef, undef); } # calculate position inside the initializer bitfield (only 32 bits per @@ -1090,7 +1120,7 @@ CHECK_REQS: foreach (@regs) { if(defined($limit_bitsets{$limit_name})) { $limit_name = $limit_bitsets{$limit_name}; - return ($class, $limit_name, $same_pos, $same_pos2, $different_pos); + return ($class, $limit_name, $same_pos, $different_pos); } $limit_bitsets{$limit_name} = $limit_name; @@ -1128,7 +1158,7 @@ CHECK_REQS: foreach (@regs) { push(@obst_limit_func, " };\n"); } - return ($class, $limit_name, $same_pos, $same_pos2, $different_pos); + return ($class, $limit_name, $same_pos, $different_pos); } ### @@ -1150,23 +1180,8 @@ sub generate_requirements { arch_register_req_type_none, NULL, /* regclass */ NULL, /* limit bitset */ - { -1, -1 }, /* same pos */ - -1 /* 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 = <