Fixed some warning about unused variables.
[libfirm] / ir / be / scripts / generate_new_opcodes.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 the C code which creates the irop's and
23 # their coresponding node constructors for all operations in a given spec
24 # so they can be used as normal firm nodes.
25 # Creation: 2005/10/19
26 # $Id$
27
28 use strict;
29 use Data::Dumper;
30
31 my $specfile   = $ARGV[0];
32 my $target_dir = $ARGV[1];
33 my $state      = 1;
34 my $cur_op     = "";
35 my $line_nr    = 0;
36
37 our $arch;
38 our $additional_opcodes;
39 our %nodes;
40 our %operands;
41 our %cpu;
42 our $default_op_attr_type;
43 our $default_attr_type;
44 our $default_cmp_attr;
45 our $default_copy_attr;
46 our %init_attr;
47 our $custom_init_attr_func;
48 our %compare_attr;
49 our %copy_attr;
50 our %reg_classes;
51 our %custom_irn_flags;
52
53 # include spec file
54
55 my $return;
56
57 no strict "subs";
58 unless ($return = do $specfile) {
59         die "Fatal error: couldn't parse $specfile: $@" if $@;
60         die "Fatal error: couldn't do $specfile: $!"    unless defined $return;
61         die "Fatal error: couldn't run $specfile"       unless $return;
62 }
63 use strict "subs";
64
65 my $target_c = $target_dir."/gen_".$arch."_new_nodes.c.inl";
66 my $target_h = $target_dir."/gen_".$arch."_new_nodes.h";
67
68 if(!defined($default_attr_type)) {
69         $default_attr_type = "${arch}_attr_t";
70 }
71 if(!defined(%init_attr)) {
72         %init_attr = (
73                 "$default_attr_type" => "\tinit_${arch}_attributes(res, flags, in_reqs, exec_units, n_res);",
74         );
75 }
76 if(!defined($default_cmp_attr)) {
77         $default_cmp_attr = "${arch}_compare_attr";
78 }
79 if(!defined(%compare_attr)) {
80         %compare_attr = (
81                 "${default_attr_type}" => "${default_cmp_attr}",
82         );
83 }
84
85 # Operands are really just nodes with some special constraints, we check
86 # these and create new entries in the nodes hashmap
87 foreach my $op (keys(%operands)) {
88         my %operand = %{ $operands{"$op"} };
89         my %op_node;
90
91         # constraints
92         if(defined($operand{op_flags})) { die "Fatal error: operands can't have op_flags ($op)"; }
93         if(defined($operand{cmp_attr})) { die "Fatal error: cmp_attr not allowed for operands ($op)"; }
94         if(defined($operand{mode})) { die "Operand must not have a mode defined ($op)"; }
95         if(defined($operand{out_arity})) { die "operand must not have out_arity defined ($op)"; }
96         if(defined($nodes{$op})) { die "$op defined as operand and as node"; };
97
98
99         foreach my $flag (keys(%operand)) {
100                 $op_node{$flag} = $operand{$flag};
101         }
102         $op_node{op_flags} = "O";
103         $op_node{cmp_attr} = 'return 1;';
104         $op_node{mode}     = 'mode_ANY';
105
106         $nodes{$op} = \%op_node;
107 }
108
109 #print Dumper(%nodes);
110 #print Dumper(%operands);
111
112 # create c code file from specs
113
114 my @obst_limit_func;
115 my @obst_reg_reqs;
116 my @obst_opvar;       # stack for the "ir_op *op_<arch>_<op-name> = NULL;" statements
117 my @obst_get_opvar;   # stack for the get_op_<arch>_<op-name>() functions
118 my $obst_constructor; # stack for node constructor functions
119 my @obst_new_irop;    # stack for the new_ir_op calls
120 my @obst_enum_op;     # stack for creating the <arch>_opcode enum
121 my $obst_header;      # stack for function prototypes
122 my @obst_is_archirn;  # stack for the is_$arch_irn() function
123 my @obst_cmp_attr;    # stack for the compare attribute functions
124 my $obst_proj = "";   # stack for the pn_ numbers
125 my $orig_op;
126 my $arity;
127 my $cmp_attr_func;
128 my $temp;
129 my $n_opcodes = 0;    # number of opcodes
130 my $ARITY_VARIABLE = -1;
131 my $ARITY_DYNAMIC  = -2;
132 my %requirements = ();
133 my %limit_bitsets = ();
134 my %reg2class = ();
135 my %regclass2len = ();
136
137 # build register->class hashes
138 foreach my $class_name (keys(%reg_classes)) {
139         my @class         = @{ $reg_classes{"$class_name"} };
140         my $old_classname = $class_name;
141
142         pop(@class);
143
144         $class_name = $arch."_".$class_name;
145
146         my $idx = 0;
147         foreach (@class) {
148                 $reg2class{$_->{name}} = {
149                         "class" => $old_classname,
150                         "index" => $idx
151                 };
152                 $idx++;
153         }
154
155         $regclass2len{$old_classname} = $idx;
156 }
157
158
159 # for registering additional opcodes
160 $n_opcodes += $additional_opcodes if (defined($additional_opcodes));
161
162 $obst_header .= "void ${arch}_create_opcodes(const arch_irn_ops_t *be_ops);\n";
163
164 sub create_constructor {
165         my $op   = shift;
166         my $name = shift;
167         my $n    = shift;
168         my $on   = shift;
169         my $known_mode;
170
171         my $suffix = "";
172         if ($name ne "") {
173                 $suffix = "_${name}";
174         }
175
176         # determine mode
177         if (exists($n->{mode})) {
178                 $known_mode = $n->{mode};
179         }
180
181         # determine arity
182         my $arity = 0;
183         if(exists($n->{"arity"})) {
184                 $arity = $n->{"arity"};
185         } elsif (exists($n->{"reg_req"}) && exists($n->{"reg_req"}{"in"})) {
186                 $arity = scalar(@{ $n->{"reg_req"}{"in"} });
187         } elsif (exists($n->{"ins"})) {
188                 $arity = scalar(@{ $n->{"ins"} });
189         }
190         if($arity eq "variable") {
191                 $arity = $ARITY_VARIABLE;
192         } elsif($arity eq "dynamic") {
193                 $arity = $ARITY_DYNAMIC;
194         }
195
196         # determine out arity
197         my $out_arity = 0;
198         if(exists($n->{"out_arity"})) {
199                 $out_arity = $n->{"out_arity"};
200         } elsif (exists($n->{"reg_req"}) && exists($n->{"reg_req"}{"out"})) {
201                 $out_arity = scalar(@{ $n->{"reg_req"}{"out"} });
202         } elsif (exists($n->{"outs"})) {
203                 $out_arity = scalar(@{ $n->{"outs"} });
204         }
205         if($out_arity eq "variable") {
206                 $out_arity = $ARITY_VARIABLE;
207         } elsif($out_arity eq "dynamic") {
208                 $out_arity = $ARITY_DYNAMIC;
209         }
210         if ($out_arity != 0 && $out_arity != 1 && !defined($known_mode)) {
211                 $known_mode = "mode_T";
212         }
213
214         my $comment = $n->{"comment"};
215         if(!exists($n->{"comment"})) {
216                 $comment = "construct ${orig_op} node";
217         }
218         $comment =
219                 "/**\n".
220                 " * ${comment}\n".
221                 " */\n";
222
223         $obst_constructor .= $comment;
224
225         # create constructor head
226         my $complete_args = "";
227         $temp             = "";
228
229         $temp = "ir_node *new_bd_${arch}_${op}${suffix}(dbg_info *dbgi, ir_node *block";
230         if (!exists($n->{"args"})) { # default args
231                 if ($arity == $ARITY_VARIABLE) {
232                         $complete_args = ", int arity, ir_node *in[]";
233                 } elsif ($arity == $ARITY_DYNAMIC) {
234                         $complete_args = "";
235                 } else {
236                         for (my $i = 0; $i < $arity; $i++) {
237                                 my $opname = "op${i}";
238                                 if (exists($n->{"ins"})) {
239                                         my @ins = @{ $n->{"ins"} };
240                                         $opname = $ins[$i];
241                                 }
242
243                                 $complete_args .= ", ir_node *${opname}";
244                         }
245                 }
246                 if ($out_arity == $ARITY_VARIABLE) {
247                         $complete_args .= ", int n_res";
248                 }
249
250                 if (!defined($known_mode)) {
251                         $complete_args .= ", ir_mode *mode";
252                 }
253         } else { # user defined args
254                 for my $href (@{ $n->{"args"} }) {
255                         $href->{"type"} .= " " if ($href->{"type"} !~ / [*]?$/); # put a space between name and type if there is none at the end
256                         $complete_args  .= ", ".$href->{"type"}.$href->{"name"};
257                 }
258         }
259
260         # we have additional attribute arguements
261         if (exists($n->{"attr"})) {
262                 $complete_args .= ", ".$n->{"attr"};
263         }
264
265         $temp .= "$complete_args)";
266         $obst_constructor .= "${temp}\n{\n";
267
268         $obst_header .= $comment;
269         $obst_header .= "${temp};\n";
270
271         # emit constructor code
272         $temp = <<EOF;
273         ir_graph         *irg     = get_irn_irg(block);
274         ir_op            *op      = op_${arch}_${op};
275         arch_irn_flags_t  flags   = arch_irn_flags_none;
276         ir_node          *res;
277         backend_info_t   *info;
278 EOF
279
280         if($arity == $ARITY_DYNAMIC) {
281                 $temp .= <<EOF;
282         int             arity   = -1;
283         ir_node       **in      = NULL;
284 EOF
285         } elsif($arity == $ARITY_VARIABLE) {
286         } else {
287                 $temp .= <<EOF;
288         int             arity   = $arity;
289 EOF
290                 if($arity > 0) {
291                         $temp .= <<EOF;
292         ir_node        *in[$arity];
293 EOF
294                 } else {
295                         $temp .= <<EOF;
296         ir_node       **in      = NULL;
297 EOF
298                 }
299         }
300         if($out_arity == $ARITY_DYNAMIC) {
301                 $temp .= <<EOF;
302         int             n_res   = -1;
303 EOF
304         } elsif($out_arity == $ARITY_VARIABLE) {
305         } else {
306                 $temp .= <<EOF;
307         int             n_res   = ${out_arity};
308 EOF
309         }
310
311         if (defined($known_mode)) {
312                 $temp .= <<EOF;
313         ir_mode        *mode    = ${known_mode};
314 EOF
315         }
316
317         # set up static variables for cpu execution unit assigments
318         if (exists($n->{"units"})) {
319                 $temp .= gen_execunit_list_initializer($n->{"units"});
320         } else {
321                 $temp .= <<EOF;
322         static const be_execution_unit_t ***exec_units = NULL;
323 EOF
324         }
325
326         undef my $in_req_var;
327         undef my $out_req_var;
328
329         my $set_out_reqs = "";
330
331         # set up static variables for requirements and registers
332         if (exists($n->{"reg_req"})) {
333                 my %req = %{ $n->{"reg_req"} };
334                 my $idx;
335
336                 undef my @in;
337                 @in = @{ $req{"in"} } if (exists($req{"in"}));
338                 undef my @out;
339                 @out = @{ $req{"out"} } if exists(($req{"out"}));
340
341                 for(my $idx = 0; $idx < $#in; $idx++) {
342                         my $req = $in[$idx];
343                         generate_requirements($req, $n, "${arch}_${op}", $idx, 1);
344                 }
345                 for(my $idx = 0; $idx < $#out; $idx++) {
346                         my $req = $out[$idx];
347                         generate_requirements($req, $n, "${arch}_${op}", $idx, 0);
348                 }
349
350                 if (@in) {
351                         if($arity >= 0 && scalar(@in) != $arity) {
352                                 die "Fatal error: Arity and number of in requirements don't match for ${op}\n";
353                         }
354
355                         $temp .= "\tstatic const arch_register_req_t *in_reqs[] =\n";
356                         $temp .= "\t{\n";
357                         for ($idx = 0; $idx <= $#in; $idx++) {
358                                 my $req = $in[$idx];
359                                 my $reqstruct = generate_requirements($req, $n, "${arch}_${op}", $idx, 1);
360                                 $temp .= "\t\t& ${reqstruct},\n";
361                         }
362                         $temp .= "\t};\n";
363                 } else {
364                         if($arity > 0) {
365                                 die "Fatal error: need in requirements for ${op}\n";
366                         }
367                         $temp .= "\tstatic const arch_register_req_t **in_reqs = NULL;\n";
368                 }
369
370                 if (@out) {
371                         if($out_arity >= 0 && scalar(@out) != $out_arity) {
372                                 die "Fatal error: Out-Arity and number of out requirements don't match for ${op}\n";
373                         }
374
375                         for ($idx = 0; $idx <= $#out; $idx++) {
376                                 my $req = $out[$idx];
377                                 my $reqstruct = generate_requirements($req, $n, "${arch}_${op}", $idx, 0);
378                                 $set_out_reqs .= <<EOF;
379         info->out_infos[${idx}].req = &${reqstruct};
380 EOF
381                         }
382                 } else {
383                         if($out_arity > 0) {
384                                 die "Fatal error: need out requirements for ${op}\n";
385                         }
386                 }
387         } else {
388                 $temp .= "\tstatic const arch_register_req_t **in_reqs = NULL;\n";
389         }
390         my $attr_type = $on->{attr_type};
391         if(exists($n->{"init_attr"})) {
392                 $temp .= "\t${attr_type} *attr;\n";
393         }
394
395         $temp .= "\n";
396
397         if($arity > 0) {
398                 $temp .= "\t/* construct in array */\n";
399                 for (my $i = 0; $i < $arity; $i++) {
400                         my $opname = "op${i}";
401                         if (exists($n->{"ins"})) {
402                                 my @ins = @{ $n->{"ins"} };
403                                 $opname = $ins[$i];
404                         }
405
406                         $temp .= "\tin[${i}] = ${opname};\n";
407                 }
408                 $temp .= "\n";
409         }
410
411         # set flags
412         if (exists($n->{"irn_flags"})) {
413                 $temp .= "\t/* flags */\n";
414                 my %known_irn_flags = (
415                         "none"             => "arch_irn_flags_none",
416                         "dont_spill"       => "arch_irn_flags_dont_spill",
417                         "rematerializable" => "arch_irn_flags_rematerializable",
418                         "modify_flags"     => "arch_irn_flags_modify_flags",
419                         "simple_jump"      => "arch_irn_flags_simple_jump",
420                         "not_scheduled"    => "arch_irn_flags_not_scheduled",
421                 );
422                 if (defined(%custom_irn_flags)) {
423                         %known_irn_flags = (%known_irn_flags, %custom_irn_flags);
424                 }
425                 foreach my $flag (@{$n->{"irn_flags"}}) {
426                         if (not defined($known_irn_flags{$flag})) {
427                                 print STDERR "WARNING: irn_flag '$flag' in opcode $op is unknown\n";
428                         } else {
429                                 $temp .= "\tflags |= " . $known_irn_flags{$flag} . ";\n";
430                         }
431                 }
432                 $temp .= "\n";
433         }
434
435         # lookup init function
436         my $attr_init_code = "(void)in;(void)exec_units;(void)flags;(void)in_reqs;(void)n_res;";
437         if ($attr_type ne "") {
438                 $attr_init_code = $init_attr{$attr_type};
439                 if(!defined($attr_init_code)) {
440                         die "Fatal error: Couldn't find attribute initialisation code for type '${attr_type}'";
441                 }
442         }
443         my $custominit = "";
444         if(defined($custom_init_attr_func)) {
445                 $custominit .= &$custom_init_attr_func($n, $on, "${arch}_${op}");
446         }
447         if(defined($n->{custominit})) {
448                 $custominit .= $n->{custominit};
449         }
450
451         $temp .= <<EOF;
452         /* create node */
453         assert(op != NULL);
454         res = new_ir_node(dbgi, irg, block, op, mode, arity, in);
455
456         /* init node attributes */
457         ${attr_init_code}
458         ${custominit}
459         info = be_get_info(res);
460         (void) info; /* avoid potential warning */
461 ${set_out_reqs}
462
463 EOF
464
465         if (exists($n->{"init_attr"})) {
466                 $temp .= "\tattr = (${attr_type}*)get_irn_generic_attr(res);\n";
467                 $temp .= "\t(void) attr; /* avoid potential warning */\n";
468                 $temp .= "\t".$n->{"init_attr"}."\n";
469         }
470
471         $temp .= <<EOF;
472         /* optimize node */
473         res = optimize_node(res);
474         irn_verify_irg(res, irg);
475
476         return res;
477 EOF
478
479         $obst_constructor .= $temp;
480
481         # close constructor function
482         $obst_constructor .= "}\n\n";
483 }
484
485 push(@obst_enum_op, "typedef enum ${arch}_opcodes {\n");
486 foreach my $op (keys(%nodes)) {
487         my %n        = %{ $nodes{"$op"} };
488         my $known_mode;
489         my $num_outs = 0;
490         my $out_arity;
491         my @out_flags;
492
493         # determine arity
494         $arity = 0;
495         if(exists($n{"arity"})) {
496                 $arity = $n{"arity"};
497         } elsif (exists($n{"reg_req"}) && exists($n{"reg_req"}{"in"})) {
498                 $arity = scalar(@{ $n{"reg_req"}{"in"} });
499         } elsif (exists($n{"ins"})) {
500                 $arity = scalar(@{ $n{"ins"} });
501         }
502         if($arity eq "variable") {
503                 $arity = $ARITY_VARIABLE;
504         } elsif($arity eq "dynamic") {
505                 $arity = $ARITY_DYNAMIC;
506         }
507
508         # determine out arity
509         $out_arity = 0;
510         if(exists($n{"out_arity"})) {
511                 $out_arity = $n{"out_arity"};
512         } elsif (exists($n{"reg_req"}) && exists($n{"reg_req"}{"out"})) {
513                 $out_arity = scalar(@{ $n{"reg_req"}{"out"} });
514         } elsif (exists($n{"outs"})) {
515                 $out_arity = scalar(@{ $n{"outs"} });
516         }
517         if($out_arity eq "variable") {
518                 $out_arity = $ARITY_VARIABLE;
519         } elsif($out_arity eq "dynamic") {
520                 $out_arity = $ARITY_DYNAMIC;
521         }
522
523         $orig_op = $op;
524         $op      = $arch."_".$op;
525         $temp    = "";
526
527         # define proj numbers and in numbers
528         if (exists($n{"outs"})) {
529                 undef my @outs;
530
531                 @outs = @{ $n{"outs"} };
532                 if($out_arity >= 0 && scalar(@outs) != $out_arity) {
533                         die "Fatal error: Op ${op} has different number of outs and out_arity\n";
534                 }
535
536                 $num_outs = $#outs + 1;
537
538                 if ($num_outs > 0) {
539                         $obst_proj .= "\nenum pn_${op} {\n";
540
541                         for (my $idx = 0; $idx <= $#outs; $idx++) {
542                                 # check, if we have additional flags annotated to out
543                                 if ($outs[$idx] =~ /:((S|I)(\|(S|I))*)/) {
544                                         push(@out_flags, $1);
545                                         $outs[$idx] =~ s/:((S|I)(\|(S|I))*)//;
546                                 }
547                                 $obst_proj .= "\tpn_${op}_".$outs[$idx]." = ${idx},\n";
548                         }
549
550                         $obst_proj .= "};\n";
551                 }
552                 # outs have names, it must be a mode_T node
553                 if (!defined($n{mode})) {
554                         $n{mode} = "mode_T";
555                 }
556         }
557         if (exists($n{"ins"})) {
558                 undef my @ins;
559
560                 @ins = @{ $n{"ins"} };
561                 if($arity >= 0 && scalar(@ins) != $arity) {
562                         die "Fatal error: Op ${op} has different number of ins and arity\n";
563                 }
564
565                 if ($#ins >= 0) {
566                         $obst_proj .= "\nenum n_$op {\n";
567                         for (my $idx = 0; $idx <= $#ins; $idx++) {
568                                 $obst_proj .= "\tn_${op}_".$ins[$idx]." = ${idx},\n";
569                         }
570                         $obst_proj .= "};\n";
571                 }
572         }
573
574         # Create opcode
575         push(@obst_opvar, "ir_op *op_$op = NULL;\n");
576         push(@obst_get_opvar, "ir_op *get_op_$op(void)         { return op_$op; }\n");
577         push(@obst_get_opvar, "int    is_$op(const ir_node *n) { return get_$arch\_irn_opcode(n) == iro_$op; }\n\n");
578
579         push(@obst_is_archirn, "is_$op(node)");
580
581         $obst_header .= <<EOF;
582 extern ir_op *op_${op};
583 ir_op *get_op_${op}(void);
584 int is_${op}(const ir_node *n);
585 EOF
586
587         my $attr_type= $n{attr_type};
588         if(!defined($attr_type)) {
589                 $attr_type = $default_attr_type;
590                 $n{attr_type} = $attr_type;
591         }
592
593         # determine hash function
594         my $hash_func;
595         if (exists($n{"hash_func"})) {
596                 $hash_func = $n{"hash_func"};
597         }
598
599         # determine compare function
600         my $cmp_attr_func;
601         if (exists($n{"cmp_attr"})) {
602                 my $cmpcode = $n{"cmp_attr"};
603
604                 push(@obst_cmp_attr, "static int cmp_attr_$op(const ir_node *a, const ir_node *b) {\n");
605                 if($cmpcode =~ m/attr_a/) {
606                         push(@obst_cmp_attr, "\tconst ${attr_type} *attr_a = get_irn_generic_attr_const(a);\n");
607                 } else {
608                         push(@obst_cmp_attr, "\t(void) a;\n");
609                 }
610                 if($cmpcode =~ m/attr_b/) {
611                         push(@obst_cmp_attr, "\tconst ${attr_type} *attr_b = get_irn_generic_attr_const(b);\n");
612                 } else {
613                         push(@obst_cmp_attr, "\t(void) b;\n");
614                 }
615                 push(@obst_cmp_attr, "\t${cmpcode}\n");
616                 push(@obst_cmp_attr, "}\n\n");
617
618                 $cmp_attr_func = "cmp_attr_${op}";
619         } elsif ($attr_type eq "") {
620                 $cmp_attr_func = "NULL";
621         } else {
622                 if(defined($compare_attr{${attr_type}})) {
623                         $cmp_attr_func = $compare_attr{${attr_type}};
624                 } else {
625                         die "Fatal error: No compare function defined for ${attr_type} attributes.";
626                 }
627         }
628
629         my %constructors;
630         if (exists($n{constructors})) {
631                 %constructors = %{ $n{constructors} };
632         } else {
633                 # Create 1 default constructor
634                 my %constructor = ();
635                 foreach my $a ("comment", "ins", "outs", "args", "attr", "units",
636                                 "reg_req", "init_attr", "irn_flags", "mode", "arity",
637                                 "out_arity", "custominit") {
638                         if (defined($n{$a})) {
639                                 $constructor{$a} = $n{$a};
640                         }
641                 }
642                 %constructors = ( "" => \%constructor );
643         }
644
645         foreach my $constr (keys(%constructors)) {
646                 my %cstr = %{ $constructors{$constr} };
647                 # Copy some values from outer node if they don't exists in the constr
648                 foreach my $a ("ins", "outs", "irn_flags", "mode", "args", "attr",
649                                "custominit") {
650                         if (!defined($cstr{$a}) && defined($n{$a})) {
651                                 $cstr{$a} = $n{$a};
652                         }
653                 }
654                 create_constructor($orig_op, $constr, \%cstr, \%n);
655         }
656
657         # set default values for state and flags if not given
658         $n{"state"}    = "floats" if (! exists($n{"state"}));
659         $n{"op_flags"} = ["none"] if (! exists($n{"op_flags"}));
660
661         push(@obst_new_irop, "\n\tmemset(&ops, 0, sizeof(ops));\n");
662         push(@obst_new_irop, "\tops.be_ops        = be_ops;\n");
663         push(@obst_new_irop, "\tops.dump_node     = $arch\_dump_node;\n");
664
665         if (defined($cmp_attr_func)) {
666                 push(@obst_new_irop, "\tops.node_cmp_attr = ${cmp_attr_func};\n");
667         }
668         my $copy_attr_func = $copy_attr{$attr_type};
669         if (!defined($copy_attr_func)) {
670                 $copy_attr_func = $default_copy_attr;
671         }
672         if (defined($copy_attr_func)) {
673                 push(@obst_new_irop, "\tops.copy_attr = ${copy_attr_func};\n");
674         }
675         if (defined($hash_func)) {
676                 push(@obst_new_irop, "\tops.hash = ${hash_func};\n");
677         }
678
679         my %known_flags = map { $_ => 1 } (
680                 "none", "labeled", "commutative", "cfopcode", "unknown_jump", "fragile",
681                 "forking", "highlevel", "constlike", "always_opt", "keep",
682                 "start_block", "uses_memory", "dump_noblock", "dump_noinput",
683                 "machine", "machine_op", "cse_neutral"
684         );
685         my $is_fragile = 0;
686         foreach my $flag (@{$n{"op_flags"}}) {
687                 if (not defined($known_flags{$flag})) {
688                         print STDERR "WARNING: Flag '$flag' in opcode $op is unknown\n";
689                 }
690                 if ($flag eq "fragile") {
691                         $is_fragile = 1;
692                 }
693         }
694         my @mapped = map { "irop_flag_$_" } @{$n{"op_flags"}};
695         my $op_flags = join('|', @mapped);
696
697         my $attr_size = "0";
698         if ($attr_type ne "") {
699                 $attr_size = "sizeof(${attr_type})"
700         }
701
702         $n_opcodes++;
703         $temp  = "\top_$op = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", $op_flags";
704         $temp .= "|irop_flag_machine, ".translate_arity($arity).", 0, ${attr_size}, &ops);\n";
705         push(@obst_new_irop, $temp);
706         if ($is_fragile) {
707                 push(@obst_new_irop, "\tir_op_set_fragile_indices(op_${op}, n_${op}_mem, pn_${op}_X_regular, pn_${op}_X_except);\n");
708         }
709         push(@obst_new_irop, "\tset_op_tag(op_$op, $arch\_op_tag);\n");
710         if(defined($default_op_attr_type)) {
711                 push(@obst_new_irop, "\tattr = &attrs[iro_$op];\n");
712                 if(defined($n{op_attr_init})) {
713                         push(@obst_new_irop, "\t".$n{op_attr_init}."\n");
714                 }
715                 push(@obst_new_irop, "\tset_op_attr(op_$op, attr);\n");
716         }
717
718         push(@obst_enum_op, "\tiro_$op,\n");
719
720         $obst_header .= "\n";
721 }
722 push(@obst_enum_op, "\tiro_$arch\_last_generated,\n");
723 push(@obst_enum_op, "\tiro_$arch\_last = iro_$arch\_last_generated");
724 push(@obst_enum_op, " + $additional_opcodes") if (defined($additional_opcodes));
725 push(@obst_enum_op, "\n} $arch\_opcodes;\n\n");
726
727 # emit the code
728
729 open(OUT, ">$target_c") || die("Fatal error: Could not open $target_c, reason: $!\n");
730
731 print OUT "#include \"gen_$arch\_regalloc_if.h\"\n";
732 print OUT "#include \"irverify_t.h\"\n";
733 print OUT "\n";
734 print OUT @obst_cmp_attr;
735 print OUT "\n";
736 print OUT @obst_opvar;
737 print OUT "\n";
738 print OUT @obst_get_opvar;
739 print OUT "\n";
740
741 print OUT<<EOF;
742
743 static int $arch\_opcode_start = -1;
744 static int $arch\_opcode_end   = -1;
745
746 EOF
747
748 # build the FOURCC arguments from $arch
749
750 my ($a, $b, $c, $d) = ('\0', '\0', '\0', '\0');
751
752 if (length($arch) >= 1) {
753         $a = uc(substr($arch, 0, 1));
754 }
755
756 if (length($arch) >= 2) {
757         $b = uc(substr($arch, 1, 1));
758 }
759
760 if (length($arch) >= 3) {
761         $c = uc(substr($arch, 2, 1));
762 }
763
764 if (length($arch) >= 4) {
765         $d = uc(substr($arch, 3, 1));
766 }
767
768 print OUT<<ENDOFISIRN;
769
770 /** A tag for the $arch opcodes. Note that the address is used as a tag value, NOT the FOURCC code. */
771 #define $arch\_op_tag FOURCC('$a', '$b', '$c', '$d')
772
773 /** Return the opcode number of the first $arch opcode. */
774 int get_$arch\_opcode_first(void) {
775         return $arch\_opcode_start;
776 }
777
778 /** Return the opcode number of the last $arch opcode + 1. */
779 int get_$arch\_opcode_last(void) {
780         return $arch\_opcode_end;
781 }
782
783 /** Return 1 if the given opcode is a $arch machine op, 0 otherwise */
784 int is_$arch\_op(const ir_op *op) {
785         return get_op_tag(op) == $arch\_op_tag;
786 }
787
788 /** Return 1 if the given node is a $arch machine node, 0 otherwise */
789 int is_$arch\_irn(const ir_node *node) {
790         return is_$arch\_op(get_irn_op(node));
791 }
792
793 int get_$arch\_irn_opcode(const ir_node *node) {
794         if (is_$arch\_irn(node))
795                 return get_irn_opcode(node) - $arch\_opcode_start;
796         return -1;
797 }
798
799 ENDOFISIRN
800
801 print OUT <<END;
802 #ifdef BIT
803 #undef BIT
804 #endif
805 #define BIT(x)  (1 << (x))
806
807 END
808
809 print OUT @obst_limit_func;
810 print OUT "\n";
811
812 print OUT @obst_reg_reqs;
813 print OUT "\n";
814
815 print OUT<<ENDOFMAIN;
816 $obst_constructor
817
818 /**
819  * Creates the $arch specific Firm machine operations
820  * needed for the assembler irgs.
821  */
822 void $arch\_create_opcodes(const arch_irn_ops_t *be_ops) {
823         ir_op_ops  ops;
824         int        cur_opcode;
825         static int run_once = 0;
826 ENDOFMAIN
827
828         if (defined($default_op_attr_type)) {
829                 print OUT "\t$default_op_attr_type *attr, *attrs;\n";
830         }
831
832 print OUT<<ENDOFMAIN;
833
834         if (run_once)
835                 return;
836         run_once = 1;
837
838         cur_opcode = get_next_ir_opcodes(iro_$arch\_last);
839
840         $arch\_opcode_start = cur_opcode;
841 ENDOFMAIN
842
843         if (defined($default_op_attr_type)) {
844                 print OUT "\tattrs = XMALLOCNZ(${default_op_attr_type}, iro_${arch}_last);\n";
845         }
846
847 print OUT @obst_new_irop;
848 print OUT "\n";
849 print OUT "\t$arch\_register_additional_opcodes(cur_opcode);\n" if (defined($additional_opcodes));
850 print OUT "\t$arch\_opcode_end = cur_opcode + iro_$arch\_last";
851 print OUT " + $additional_opcodes" if (defined($additional_opcodes));
852 print OUT ";\n";
853 print OUT "}\n";
854
855 close(OUT);
856
857 open(OUT, ">$target_h") || die("Fatal error: Could not open $target_h, reason: $!\n");
858
859 my $creation_time = localtime(time());
860 my $tmp = uc($arch);
861
862 print OUT<<EOF;
863 /**
864  * \@file
865  * \@brief Function prototypes for the new opcode functions.
866  * \@note  DO NOT EDIT THIS FILE, your changes will be lost.
867  *        Edit $specfile instead.
868  *        created by: $0 $specfile $target_dir
869  * \@date  $creation_time
870  */
871 #ifndef FIRM_BE_${tmp}_GEN_${tmp}_NEW_NODES_H
872 #define FIRM_BE_${tmp}_GEN_${tmp}_NEW_NODES_H
873
874 EOF
875
876 print OUT @obst_enum_op;
877 print OUT <<EOF;
878 int is_${arch}_irn(const ir_node *node);
879 int is_${arch}_op(const ir_op *op);
880
881 int get_${arch}_opcode_first(void);
882 int get_${arch}_opcode_last(void);
883 int get_${arch}_irn_opcode(const ir_node *node);
884 ${obst_header}
885 ${obst_proj}
886
887 #endif
888 EOF
889
890 close(OUT);
891
892 ###
893 # Translates numeric arity into string constant.
894 ###
895 sub translate_arity {
896         my $arity = shift;
897
898         if ($arity =~ /^\d+$/) {
899                 if    ($arity == 0) {
900                         return "oparity_zero";
901                 }
902                 elsif ($arity == 1) {
903                         return "oparity_unary";
904                 }
905                 elsif ($arity == 2) {
906                         return "oparity_binary";
907                 }
908                 elsif ($arity == 3) {
909                         return "oparity_trinary";
910                 }
911                 else {
912                         return "oparity_any";
913                 }
914         } elsif ($arity == $ARITY_VARIABLE) {
915                 return "oparity_variable";
916         } elsif ($arity == $ARITY_DYNAMIC) {
917                 return "oparity_dynamic";
918         } else {
919                 die "Fatal error: Unknown arity $arity";
920         }
921 }
922
923 ###
924 # Return the list of pointers for the given execution units.
925 ###
926 sub gen_execunit_list_initializer {
927         my $units   = shift;
928         my $uc_arch = uc($arch);
929         my $ret     = "";
930         my $ret2    = "";
931         my %init;
932
933         foreach my $unit (@{ $units }) {
934                 if ($unit eq "DUMMY") {
935                         push(@{ $init{"DUMMY"} }, "\t\t&be_machine_execution_units_DUMMY[0]");
936                 }
937                 elsif (exists($cpu{"$unit"})) {
938                         # operation can be executed on all units of this type
939                         # -> add them all
940                         my $tp_name = "$arch\_execution_units_$unit";
941                         my $idx     = 0;
942                         foreach (@{ $cpu{"$unit"} }) {
943                                 next if ($idx++ == 0);  # skip first element (it's not a unit)
944                                 my $unit_name = "$uc_arch\_EXECUNIT_TP_$unit\_$_";
945                                 push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]");
946                         }
947                 }
948                 else {
949                         # operation can be executed only a certain unit
950                         # -> find corresponding unit type
951                         my $found = 0;
952 TP_SEARCH:      foreach my $cur_type (keys(%cpu)) {
953                                 foreach my $cur_unit (@{ $cpu{"$cur_type"} }) {
954                                         if ($unit eq $cur_unit) {
955                                                 my $tp_name   = "$arch\_execution_units_$cur_type";
956                                                 my $unit_name = "$uc_arch\_EXECUNIT_TP_$cur_type\_$unit";
957                                                 push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]");
958                                                 $found = 1;
959                                                 last TP_SEARCH;
960                                         }
961                                 }
962                         }
963
964                         if (! $found) {
965                                 print STDERR "Invalid execution unit $unit specified!\n";
966                         }
967                 }
968         }
969
970         # prepare the 2-dim array init
971         foreach my $key (keys(%init)) {
972                 $ret .= "\tstatic const be_execution_unit_t *allowed_units_".$key."[] =\n";
973                 $ret .= "\t{\n";
974                 foreach (@{ $init{"$key"} }) {
975                         $ret .= "$_,\n";
976                 }
977                 $ret .= "\t\tNULL\n";
978                 $ret .= "\t};\n";
979                 $ret2 .= "\t\tallowed_units_$key,\n";
980         }
981         $ret2 .= "\t\tNULL\n";
982
983         $ret .= "\tstatic const be_execution_unit_t **exec_units[] =\n";
984         $ret .= "\t{\n";
985         $ret .= $ret2;
986         $ret .= "\t};\n";
987
988         return $ret;
989 }
990
991 sub mangle_requirements {
992         my $reqs  = shift;
993         my $class = shift;
994         my $flags = shift;
995
996         my @alternatives = split(/ /, $reqs);
997         for(my $idx = 0; $idx < scalar(@alternatives); $idx++) {
998                 $alternatives[$idx] =~ s/!/not_/g;
999         }
1000
1001         @alternatives = sort @alternatives;
1002
1003         my $name = $class."_".join('_', @alternatives);
1004         if (defined($flags)) {
1005                 $flags =~ s/\|/_/g;
1006                 $name .= "_$flags";
1007         }
1008
1009         return $name;
1010 }
1011
1012 ###
1013 # Determines whether $name is a specified register class or not.
1014 # @return 1 if name is register class, 0 otherwise
1015 ###
1016 sub is_reg_class {
1017     my $name = shift;
1018     return 1 if exists($reg_classes{"$name"});
1019     return 0;
1020 }
1021
1022 ###
1023 # Returns the register class for a given register.
1024 # @return class or undef
1025 ###
1026 sub get_reg_class {
1027     my $reg = shift;
1028     $reg = substr($reg, 1) if ($reg =~ /!.*/);
1029     return $reg2class{"$reg"}{"class"} if (exists($reg2class{"$reg"}));
1030     return undef;
1031 }
1032
1033 ###
1034 # Returns the index of a given register within its register class.
1035 # @return index or undef
1036 ###
1037 sub get_reg_index {
1038     my $reg = shift;
1039     return $reg2class{"$reg"}{"index"} if (exists($reg2class{"$reg"}));
1040     return undef;
1041 }
1042
1043 ###
1044 # Remember the register class for each index in the given requirements.
1045 # We need this information for requirements like "in_sX" or "out_dX"
1046 # @return array of classes corresponding to the requirement for each index
1047 ###
1048 sub build_inout_idx_class {
1049         my $n     = shift;
1050         my $op    = shift;
1051         my $is_in = shift;
1052         my @idx_class;
1053
1054         my $inout = ($is_in ? "in" : "out");
1055
1056         if (exists($n->{"reg_req"}{"$inout"})) {
1057                 my @reqs = @{ $n->{"reg_req"}{"$inout"} };
1058
1059                 for (my $idx = 0; $idx <= $#reqs; $idx++) {
1060                         my $class = undef;
1061                         my ($req,) = split(/:/, $reqs[$idx]);
1062
1063                         if ($req eq "none") {
1064                                 $class = "none";
1065                         } elsif (is_reg_class($req)) {
1066                                 $class = $req;
1067                         } else {
1068                                 my @regs = split(/ /, $req);
1069 GET_CLASS:              foreach my $reg (@regs) {
1070                                         if ($reg =~ /!?(in|out)\_r\d+/ || $reg =~ /!in/) {
1071                                                 $class = "UNKNOWN_CLASS";
1072                                         } else {
1073                                                 $class = get_reg_class($reg);
1074                                                 if (!defined $class) {
1075                                                         die("Fatal error: Could not get ".uc($inout)." register class for '$op' pos $idx (reg $reg) ... exiting.\n");
1076                                                 } else {
1077                                                         last GET_CLASS;
1078                                                 } # !defined class
1079                                         } # if (reg =~ ...
1080                                 } # foreach
1081                         } # if
1082
1083                         push(@idx_class, $class);
1084                 } # for
1085         } # if
1086
1087         return @idx_class;
1088 }
1089
1090 ###
1091 # Generates the function for a given $op and a given IN-index
1092 # which returns a subset of possible register from a register class
1093 # @return classname from which the subset is derived or undef and
1094 #         pos which corresponds to in/out reference position or undef
1095 ###
1096 sub build_subset_class_func {
1097         my $neg           = undef;
1098         my $class         = undef;
1099         my $has_limit     = 0;
1100         my $limit_name;
1101         my $same_pos      = 0;
1102         my $different_pos = 0;
1103         my $temp;
1104         my @obst_init;
1105         my @obst_limits;
1106         my @obst_ignore;
1107         my @limit_array;
1108         my $limit_reqs;   #used for name mangling
1109
1110         # build function header
1111         my $node  = shift;
1112         my $op    = shift;
1113         my $idx   = shift;
1114         my $is_in = shift;
1115         my @regs  = split(/ /, shift);
1116         my $flags = shift;
1117
1118         my @idx_class = build_inout_idx_class($node, $op, !$is_in);
1119
1120         # set/unset registers
1121 CHECK_REQS: foreach (@regs) {
1122                 if (!$is_in && /(!)?in_r(\d+)/) {
1123                         my $bit_pos = 1 << ($2 - 1);
1124                         if ($different_pos & $bit_pos) {
1125                                 if ($1) {
1126                                         print STDERR "duplicate !in constraint\n";
1127                                 } else {
1128                                         print STDERR "conflicting !in and in constraints\n";
1129                                 }
1130                                 return (undef, undef, undef, undef);
1131                         }
1132
1133                         if ($same_pos & $bit_pos) {
1134                                 if ($1) {
1135                                         print STDERR "conflicting !in and in constraints\n";
1136                                 } else {
1137                                         print STDERR "duplicate in constraint\n";
1138                                 }
1139                                 return (undef, undef, undef, undef);
1140                         }
1141
1142                         if ($1) {
1143                                 $different_pos |= $bit_pos;
1144                         } else {
1145                                 $same_pos      |= $bit_pos;
1146                         }
1147
1148                         $class = $idx_class[$2 - 1];
1149                         next CHECK_REQS;
1150                 }
1151
1152                 # check for negate
1153                 if (substr($_, 0, 1) eq "!") {
1154                         if (defined($neg) && $neg == 0) {
1155                                 # we have seen a positiv constraint as first one but this one is negative
1156                                 # this doesn't make sense
1157                                 print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n";
1158                                 return (undef, undef, undef, undef);
1159                         }
1160
1161                         if (!defined($neg)) {
1162                                 $has_limit = 1;
1163                         }
1164
1165                         $_   = substr($_, 1); # skip '!'
1166                         $neg = 1;
1167                 } else {
1168                         if (defined($neg) && $neg == 1) {
1169                                 # we have seen a negative constraint as first one but this one is positive
1170                                 # this doesn't make sense
1171                                 print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n";
1172                                 return (undef, undef, undef, undef);
1173                         }
1174
1175                         $has_limit = 1;
1176                         $neg = 0;
1177                 }
1178
1179                 # check if register belongs to one of the given classes
1180                 $temp = get_reg_class($_);
1181                 if (!defined($temp)) {
1182                         print STDERR "Unknown register '$_'!\n";
1183                         return (undef, undef, undef, undef);
1184                 }
1185
1186                 # set class
1187                 if (!defined($class)) {
1188                         $class = $temp;
1189                 } elsif ($class ne $temp) {
1190                         # all registers must belong to the same class
1191                         print STDERR "Registerclass mismatch. '$_' is not member of class '$class'.\n";
1192                         return (undef, undef, undef, undef);
1193                 }
1194
1195                 # calculate position inside the initializer bitfield (only 32 bits per
1196                 # element)
1197                 my $regidx = get_reg_index($_);
1198                 my $arrayp = $regidx / 32;
1199                 push(@{$limit_array[$arrayp]}, $_);
1200                 $limit_reqs .= "$_ ";
1201         }
1202
1203         # don't allow ignore regs in negative constraints
1204         if($neg) {
1205                 my @cur_class = @{ $reg_classes{"$class"} };
1206                 for (my $idx = 0; $idx <= $#cur_class; $idx++) {
1207                         if (defined($cur_class[$idx]{"type"}) && ($cur_class[$idx]{"type"} & 4)) {
1208                                 my $reg    = $cur_class[$idx]{"name"};
1209                                 my $regix  = get_reg_index($reg);
1210                                 my $arrayp = $regix / 32;
1211                                 push(@{$limit_array[$arrayp]}, $reg);
1212                                 $limit_reqs .= "$reg ";
1213                         }
1214                 }
1215         }
1216
1217         if ($has_limit == 1) {
1218                 $limit_name = "${arch}_limit_".mangle_requirements($limit_reqs, $class);
1219
1220                 if(defined($limit_bitsets{$limit_name})) {
1221                         $limit_name = $limit_bitsets{$limit_name};
1222                         return ($class, $limit_name, $same_pos, $different_pos);
1223                 }
1224
1225                 $limit_bitsets{$limit_name} = $limit_name;
1226
1227                 push(@obst_limit_func, "static const unsigned " . $limit_name . "[] = { ");
1228                 my $first = 1;
1229                 my $limitbitsetlen = $regclass2len{$class};
1230                 my $limitarraylen = ($limitbitsetlen+31) / 32;
1231                 for(my $i = 0; $i < $limitarraylen; $i++) {
1232
1233                         my $limitarraypart = $limit_array[$i];
1234                         if($first) {
1235                                 $first = 0;
1236                         } else {
1237                                 push(@obst_limit_func, ", ");
1238                         }
1239                         my $temp;
1240                         if($neg) {
1241                                 $temp = "0xFFFFFFFF";
1242                         }
1243                         foreach my $reg (@{$limitarraypart}) {
1244                                 if($neg) {
1245                                         $temp .= " & ~";
1246                                 } elsif(defined($temp)) {
1247                                         $temp .= " | ";
1248                                 }
1249                                 my $firstreg = uc($reg_classes{$class}[0]->{"name"});
1250                                 my $classuc = uc($class);
1251                                 my $reguc = uc($reg);
1252                                 $temp .= "BIT(REG_${classuc}_${reguc})";
1253                         }
1254                         if(defined($temp)) {
1255                                 push(@obst_limit_func, "${temp}");
1256                         } else {
1257                                 push(@obst_limit_func, "0");
1258                         }
1259                 }
1260                 push(@obst_limit_func, " };\n");
1261         }
1262
1263         return ($class, $limit_name, $same_pos, $different_pos);
1264 }
1265
1266 ###
1267 # Generate register requirements structure
1268 ###
1269 sub generate_requirements {
1270         my ($reqs, $flags) = split(/:/, shift);
1271         my $node  = shift;
1272         my $op    = shift;
1273         my $idx   = shift;
1274         my $is_in = shift;
1275         my $class = "";
1276         my $width = 1;
1277         my $result;
1278
1279         my @req_type_mask;
1280         if (defined($flags)) {
1281                 foreach my $f (split(/|/, $flags)) {
1282                         if ($f eq "I") {
1283                                 push(@req_type_mask, "arch_register_req_type_ignore");
1284                         } elsif ($f eq "S") {
1285                                 push(@req_type_mask, "arch_register_req_type_produces_sp");
1286                         } elsif ($f eq "a") {
1287                                 push(@req_type_mask, "arch_register_req_type_aligned");
1288                         } elsif ($f eq "2" or $f eq "4" or $f eq "8") {
1289                                 $width = int($f);
1290                         }
1291                 }
1292         }
1293
1294         if ($reqs eq "none") {
1295
1296                 $result = <<EOF;
1297 {
1298         arch_register_req_type_none,
1299         NULL,                         /* regclass */
1300         NULL,                         /* limit bitset */
1301         0,                            /* same pos */
1302         0,                            /* different pos */
1303         0                             /* width */
1304 };
1305
1306 EOF
1307         } elsif (is_reg_class($reqs)) {
1308                 push(@req_type_mask, "arch_register_req_type_normal");
1309                 my $reqtype = join(" | ", @req_type_mask);
1310                 $class  = $reqs;
1311                 $result = <<EOF;
1312 {
1313         ${reqtype},
1314         & ${arch}_reg_classes[CLASS_${arch}_${class}],
1315         NULL,        /* limit bitset */
1316         0,           /* same pos */
1317         0,           /* different pos */
1318         $width            /* width */
1319 };
1320
1321 EOF
1322
1323         } else {
1324                 my ($regclass, $limit_bitset, $same_pos, $different_pos)
1325                         = build_subset_class_func($node, $op, $idx, $is_in, $reqs, $flags);
1326
1327                 if (!defined($regclass)) {
1328                         die("Fatal error: Could not build subset for requirements '$reqs' of '$op' pos $idx ... exiting.\n");
1329                 }
1330
1331                 if (defined($limit_bitset) && $limit_bitset ne "NULL") {
1332                         push(@req_type_mask, "arch_register_req_type_limited");
1333                 }
1334                 if ($same_pos != 0) {
1335                         push(@req_type_mask, "arch_register_req_type_should_be_same");
1336                 }
1337                 if ($different_pos != 0) {
1338                         push(@req_type_mask, "arch_register_req_type_must_be_different");
1339                 }
1340                 my $reqtype = join(" | ", @req_type_mask);
1341
1342                 if(!defined($limit_bitset)) {
1343                         $limit_bitset = "NULL";
1344                 }
1345
1346                 $class  = $regclass;
1347                 $result = <<EOF;
1348 {
1349         ${reqtype},
1350         & ${arch}_reg_classes[CLASS_${arch}_${class}],
1351         ${limit_bitset},
1352         ${same_pos},        /* same pos */
1353         ${different_pos},       /* different pos */
1354         $width             /* width */
1355 };
1356
1357 EOF
1358         }
1359
1360         my $name = "${arch}_requirements_".mangle_requirements($reqs, $class, $flags);
1361         if(defined($requirements{$name})) {
1362                 return $name;
1363         }
1364         $requirements{$name} = $name;
1365         push(@obst_reg_reqs, <<EOF);
1366 static const arch_register_req_t ${name} = ${result}
1367 EOF
1368
1369         return $name;
1370 }