X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_new_opcodes.pl;h=0602ae5c0d2457e7561214b21894d35b8cad10f5;hb=ea061cce0888de9a7e09b594a2666176f6aa7f79;hp=86b5a1c91d40665d1a65e021be0f8455a4b747ce;hpb=392debcee49bd4f04916a7c76f46a9a328c13019;p=libfirm diff --git a/ir/be/scripts/generate_new_opcodes.pl b/ir/be/scripts/generate_new_opcodes.pl index 86b5a1c91..0602ae5c0 100755 --- a/ir/be/scripts/generate_new_opcodes.pl +++ b/ir/be/scripts/generate_new_opcodes.pl @@ -66,7 +66,7 @@ foreach my $op (keys(%nodes)) { my $n_res = 0; # determine arity from in requirements - $arity = 0; + $arity = exists($n{"arity"}) ? $n{"arity"} : 0; if (exists($n{"reg_req"}) && exists($n{"reg_req"}{"in"})) { $arity = scalar(@{ $n{"reg_req"}{"in"} }); } @@ -88,7 +88,7 @@ foreach my $op (keys(%nodes)) { push(@obst_opvar, "ir_op *op_$op = NULL;\n"); push(@obst_get_opvar, "ir_op *get_op_$op(void) { return op_$op; }\n"); - push(@obst_get_opvar, "int is_$op(const ir_node *n) { return get_irn_opcode(n) == iro_$op; }\n\n"); + push(@obst_get_opvar, "int is_$op(const ir_node *n) { return get_$arch\_irn_opcode(n) == iro_$op; }\n\n"); push(@obst_is_archirn, "is_$op(node)"); @@ -251,6 +251,10 @@ foreach my $op (keys(%nodes)) { $out_param = "NULL, 0"; } } + else { + $in_param = "NULL"; + $out_param = "NULL, 0"; + } $temp .= "\n /* create node */\n"; my $mode = "mode"; if ($tuple == 1) { @@ -298,6 +302,7 @@ foreach my $op (keys(%nodes)) { $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) + $n_res * sizeof(arch_register_t *), &ops);\n"; push(@obst_new_irop, $temp); + push(@obst_new_irop, " set_op_tag(op_$op, &$arch\_op_tag);\n"); push(@obst_enum_op, " iro_$op,\n"); push(@obst_header, "\n"); @@ -319,11 +324,37 @@ print OUT "\n"; print OUT @obst_get_opvar; print OUT "\n"; -print OUT<= 1) { + $a = uc(substr($arch, 0, 1)); +} + +if (length($arch) >= 2) { + $b = uc(substr($arch, 1, 1)); +} + +if (length($arch) >= 3) { + $c = uc(substr($arch, 2, 1)); +} + +if (length($arch) >= 4) { + $d = uc(substr($arch, 3, 1)); +} + +print OUT "static unsigned $arch\_op_tag = FOURCC('$a', '$b', '$c', '$d');\n"; + +print OUT< 0 && "missing opcode init"); - assert($arch\_opcode_end > 0 && "missing opcode init"); - - if (opc - (unsigned)$arch\_opcode_start < (unsigned)($arch\_opcode_end - $arch\_opcode_start)) - return 1; - - return 0; + return get_op_tag(get_irn_op(node)) == &$arch\_op_tag; } int get_$arch\_irn_opcode(const ir_node *node) { - assert(is_$arch\_irn(node)); - return get_irn_opcode(node) - $arch\_opcode_start; + if (is_$arch\_irn(node)) + return get_irn_opcode(node) - $arch\_opcode_start; + return -1; } ENDOFISIRN