2 ## --------------------------------------------------------------------------
4 ## Copyright 1996-2009 The NASM Authors - All Rights Reserved
5 ## See the file AUTHORS included with the NASM distribution for
6 ## the specific copyright holders.
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted provided that the following
10 ## conditions are met:
12 ## * Redistributions of source code must retain the above copyright
13 ## notice, this list of conditions and the following disclaimer.
14 ## * Redistributions in binary form must reproduce the above
15 ## copyright notice, this list of conditions and the following
16 ## disclaimer in the documentation and/or other materials provided
17 ## with the distribution.
19 ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
20 ## CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
21 ## INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 ## DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 ## NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 ## LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 ## CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 ## OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
31 ## EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 ## --------------------------------------------------------------------------
36 # Produce pptok.c, pptok.h and pptok.ph from pptok.dat
41 my($what, $in, $out) = @ARGV;
46 open(IN
, "< $in") or die "$0: cannot open: $in\n";
47 while (defined($line = <IN
>)) {
48 $line =~ s/\r?\n$//; # Remove trailing \r\n or \n
49 $line =~ s/^\s+//; # Remove leading whitespace
50 $line =~ s/\s*\#.*$//; # Remove comments and trailing whitespace
51 next if ($line eq '');
53 if ($line =~ /^\%(.*)\*$/) {
55 } elsif ($line =~ /^\%(.*)$/) {
57 } elsif ($line =~ /^\*(.*)$/) {
67 # Generate the expanded list including conditionals. The conditionals
68 # are at the beginning, padded to a power of 2, with the inverses
69 # interspersed; this allows a simple mask to pick out the condition.
71 while ((scalar @cond) & (scalar @cond)-1) {
76 foreach $ct (@cctok) {
79 push(@cptok, $ct.$cc);
80 push(@cptok, $ct.'n'.$cc);
82 push(@cptok, undef, undef);
86 $first_uncond = $pptok[0];
87 @pptok = (@cptok, @pptok);
89 open(OUT
, "> $out") or die "$0: cannot open: $out\n";
95 print OUT
"/* Automatically generated from $in by $0 */\n";
96 print OUT
"/* Do not edit */\n";
99 print OUT
"enum preproc_token {\n";
101 foreach $pt (@pptok) {
103 printf OUT
" %-16s = %3d,\n", "PP_\U$pt\E", $n;
107 printf OUT
" %-16s = %3d\n", 'PP_INVALID', -1;
111 print OUT
"enum pp_conditional {\n";
114 foreach $cc (@cond) {
116 printf OUT
"$c %-16s = %3d", "PPC_IF\U$cc\E", $n;
121 print OUT
"\n};\n\n";
123 printf OUT
"#define PP_COND(x) ((enum pp_conditional)((x) & 0x%x))\n",
124 (scalar(@cond)-1) << 1;
125 print OUT
"#define PP_IS_COND(x) ((unsigned int)(x) < PP_\U$first_uncond\E)\n";
126 print OUT
"#define PP_NEGATIVE(x) ((x) & 1)\n";
129 foreach $ct (@cctok) {
130 print OUT
"#define CASE_PP_\U$ct\E";
132 foreach $cc (@cond) {
134 print OUT
"$pref\tcase PP_\U${ct}${cc}\E: \\\n";
135 print OUT
"\tcase PP_\U${ct}N${cc}\E";
139 print OUT
"\n"; # No colon or newline on the last one
147 print OUT
"/* Automatically generated from $in by $0 */\n";
148 print OUT
"/* Do not edit */\n";
155 foreach $pt (@pptok) {
157 $tokens{'%'.$pt} = $n;
158 if ($pt =~ /[\@\[\]\\_]/) {
159 # Fail on characters which look like upper-case letters
160 # to the quick-and-dirty downcasing in the prehash
162 die "$in: invalid character in token: $pt";
168 my @hashinfo = gen_perfect_hash
(\
%tokens);
170 die "$0: no hash found\n";
174 verify_hash_table
(\
%tokens, \
@hashinfo);
176 ($n, $sv, $g) = @hashinfo;
179 die if ($n & ($n-1));
181 print OUT
"#include \"compiler.h\"\n";
182 print OUT
"#include <inttypes.h>\n";
183 print OUT
"#include <ctype.h>\n";
184 print OUT
"#include \"nasmlib.h\"\n";
185 print OUT
"#include \"hashtbl.h\"\n";
186 print OUT
"#include \"preproc.h\"\n";
189 # Note that this is global.
190 printf OUT
"const char * const pp_directives[%d] = {\n", scalar(@pptok);
191 foreach $d (@pptok) {
193 print OUT
" \"%$d\",\n";
195 print OUT
" NULL,\n";
200 printf OUT
"const uint8_t pp_directives_len[%d] = {\n", scalar(@pptok);
201 foreach $d (@pptok) {
202 printf OUT
" %d,\n", defined($d) ?
length($d)+1 : 0;
206 print OUT
"enum preproc_token pp_token_hash(const char *token)\n";
209 # Put a large value in unused slots. This makes it extremely unlikely
210 # that any combination that involves unused slot will pass the range test.
211 # This speeds up rejection of unrecognized tokens, i.e. identifiers.
212 print OUT
"#define UNUSED (65535/3)\n";
214 print OUT
" static const int16_t hash1[$n] = {\n";
215 for ($i = 0; $i < $n; $i++) {
216 my $h = ${$g}[$i*2+0];
217 print OUT
" ", defined($h) ?
$h : 'UNUSED', ",\n";
221 print OUT
" static const int16_t hash2[$n] = {\n";
222 for ($i = 0; $i < $n; $i++) {
223 my $h = ${$g}[$i*2+1];
224 print OUT
" ", defined($h) ?
$h : 'UNUSED', ",\n";
228 print OUT
" uint32_t k1, k2;\n";
229 print OUT
" uint64_t crc;\n";
230 # For correct overflow behavior, "ix" should be unsigned of the same
231 # width as the hash arrays.
232 print OUT
" uint16_t ix;\n";
235 printf OUT
" crc = crc64i(UINT64_C(0x%08x%08x), token);\n",
237 print OUT
" k1 = (uint32_t)crc;\n";
238 print OUT
" k2 = (uint32_t)(crc >> 32);\n";
240 printf OUT
" ix = hash1[k1 & 0x%x] + hash2[k2 & 0x%x];\n", $n-1, $n-1;
241 printf OUT
" if (ix >= %d)\n", scalar(@pptok);
242 print OUT
" return PP_INVALID;\n";
245 print OUT
" if (!pp_directives[ix] || nasm_stricmp(pp_directives[ix], token))\n";
246 print OUT
" return PP_INVALID;\n";
248 print OUT
" return ix;\n";
256 print OUT
"# Automatically generated from $in by $0\n";
257 print OUT
"# Do not edit\n";
260 print OUT
"%pptok_hash = (\n";
262 foreach $tok (@pptok) {
264 printf OUT
" '%%%s' => %d,\n", $tok, $n;