X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fscripts%2Fgenerate_emitter.pl;h=b05af7eaabea3db3b59c0061148458ef23c183a9;hb=c23b55879df97f49fc6f1e95651f9f28a980b620;hp=445cb3d256f4257f9ed9113ac6e87ba3911e334e;hpb=eb798733d50fbfb32b12ae9cb2f989d8b86f0d12;p=libfirm diff --git a/ir/be/scripts/generate_emitter.pl b/ir/be/scripts/generate_emitter.pl index 445cb3d25..b05af7eaa 100755 --- a/ir/be/scripts/generate_emitter.pl +++ b/ir/be/scripts/generate_emitter.pl @@ -1,5 +1,24 @@ #!/usr/bin/perl -w +# +# Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. +# +# This file is part of libFirm. +# +# This file may be distributed and/or modified under the terms of the +# GNU General Public License version 2 as published by the Free Software +# Foundation and appearing in the file LICENSE.GPL included in the +# packaging of this file. +# +# Licensees holding valid libFirm Professional Edition licenses may use +# this file in accordance with the libFirm Commercial License. +# Agreement provided with the Software. +# +# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE. +# + # This script generates C code which emits assembler code for the # assembler ir nodes. It takes a "emit" key from the node specification # and substitutes lines starting with . with a corresponding fprintf(). @@ -8,9 +27,11 @@ use strict; use Data::Dumper; +use File::Basename; -my $specfile = $ARGV[0]; -my $target_dir = $ARGV[1]; +my $myname = $0; +our $specfile = $ARGV[0]; +our $target_dir = $ARGV[1]; our $arch; our $comment_string = "/*"; @@ -24,15 +45,20 @@ my $return; no strict "subs"; unless ($return = do $specfile) { - warn "couldn't parse $specfile: $@" if $@; - warn "couldn't do $specfile: $!" unless defined $return; - warn "couldn't run $specfile" unless $return; + die "Fatal error: couldn't parse $specfile: $@" if $@; + die "Fatal error: couldn't do $specfile: $!" unless defined $return; + die "Fatal error: couldn't run $specfile" unless $return; } use strict "subs"; if ($new_emit_syntax) { - do "generate_emitter_new.pl"; - return; + my $newscript = dirname($myname) . "/generate_emitter_new.pl"; + unless ($return = do "$newscript") { + die "Fatal error: couldn't parse $newscript: $@" if $@; + die "Fatal error: couldn't do $newscript: $!" unless defined $return; + die "Fatal error: couldn't run $newscript" unless $return; + } + exit; } my $comment_string_quoted = quotemeta($comment_string); @@ -143,46 +169,47 @@ foreach my $op (keys(%nodes)) { push(@obst_func, "}\n\n"); } -open(OUT, ">$target_h") || die("Could not open $target_h, reason: $!\n"); +open(OUT, ">$target_h") || die("Fatal error: Could not open $target_h, reason: $!\n"); my $creation_time = localtime(time()); my $tmp = uc($arch); print OUT<$target_c") || die("Could not open $target_c, reason: $!\n"); +open(OUT, ">$target_c") || die("Fatal error: Could not open $target_c, reason: $!\n"); $creation_time = localtime(time()); print OUT<