handle empty comments in automatic emitters right
[libfirm] / ir / be / scripts / generate_emitter.pl
index 80f36f5..ebbf7a3 100755 (executable)
@@ -13,6 +13,7 @@ my $specfile   = $ARGV[0];
 my $target_dir = $ARGV[1];
 
 our $arch;
+our $comment_string;
 our %nodes;
 
 # include spec file
@@ -21,66 +22,108 @@ 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;
+       warn "couldn't parse $specfile: $@" if $@;
+       warn "couldn't do $specfile: $!"    unless defined $return;
+       warn "couldn't run $specfile"       unless $return;
 }
 use strict "subs";
 
+my $comment_string_quoted = quotemeta($comment_string);
+
 my $target_c = $target_dir."/gen_".$arch."_emitter.c";
 my $target_h = $target_dir."/gen_".$arch."_emitter.h";
 
 # stacks for output
 my @obst_func;   # stack for the emit functions
-my @obst_header;  # stack for the function prototypes
-
+my @obst_register;  # stack for emitter register code
 my $line;
 
 foreach my $op (keys(%nodes)) {
-  my %n = %{ $nodes{"$op"} };
-
-  # skip this node description if no emit information is available
-  next if (!$n{"emit"} || length($n{"emit"}) < 1);
-
-  $line = "void emit_".$arch."_".$op."(FILE *F, ir_node *n)";
-  push(@obst_header, $line.";\n");
-  push(@obst_func, $line." {\n");
-
-  my @emit = split(/\n/, $n{"emit"});
-
-  foreach(@emit) {
-    # substitute only lines, starting with a '.'
-    if (/^(\d*)\.\s*/) {
-      my @params;
-      my $regkind;
-      my $indent = "  "; # default indent is 2 spaces
-
-      $indent = " " x $1 if ($1 && $1 > 0);
-      # remove indent, dot and trailing spaces
-      s/^\d*\.\s*//;
-      # substitute all format parameter
-      while (/%(([sd])(\d)|([co]))/) {
-        if ($4 && $4 eq "c") {
-          push(@params, "node_const_to_str(n)");
-        }
-        elsif ($4 && $4 eq "o") {
-          push(@params, "node_offset_to_str(n)");
-        }
-        else {
-          $regkind = ($2 eq "s" ? "source" : "dest");
-          push(@params, "get_".$regkind."_reg_name(n, $3)");
-        }
-        s/%$1/%%\%s/;
-      }
-      my $parm = "";
-      $parm = ", ".join(", ", @params) if (@params);
-      push(@obst_func, $indent.'fprintf(F, "\t'.$_.'\n"'.$parm.');'."\n");
-    }
-    else {
-      push(@obst_func, $_,"\n");
-    }
-  }
-  push(@obst_func, "}\n\n");
+       my %n = %{ $nodes{"$op"} };
+
+       # skip this node description if no emit information is available
+       next if (!$n{"emit"} || length($n{"emit"}) < 1);
+
+       $line = "static void emit_".$arch."_".$op."(const ir_node *n, $arch\_emit_env_t *env)";
+       push(@obst_func, $line." {\n  FILE *F = env->out;\n");
+       push(@obst_func, "  char cmd_buf[256], cmnt_buf[256];\n");
+       push(@obst_func, "  const lc_arg_env_t *arg_env = $arch\_get_arg_env();\n\n");
+       push(@obst_register, "  BE_EMIT($op);\n");
+
+       my @emit = split(/\n/, $n{"emit"});
+
+       foreach my $template (@emit) {
+               # substitute only lines, starting with a '.'
+               if ($template =~ /^(\d*)\.\s*/) {
+                       my $indent = "  "; # default indent is 2 spaces
+
+                       $indent = " " x $1 if ($1 && $1 > 0);
+                       # remove indent, dot and trailing spaces
+                       $template =~ s/^\d*\.\s*//;
+                       my $fmt = $template;
+                       my $cnt = 0;
+                       my $buf = 'cmd_buf';
+
+                       push(@obst_func, "  cmnt_buf[0] = '\\0';\n");
+                       foreach $template (split(/$comment_string_quoted/, $fmt, 2)) {
+                               my @params;
+                               my $res = "";
+                               $cnt++;
+
+                               $template =~ s/(\\t)*$//;
+
+                               if ($cnt == 2) {
+                                       # add the comment begin string
+                                       $res .= $comment_string;
+                                       $buf  = "cmnt_buf";
+                               }
+
+                               # substitute all format parameter
+                               while ($template =~ /\%([ASDX])(\d)|\%([COM])|\%(\w+)/) {
+                                       $res  .= $`;      # get everything before the match
+
+                                       if ($1 && $1 eq "S") {
+                                               push(@params, "n");
+                                               $res .= "%".$2."S"; # substitute %Sx with %xS
+                                       }
+                                       elsif ($1 && $1 eq "D") {
+                                               push(@params, "n");
+                                               $res .= "%".$2."D"; # substitute %Dx with %xD
+                                       }
+                                       elsif ($1 && $1 eq "X") {
+                                               push(@params, "n");
+                                               $res .= "%".$2."X"; # substitute %Xx with %xX
+                                       }
+                                       elsif ($1 && $1 eq "A") {
+                                               push(@params, "get_irn_n(n, ".($2 - 1).")");
+                                               $res .= "%+F";
+                                       }
+                                       elsif ($3) {
+                                               push(@params, "n");
+                                               $res .= "%".$3;
+                                       }
+                                       elsif ($4) {  # backend provided function to call, has to return a string
+                                               push(@params, $4."(n, env)");
+                                               $res .= "\%s";
+                                       }
+
+                                       $template = $'; # scan everything after the match
+                               }
+                               $res .= $template; # get the remaining string
+
+                               my $parm = "";
+                               $parm = ", ".join(", ", @params) if (@params);
+
+                               push(@obst_func, $indent.'lc_esnprintf(arg_env, '.$buf.', 256, "'.$res.'"'.$parm.');'."\n");
+                       }
+               }
+               else {
+                       push(@obst_func, $template,"\n");
+               }
+       }
+
+       push(@obst_func, '  lc_efprintf(arg_env, F, "\t%-35s %-60s /* %+F (%+G) */\n", cmd_buf, cmnt_buf, n, n);'."\n");
+       push(@obst_func, "}\n\n");
 }
 
 open(OUT, ">$target_h") || die("Could not open $target_h, reason: $!\n");
@@ -102,12 +145,13 @@ print OUT<<EOF;
  */
 
 #include "irnode.h"
+#include "$arch\_emitter.h"
 
-EOF
+void $arch\_register_spec_emitters(void);
 
-print OUT @obst_header;
+#endif /* _GEN_$tmp\_EMITTER_H_ */
 
-print OUT "#endif /* _GEN_$tmp\_EMITTER_H_ */\n";
+EOF
 
 close(OUT);
 
@@ -123,16 +167,42 @@ print OUT<<EOF;
  * created by: $0 $specfile $target_dir
  * date:       $creation_time
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <stdio.h>
 
 #include "irnode.h"
+#include "irop_t.h"
+#include "irprog_t.h"
+
 #include "gen_$arch\_emitter.h"
-#include "$arch\_emitter.h"
 #include "$arch\_new_nodes.h"
 
 EOF
 
 print OUT @obst_func;
 
+print OUT<<EOF;
+/**
+ * Enters the emitter functions for handled nodes into the generic
+ * pointer of an opcode.
+ */
+void $arch\_register_spec_emitters(void) {
+
+#define BE_EMIT(a) op_$arch\_##a->ops.generic = (op_func)emit_$arch\_##a
+
+  /* generated emitter functions */
+EOF
+
+print OUT @obst_register;
+
+print OUT<<EOF;
+
+#undef BE_EMIT
+}
+
+EOF
+
 close(OUT);