X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_emitter_new.pl;h=3376eb1f1ae32dd10320c0dbec49cfb4e6ab09e8;hb=040868cbcb834457c8195efbbccf221123c7f153;hp=b6c1d561b5c98751db7223cfa532668b1879bd29;hpb=e15fe528133f4205663a91bd68defaf510e9bc68;p=libfirm diff --git a/ir/be/scripts/generate_emitter_new.pl b/ir/be/scripts/generate_emitter_new.pl index b6c1d561b..3376eb1f1 100755 --- a/ir/be/scripts/generate_emitter_new.pl +++ b/ir/be/scripts/generate_emitter_new.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. # @@ -34,7 +34,7 @@ our $target_dir; our $arch; our %nodes; our %emit_templates; -our $finish_line_template = "be_emit_finish_line_gas(emit, node);"; +our $finish_line_template = "be_emit_finish_line_gas(node);"; my $target_c = $target_dir."/gen_".$arch."_emitter.c"; my $target_h = $target_dir."/gen_".$arch."_emitter.h"; @@ -52,21 +52,21 @@ sub create_emitter { our $arch; my @tokens = ($template =~ m/[^\%]+|\%[a-zA-Z_][a-zA-Z0-9_]*|\%./g); - push(@{$result}, "${indent}be_emit_char(emit, '\t');\n"); + push(@{$result}, "${indent}be_emit_char('\t');\n"); for (@tokens) { SWITCH: { if (/%\./) { last SWITCH; } - if (/%%/) { push(@{$result}, "${indent}be_emit_char(emit, '%');\n"); last SWITCH; } + if (/%%/) { push(@{$result}, "${indent}be_emit_char('%');\n"); last SWITCH; } if (/%(.+)/) { if(defined($emit_templates{$1})) { push(@{$result}, "${indent}$emit_templates{$1}\n"); } else { print "Warning: No emit_template defined for '$1'\n"; - push(@{$result}, "${indent}$1(emit, node);\n"); + push(@{$result}, "${indent}$1(node);\n"); } last SWITCH; } - push(@{$result}, "${indent}be_emit_cstring(emit, \"$_\");\n"); + push(@{$result}, "${indent}be_emit_cstring(\"$_\");\n"); } } push(@{$result}, "${indent}${finish_line_template}\n"); @@ -80,18 +80,18 @@ foreach my $op (keys(%nodes)) { # skip this node description if no emit information is available next if (!defined($n{"emit"})); - $line = "static void emit_${arch}_${op}(${arch}_emit_env_t *env, const ir_node *node)"; + $line = "static void emit_${arch}_${op}(const ir_node *node)"; push(@obst_register, " BE_EMIT($op);\n"); if($n{"emit"} eq "") { push(@obst_func, $line." {\n"); + push(@obst_func, "\t(void) node;\n"); push(@obst_func, "}\n\n"); next; } push(@obst_func, $line." {\n"); - push(@obst_func, "\tbe_emit_env_t *emit = env->emit;\n"); my @emit = split(/\n/, $n{"emit"});