Remove ProduceVal. Replace it by Xor0 (to produce 0), Sbb0 (to produce 0/-1) and...
[libfirm] / ir / be / scripts / generate_regalloc_if.pl
1 #!/usr/bin/perl -w
2
3 #
4 # Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
5 #
6 # This file is part of libFirm.
7 #
8 # This file may be distributed and/or modified under the terms of the
9 # GNU General Public License version 2 as published by the Free Software
10 # Foundation and appearing in the file LICENSE.GPL included in the
11 # packaging of this file.
12 #
13 # Licensees holding valid libFirm Professional Edition licenses may use
14 # this file in accordance with the libFirm Commercial License.
15 # Agreement provided with the Software.
16 #
17 # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18 # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE.
20 #
21
22 # This script generates C code which creates ands sets up functions and
23 # data structures for the register allocator.
24 # Creation: 2005/11/14
25 # $Id$
26
27 use strict;
28 use Data::Dumper;
29 use integer;
30
31 my $specfile   = $ARGV[0];
32 my $target_dir = $ARGV[1];
33
34 our $arch;
35 our %reg_classes;
36 our %cpu;
37
38 # include spec file
39
40 my $return;
41
42 use strict "subs";
43 unless ($return = do $specfile) {
44         die "Fatal error: couldn't parse $specfile: $@" if $@;
45         die "Fatal error: couldn't do $specfile: $!"    unless defined $return;
46         die "Fatal error: couldn't run $specfile"       unless $return;
47 }
48 use strict "subs";
49
50 my $target_c   = $target_dir."/gen_".$arch."_regalloc_if.c";
51 my $target_h   = $target_dir."/gen_".$arch."_regalloc_if.h";
52
53 # helper function
54 sub translate_reg_type {
55         my $t = shift;
56
57         if ($t == 0) {
58                 return "arch_register_type_none";
59         }
60         else {
61                 my @types;
62
63                 if ($t & 1) {
64                         push(@types, "arch_register_type_caller_save");
65                 }
66
67                 if ($t & 2) {
68                         push(@types, "arch_register_type_callee_save");
69                 }
70
71                 if ($t & 4) {
72                         push(@types, "arch_register_type_ignore");
73                 }
74
75                 if ($t & 8) {
76                         push(@types, "arch_register_type_joker");
77                 }
78
79                 if ($t & 16) {
80                         push(@types, "arch_register_type_virtual");
81                 }
82
83                 if ($t & 32) {
84                         push(@types, "arch_register_type_state");
85                 }
86
87                 return join(" | ", @types);
88         }
89 }
90
91 # stacks for output
92 my @obst_regtypes_def; # stack for the register type variables definitions
93 my @obst_regtypes_decl;# stack for the register type variables declarations
94 my @obst_regclasses;   # stack for the register class variables
95 my @obst_classdef;     # stack to define a name for a class index
96 my @obst_regdef;       # stack to define a name for a register index
97 my @obst_reginit;      # stack for the register type inits
98 my @obst_req;          # stack for the register requirements
99 my @obst_limit_func;   # stack for functions to return a subset of a register class
100 my @obst_header_all;   # stack for some extern struct defs needed for bearch_$arch include
101
102 my $numregs;
103 my $class_ptr;
104 my $class_idx = 0;
105
106 my $tmp;
107
108 my %reg2class;
109 my %regclass2len;
110
111 push(@obst_classdef, "enum reg_classes {\n");
112
113 my $class_mode;
114
115 # generate register type and class variable, init function and default requirements
116 foreach my $class_name (keys(%reg_classes)) {
117         my @class         = @{ $reg_classes{"$class_name"} };
118         my $old_classname = $class_name;
119
120         $class_name = $arch."_".$class_name;
121         $numregs    = "N_".$class_name."_REGS";
122         $class_ptr  = "&".$arch."_reg_classes[CLASS_".$class_name."]";
123         my $flags = pop(@class);
124         $class_mode  = $flags->{"mode"};
125         my $class_flags = $flags->{"flags"};
126         my $flags_prepared = "";
127
128         if(defined($class_flags)) {
129                 my $first = 1;
130                 foreach my $flag (split(/\|/, $class_flags)) {
131                         if(!$first) {
132                                 $flags_prepared .= "|";
133                         } else {
134                                 $first = 0;
135                         }
136                         $flags_prepared .= "arch_register_class_flag_$flag";
137                 }
138         } else {
139                 $flags_prepared = "0";
140         }
141
142         push(@obst_regtypes_decl, "extern const arch_register_t ${class_name}_regs[$numregs];\n");
143
144         push(@obst_classdef, "\tCLASS_$class_name = $class_idx,\n");
145         push(@obst_regclasses, "{ $class_idx, \"$class_name\", $numregs, NULL, ".$class_name."_regs, $flags_prepared }");
146
147         my $idx = 0;
148         push(@obst_reginit, "\t/* set largest possible mode for '$class_name' */\n");
149         push(@obst_reginit, "\t$arch\_reg_classes[CLASS_".$class_name."].mode = $class_mode;\n\n");
150         push(@obst_regtypes_def, "const arch_register_t ${class_name}_regs[$numregs] = {\n");
151
152         push(@obst_regdef, "enum reg_${class_name}_indices {\n");
153         foreach (@class) {
154                 my $ucname = uc($_->{"name"});
155                 my $type = translate_reg_type($_->{"type"});
156                 # realname is name if not set by user
157                 $_->{"realname"} = $_->{"name"} if (! exists($_->{"realname"}));
158                 my $realname = $_->{realname};
159
160
161                 $reg2class{$_->{"name"}} = { "class" => $old_classname, "index" => $idx }; # remember reg to class for later use
162                 push(@obst_regdef, "\tREG_${ucname},\n");
163
164                 push(@obst_regtypes_def, "\t{\n");
165                 push(@obst_regtypes_def, "\t\t\"$realname\",\n");
166                 push(@obst_regtypes_def, "\t\t$class_ptr,\n");
167                 push(@obst_regtypes_def, "\t\tREG_${ucname},\n");
168                 push(@obst_regtypes_def, "\t\t$type\n");
169                 push(@obst_regtypes_def, "\t},\n");
170
171                 $idx++;
172         }
173         push(@obst_regtypes_def, "};\n");
174
175         $regclass2len{$old_classname} = $idx;
176         push(@obst_regdef, "\t$numregs = $idx\n");
177         push(@obst_regdef, "};\n\n");
178
179         $class_idx++;
180 }
181
182 push(@obst_classdef, "\tN_CLASSES = ".scalar(keys(%reg_classes))."\n");
183 push(@obst_classdef, "};\n\n");
184
185 $tmp = uc($arch);
186
187 # generate header (external usage) file
188 open(OUT, ">$target_h") || die("Fatal error: Could not open $target_h, reason: $!\n");
189
190 my $creation_time = localtime(time());
191
192 print OUT<<EOF;
193 /**
194  * \@file
195  * \@brief Contains additional external requirements defs for external includes.
196  * \@note   DO NOT EDIT THIS FILE, your changes will be lost.
197  *         Edit $specfile instead.
198  *         created by: $0 $specfile $target_dir
199  * \@date   $creation_time
200  */
201 #ifndef FIRM_BE_${tmp}_GEN_${tmp}_REGALLOC_IF_H
202 #define FIRM_BE_${tmp}_GEN_${tmp}_REGALLOC_IF_H
203
204 #include "../bearch.h"
205 #include "${arch}_nodes_attr.h"
206
207 EOF
208
209 print OUT @obst_regdef, "\n";
210
211 print OUT @obst_classdef, "\n";
212
213 print OUT @obst_regtypes_decl, "\n";
214
215 print OUT "extern arch_register_class_t $arch\_reg_classes[N_CLASSES];\n\n";
216
217 print OUT "void ".$arch."_register_init(void);\n\n";
218
219 print OUT @obst_header_all, "\n";
220
221 print OUT "\n#endif\n";
222
223 close(OUT);
224
225
226
227 # generate c file
228 open(OUT, ">$target_c") || die("Fatal error: Could not open $target_c, reason: $!\n");
229
230 $creation_time = localtime(time());
231
232 print OUT<<EOF;
233 /**
234  * \@file
235  * \@brief  The generated interface for the register allocator.
236  *          Contains register classes and types and register constraints
237  *          for all nodes where constraints were given in spec.
238  * \@note    DO NOT EDIT THIS FILE, your changes will be lost.
239  *          Edit $specfile instead.
240  *          created by: $0 $specfile $target_dir
241  * \$date    $creation_time
242  */
243 #include "config.h"
244
245 #include "gen_${arch}_regalloc_if.h"
246 #include "gen_${arch}_machine.h"
247 #include "bearch_${arch}_t.h"
248 #include "${arch}_map_regs.h"
249 #include "irmode.h"
250
251 EOF
252
253 print OUT "arch_register_class_t ${arch}_reg_classes[] = {\n\t".join(",\n\t", @obst_regclasses)."\n};\n\n";
254
255 print OUT @obst_regtypes_def, "\n";
256
257 print OUT "void ${arch}_register_init(void) {\n";
258 print OUT @obst_reginit;
259 print OUT "}\n\n";
260
261 print OUT @obst_limit_func;
262
263 print OUT @obst_req;
264
265 close(OUT);
266
267 ###
268 # Gets the variable name for the execution unit assigned to this register.
269 ###
270 sub get_execunit_variable_name {
271         my $unit    = shift;
272         my $name    = "NULL";
273         my $uc_arch = uc($arch);
274
275         if ($unit) {
276                 my $found = 0;
277 SRCH:   foreach my $cur_type (keys(%cpu)) {
278                         foreach my $cur_unit (@{ $cpu{"$cur_type"} }) {
279                                 if ($unit eq $cur_unit) {
280                                         my $tp_name   = "$arch\_execution_units_$cur_type";
281                                         my $unit_name = "$uc_arch\_EXECUNIT_TP_$cur_type\_$unit";
282                                         $name  = "&".$tp_name."[".$unit_name."]";
283                                         $found = 1;
284                                         last SRCH;
285                                 }
286                         }
287                 }
288
289                 if (! $found) {
290                         print STDERR "Invalid execution unit $unit specified!\n";
291                 }
292         }
293
294         return $name;
295 }