2007-08-31 05:45:56 +08:00
|
|
|
#!/usr/bin/perl
|
|
|
|
#
|
|
|
|
# Generate a perfect hash for token parsing
|
|
|
|
#
|
|
|
|
# Usage: tokenhash.pl insns.dat regs.dat tokens.dat
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'phash.ph';
|
|
|
|
|
|
|
|
my($insns_dat, $regs_dat, $tokens_dat) = @ARGV;
|
|
|
|
|
|
|
|
%tokens = ();
|
|
|
|
@tokendata = ();
|
|
|
|
|
|
|
|
#
|
|
|
|
# List of condition codes
|
|
|
|
#
|
|
|
|
@conditions = ('a', 'ae', 'b', 'be', 'c', 'e', 'g', 'ge', 'l', 'le',
|
|
|
|
'na', 'nae', 'nb', 'nbe', 'nc', 'ne', 'ng', 'nge', 'nl',
|
|
|
|
'nle', 'no', 'np', 'ns', 'nz', 'o', 'p', 'pe', 'po', 's', 'z');
|
|
|
|
|
|
|
|
#
|
|
|
|
# Read insns.dat
|
|
|
|
#
|
|
|
|
open(ID, "< ${insns_dat}") or die "$0: cannot open $insns_dat: $!\n";
|
|
|
|
while (defined($line = <ID>)) {
|
|
|
|
if ($line =~ /^([A-Z0-9_]+)(|cc)\s/) {
|
|
|
|
$insn = $1.$2;
|
|
|
|
($token = $1) =~ tr/A-Z/a-z/;
|
|
|
|
|
|
|
|
if ($2 eq '') {
|
|
|
|
# Single instruction token
|
|
|
|
if (!defined($tokens{$token})) {
|
|
|
|
$tokens{$token} = scalar @tokendata;
|
2007-09-13 11:27:41 +08:00
|
|
|
push(@tokendata, "\"${token}\", TOKEN_INSN, C_none, I_${insn}");
|
2007-08-31 05:45:56 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# Conditional instruction
|
|
|
|
foreach $cc (@conditions) {
|
|
|
|
if (!defined($tokens{$token.$cc})) {
|
|
|
|
$tokens{$token.$cc} = scalar @tokendata;
|
2007-09-11 02:58:40 +08:00
|
|
|
push(@tokendata, "\"${token}${cc}\", TOKEN_INSN, C_\U$cc\E, I_${insn}");
|
2007-08-31 05:45:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(ID);
|
|
|
|
|
|
|
|
#
|
|
|
|
# Read regs.dat
|
|
|
|
#
|
|
|
|
open(RD, "< ${regs_dat}") or die "$0: cannot open $regs_dat: $!\n";
|
|
|
|
while (defined($line = <RD>)) {
|
|
|
|
if ($line =~ /^([a-z0-9_-]+)\s/) {
|
|
|
|
$reg = $1;
|
|
|
|
|
|
|
|
if ($reg =~ /^(.*[^0-9])([0-9]+)\-([0-9]+)(|[^0-9].*)$/) {
|
|
|
|
$nregs = $3-$2+1;
|
|
|
|
$reg = $1.$2.$4;
|
|
|
|
$reg_nr = $2;
|
|
|
|
$reg_prefix = $1;
|
|
|
|
$reg_suffix = $4;
|
|
|
|
} else {
|
|
|
|
$nregs = 1;
|
|
|
|
undef $reg_prefix, $reg_suffix;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($nregs--) {
|
|
|
|
if (defined($tokens{$reg})) {
|
|
|
|
die "Duplicate definition: $reg\n";
|
|
|
|
}
|
|
|
|
$tokens{$reg} = scalar @tokendata;
|
2007-09-11 02:58:40 +08:00
|
|
|
push(@tokendata, "\"${reg}\", TOKEN_REG, 0, R_\U${reg}\E");
|
2007-08-31 05:45:56 +08:00
|
|
|
|
|
|
|
if (defined($reg_prefix)) {
|
|
|
|
$reg_nr++;
|
|
|
|
$reg = sprintf("%s%u%s", $reg_prefix, $reg_nr, $reg_suffix);
|
|
|
|
} else {
|
|
|
|
# Not a dashed sequence
|
|
|
|
die if ($nregs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(RD);
|
|
|
|
|
|
|
|
#
|
|
|
|
# Read tokens.dat
|
|
|
|
#
|
|
|
|
open(TD, "< ${tokens_dat}") or die "$0: cannot open $tokens_dat: $!\n";
|
|
|
|
while (defined($line = <TD>)) {
|
|
|
|
if ($line =~ /^\%\s+(.*)$/) {
|
|
|
|
$pattern = $1;
|
|
|
|
} elsif ($line =~ /^([a-z0-9_-]+)/) {
|
|
|
|
$token = $1;
|
|
|
|
|
2007-09-11 02:59:01 +08:00
|
|
|
if (defined($tokens{$token})) {
|
2007-08-31 05:45:56 +08:00
|
|
|
die "Duplicate definition: $token\n";
|
|
|
|
}
|
|
|
|
$tokens{$token} = scalar @tokendata;
|
|
|
|
|
|
|
|
$data = $pattern;
|
|
|
|
$data =~ s/\*/\U$token/g;
|
|
|
|
|
|
|
|
push(@tokendata, "\"$token\", $data");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(TD);
|
|
|
|
|
|
|
|
#
|
|
|
|
# Actually generate the hash
|
|
|
|
#
|
|
|
|
@hashinfo = gen_perfect_hash(\%tokens);
|
|
|
|
if (!defined(@hashinfo)) {
|
|
|
|
die "$0: no hash found\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Paranoia...
|
|
|
|
verify_hash_table(\%tokens, \@hashinfo);
|
|
|
|
|
2007-09-01 02:10:23 +08:00
|
|
|
($n, $sv, $g) = @hashinfo;
|
2007-08-31 05:45:56 +08:00
|
|
|
$sv2 = $sv+2;
|
|
|
|
|
|
|
|
die if ($n & ($n-1));
|
|
|
|
|
2007-08-31 08:28:35 +08:00
|
|
|
print "/*\n";
|
|
|
|
print " * This file is generated from insns.dat, regs.dat and token.dat\n";
|
|
|
|
print " * by tokhash.pl; do not edit.\n";
|
|
|
|
print " */\n";
|
|
|
|
print "\n";
|
|
|
|
|
2007-08-31 06:35:34 +08:00
|
|
|
print "#include <string.h>\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
print "#include \"nasm.h\"\n";
|
|
|
|
print "#include \"insns.h\"\n";
|
|
|
|
print "\n";
|
|
|
|
|
|
|
|
print "#define rot(x,y) (((uint32_t)(x) << (y))+((uint32_t)(x) >> (32-(y))))\n";
|
|
|
|
print "\n";
|
|
|
|
|
2007-09-11 02:58:40 +08:00
|
|
|
# These somewhat odd sizes and ordering thereof are due to the
|
|
|
|
# relative ranges of the types; this makes it fit in 16 bytes on
|
|
|
|
# 64-bit machines and 12 bytes on 32-bit machines.
|
2007-08-31 05:45:56 +08:00
|
|
|
print "struct tokendata {\n";
|
2007-08-31 15:31:51 +08:00
|
|
|
print " const char *string;\n";
|
2007-09-11 02:58:40 +08:00
|
|
|
print " int16_t tokentype;\n";
|
2007-09-13 11:27:41 +08:00
|
|
|
print " int16_t aux;\n";
|
|
|
|
print " int32_t num;\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
print "};\n";
|
|
|
|
print "\n";
|
|
|
|
|
|
|
|
print "int nasm_token_hash(const char *token, struct tokenval *tv)\n";
|
|
|
|
print "{\n";
|
|
|
|
|
2007-08-31 15:23:31 +08:00
|
|
|
# Put a large value in unused slots. This makes it extremely unlikely
|
|
|
|
# that any combination that involves unused slot will pass the range test.
|
|
|
|
# This speeds up rejection of unrecognized tokens, i.e. identifiers.
|
2007-08-31 15:31:51 +08:00
|
|
|
print "#define UNUSED 16383\n";
|
2007-08-31 15:23:31 +08:00
|
|
|
|
2007-08-31 15:31:51 +08:00
|
|
|
print " static const int16_t hash1[$n] = {\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
for ($i = 0; $i < $n; $i++) {
|
2007-09-01 02:10:23 +08:00
|
|
|
my $h = ${$g}[$i*2+0];
|
2007-08-31 15:31:51 +08:00
|
|
|
print " ", defined($h) ? $h : 'UNUSED', ",\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
}
|
2007-08-31 15:31:51 +08:00
|
|
|
print " };\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
|
2007-08-31 15:31:51 +08:00
|
|
|
print " static const int16_t hash2[$n] = {\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
for ($i = 0; $i < $n; $i++) {
|
2007-09-01 02:10:23 +08:00
|
|
|
my $h = ${$g}[$i*2+1];
|
2007-08-31 15:31:51 +08:00
|
|
|
print " ", defined($h) ? $h : 'UNUSED', ",\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
}
|
2007-08-31 15:31:51 +08:00
|
|
|
print " };\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
|
2007-08-31 15:31:51 +08:00
|
|
|
printf " static const struct tokendata tokendata[%d] = {\n", scalar(@tokendata);
|
2007-08-31 05:45:56 +08:00
|
|
|
foreach $d (@tokendata) {
|
2007-08-31 15:31:51 +08:00
|
|
|
print " { ", $d, " },\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
}
|
2007-08-31 15:31:51 +08:00
|
|
|
print " };\n";
|
2007-08-31 05:45:56 +08:00
|
|
|
|
2007-08-31 15:31:51 +08:00
|
|
|
print " uint32_t k1 = 0, k2 = 0;\n";
|
|
|
|
print " uint8_t c;\n";
|
2007-08-31 14:06:17 +08:00
|
|
|
# For correct overflow behavior, "ix" should be unsigned of the same
|
|
|
|
# width as the hash arrays.
|
2007-08-31 15:31:51 +08:00
|
|
|
print " uint16_t ix;\n";
|
|
|
|
print " const struct tokendata *data;\n";
|
|
|
|
print " const char *p = token;\n";
|
|
|
|
print "\n";
|
|
|
|
|
|
|
|
print " while ((c = *p++) != 0) {\n";
|
2007-09-19 03:38:07 +08:00
|
|
|
printf " uint32_t kn1 = rot(k1,%2d)^(rot(k2,%2d) + c);\n", ${$sv}[0], ${$sv}[1];
|
|
|
|
printf " uint32_t kn2 = rot(k2,%2d)^(rot(k1,%2d) + c);\n", ${$sv}[2], ${$sv}[3];
|
2007-08-31 15:31:51 +08:00
|
|
|
print " k1 = kn1; k2 = kn2;\n";
|
|
|
|
print " }\n";
|
|
|
|
print "\n";
|
|
|
|
printf " ix = hash1[k1 & 0x%x] + hash2[k2 & 0x%x];\n", $n-1, $n-1;
|
|
|
|
printf " if (ix >= %d)\n", scalar(@tokendata);
|
2007-09-19 13:54:40 +08:00
|
|
|
print " return tv->t_type = TOKEN_ID;\n";
|
2007-08-31 15:31:51 +08:00
|
|
|
print "\n";
|
|
|
|
print " data = &tokendata[ix];\n";
|
|
|
|
|
|
|
|
# print " fprintf(stderr, \"Looked for: %s found: %s\\n\", token, data->string);\n\n";
|
|
|
|
|
|
|
|
print " if (strcmp(data->string, token))\n";
|
2007-09-19 13:54:40 +08:00
|
|
|
print " return tv->t_type = TOKEN_ID;\n";
|
2007-08-31 15:31:51 +08:00
|
|
|
print "\n";
|
2007-09-11 02:58:40 +08:00
|
|
|
print " tv->t_integer = data->num;\n";
|
|
|
|
print " tv->t_inttwo = data->aux;\n";
|
2007-08-31 15:31:51 +08:00
|
|
|
print " return tv->t_type = data->tokentype;\n";
|
|
|
|
print "}\n";
|