Formatting: kill off "stealth whitespace"
[platform/upstream/nasm.git] / regs.pl
1 #!/usr/bin/perl
2 #
3 # Read regs.dat and output regs.h and regs.c (included in names.c)
4 #
5
6 $nline = 0;
7
8 sub toint($) {
9     my($v) = @_;
10
11     return ($v =~ /^0/) ? oct $v : $v+0;
12 }
13
14 sub process_line($) {
15     my($line) = @_;
16     my @v;
17
18     if ( $line !~ /^\s*(\S+)\s*(\S+)\s*(\S+)\s*([0-9]+)$/i ) {
19         die "regs.dat:$nline: invalid input\n";
20     }
21     $reg      = $1;
22     $aclass   = $2;
23     $dclasses = $3;
24     $x86regno = toint($4);
25
26     if ($reg =~ /^(.*[^0-9])([0-9]+)\-([0-9]+)(|[^0-9].*)$/) {
27         $nregs = $3-$2+1;
28         $reg = $1.$2.$4;
29         $reg_nr = $2;
30         $reg_prefix = $1;
31         $reg_suffix = $4;
32     } else {
33         $nregs = 1;
34         undef $reg_prefix, $reg_suffix;
35     }
36
37     while ($nregs--) {
38         $regs{$reg} = $aclass;
39         $regvals{$reg} = $x86regno;
40
41         foreach $dclass (split(/,/, $dclasses)) {
42             if ( !defined($disclass{$dclass}) ) {
43                 $disclass{$dclass} = [];
44             }
45
46             $disclass{$dclass}->[$x86regno] = $reg;
47         }
48
49         # Compute the next register, if any
50         if (defined($reg_prefix)) {
51             $x86regno++;
52             $reg_nr++;
53             $reg = sprintf("%s%u%s", $reg_prefix, $reg_nr, $reg_suffix);
54         } else {
55             # Not a dashed sequence
56             die if ($nregs);
57         }
58     }
59 }
60
61 ($fmt, $file) = @ARGV;
62
63 %regs = ();
64 %regvals = ();
65 %disclass = ();
66 open(REGS, "< ${file}") or die "$0: Cannot open $file\n";
67 while ( defined($line = <REGS>) ) {
68     $nline++;
69
70     chomp $line;
71     $line =~ s/\s*(\#.*|)$//;
72
73     next if ( $line eq '' );
74
75     process_line($line);
76 }
77 close(REGS);
78
79 if ( $fmt eq 'h' ) {
80     # Output regs.h
81     print "/* automatically generated from $file - do not edit */\n\n";
82     $expr_regs = 1;
83     printf "#define EXPR_REG_START %d\n", $expr_regs;
84     print "enum reg_enum {\n";
85     $attach = ' = EXPR_REG_START'; # EXPR_REG_START == 1
86     foreach $reg ( sort(keys(%regs)) ) {
87         print "    R_\U${reg}\E${attach},\n";
88         $attach = '';
89         $expr_regs++;
90     }
91     print "    REG_ENUM_LIMIT,\n";
92     # Unfortunately the code uses both 0 and -1 as "no register" in
93     # different places...
94     print "    R_zero = 0,\n";
95     print "    R_none = -1";
96     print "};\n\n";
97     printf "#define EXPR_REG_END %d\n", $expr_regs-1;
98     foreach $reg ( sort(keys(%regs)) ) {
99         printf "#define %-15s %2d\n", "REG_NUM_\U${reg}", $regvals{$reg};
100     }
101     print "\n";
102 } elsif ( $fmt eq 'c' ) {
103     # Output regs.c
104     print "/* automatically generated from $file - do not edit */\n\n";
105     print "#include \"compiler.h\"\n\n";
106     print "static const char * const reg_names[] = "; $ch = '{';
107     # This one has no dummy entry for 0
108     foreach $reg ( sort(keys(%regs)) ) {
109         print "$ch\n    \"${reg}\"";
110         $ch = ',';
111     }
112     print "\n};\n";
113 } elsif ( $fmt eq 'fc' ) {
114     # Output regflags.c
115     print "/* automatically generated from $file - do not edit */\n";
116     print "static const int32_t reg_flags[] = {\n";
117     print "    0";              # Dummy entry for 0
118     foreach $reg ( sort(keys(%regs)) ) {
119         print ",\n    ", $regs{$reg}; # Print the class of the register
120     }
121     print "\n};\n";
122 } elsif ( $fmt eq 'vc' ) {
123     # Output regvals.c
124     print "/* automatically generated from $file - do not edit */\n";
125     print "static const int regvals[] = {\n";
126     print "    -1";             # Dummy entry for 0
127     foreach $reg ( sort(keys(%regs)) ) {
128         printf ",\n    %2d", $regvals{$reg}; # Print the regval of the register
129     }
130     print "\n};\n";
131 } elsif ( $fmt eq 'dc' ) {
132     # Output regdis.c
133     print "/* automatically generated from $file - do not edit */\n";
134     foreach $class ( sort(keys(%disclass)) ) {
135         printf "static const enum reg_enum rd_%-8s[] = {", $class;
136         @foo = @{$disclass{$class}};
137         @bar = ();
138         for ( $i = 0 ; $i < scalar(@foo) ; $i++ ) {
139             if (defined($foo[$i])) {
140                 push(@bar, "R_\U$foo[$i]\E");
141             } else {
142                 die "$0: No register name for class $class, value $i\n";
143             }
144         }
145         print join(',', @bar), "};\n";
146     }
147 } else {
148     die "$0: Unknown output format\n";
149 }