3 # perl replacement of genmdesc.c for use when cross-compiling
8 # must keep in sync with mini.h
9 my @spec_names = qw(dest src1 src2 len clob);
10 sub INST_DEST
() {return 0;}
11 sub INST_SRC1
() {return 1;}
12 sub INST_SRC2
() {return 2;}
13 sub INST_LEN
() {return 3;}
14 sub INST_CLOB
() {return 4;}
15 sub INST_MAX
() {return 5;}
17 # this must include all the #defines used in mini-ops.h
18 my @defines = qw
(__i386__ __x86_64__ __ppc__ __powerpc__ __arm__
19 __sparc__ sparc __s390__ s390 __ia64__ __alpha__ __mips__
);
25 my ($srcdir, $arch) = @_;
26 my $opcodes_def = "$srcdir/../cil/opcode.def";
30 my $cpp = $ENV{"CPP"};
31 $cpp = "cpp" unless defined $cpp;
35 $arch_found = 1 if $arch eq $_;
37 die "$arch arch is not supported.\n" unless $arch_found;
39 $cpp .= " -D$arch $srcdir/mini-ops.h|";
40 #print "Running: $cpp\n";
41 open (OPS
, $cpp) || die "Cannot execute cpp: $!";
43 next unless /MINI_OP\s*\(\s*(\S+?)\s*,\s*"(.*?)"/;
44 my ($sym, $name) = ($1, $2);
45 push @opcodes, [$sym, $name];
46 $table{$name} = {num
=> $i, name
=> $name};
57 open (DESC
, $name) || die "Cannot open $name: $!";
65 my @values = split (/\s+/);
66 next unless ($values [0] =~ /(\S+?):/);
68 my $desc = $table {$name};
70 die "Invalid opcode $name at line $line\n" unless defined $desc;
71 die "Duplicated opcode $name at line $line\n" if $desc->{"desc"};
73 $desc->{"comment"} = $comment;
76 #print "values for $name: " . join (' ', @values) . " num: " . int(@values), "\n";
77 for my $val (@values) {
78 if ($val =~ /(\S+):(.*)/) {
79 $desc->{"spec"}->{$1} = $2;
90 foreach (@spec_names) {
91 my $val = $spec->{$_};
98 #print "vals: " . join (' ', @vals) . "\n";
100 for (my $i = 0; $i < @vals; ++$i) {
101 if (defined $vals [$i]) {
102 if ($i == INST_LEN
) {
103 $res .= sprintf ("\\x%x\" \"", +$vals [$i]);
105 if ($vals [$i] =~ /^[a-zA-Z0-9]$/) {
108 $res .= sprintf ("\\x%x\" \"", $vals [$i]);
119 my ($fname, $name) = @_;
122 my $idx_array = "const guint16 ${name}_idx [] = {\n";
124 open (OUT
, ">$fname") || die "Cannot open file $fname: $!";
125 print OUT
"/* File automatically generated by genmdesc, don't change */\n\n";
126 print OUT
"const char $name [] = {\n";
127 print OUT
"\t\"" . ("\\x0" x INST_MAX
) . "\"\t/* null entry */\n";
130 for ($i = 0; $i < @opcodes; ++$i) {
131 my $name = $opcodes [$i]->[1];
132 my $desc = $table {$name};
133 my $spec = $desc->{"spec"};
136 print OUT build_spec
($spec);
137 print OUT
"\"\t/* $name */\n";
138 my $pos = $idx * INST_MAX
;
139 $idx_array .= "\t$pos,\t/* $name */\n";
142 $idx_array .= "\t0,\t/* $name */\n";
146 print OUT
"$idx_array};\n\n";
151 die "genmdesc.pl arch srcdir desc output name\n";
154 my $arch = shift || usage
();
155 my $srcdir = shift || usage
();
156 my $file = shift || usage
();
157 my $output = shift || usage
();
158 my $name = shift || usage
();
160 load_opcodes
($srcdir, $arch);
162 build_table
($output, $name);