some cleanups for middleend node creation in backends
[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, irn_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  irn_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 .= "\tirn_flags_ |= " . $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)irn_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         $n{"dump_func"} = "${arch}_dump_node" if (!exists($n{"dump_func"}));
661         my $dump_func = $n{"dump_func"};
662
663         push(@obst_new_irop, "\n\tmemset(&ops, 0, sizeof(ops));\n");
664         push(@obst_new_irop, "\tops.be_ops        = be_ops;\n");
665         push(@obst_new_irop, "\tops.dump_node     = ${dump_func};\n");
666
667         if (defined($cmp_attr_func)) {
668                 push(@obst_new_irop, "\tops.node_cmp_attr = ${cmp_attr_func};\n");
669         }
670         my $copy_attr_func = $copy_attr{$attr_type};
671         if (!defined($copy_attr_func)) {
672                 $copy_attr_func = $default_copy_attr;
673         }
674         if (defined($copy_attr_func)) {
675                 push(@obst_new_irop, "\tops.copy_attr = ${copy_attr_func};\n");
676         }
677         if (defined($hash_func)) {
678                 push(@obst_new_irop, "\tops.hash = ${hash_func};\n");
679         }
680
681         my %known_flags = map { $_ => 1 } (
682                 "none", "labeled", "commutative", "cfopcode", "unknown_jump", "fragile",
683                 "forking", "highlevel", "constlike", "always_opt", "keep",
684                 "start_block", "uses_memory", "dump_noblock", "dump_noinput",
685                 "machine", "machine_op", "cse_neutral"
686         );
687         my $is_fragile = 0;
688         foreach my $flag (@{$n{"op_flags"}}) {
689                 if (not defined($known_flags{$flag})) {
690                         print STDERR "WARNING: Flag '$flag' in opcode $op is unknown\n";
691                 }
692                 if ($flag eq "fragile") {
693                         $is_fragile = 1;
694                 }
695         }
696         my @mapped = map { "irop_flag_$_" } @{$n{"op_flags"}};
697         my $op_flags = join('|', @mapped);
698
699         my $attr_size = "0";
700         if ($attr_type ne "") {
701                 $attr_size = "sizeof(${attr_type})"
702         }
703
704         $n_opcodes++;
705         $temp  = "\top_$op = new_ir_op(cur_opcode + iro_$op, \"$op\", op_pin_state_".$n{"state"}.", $op_flags";
706         $temp .= "|irop_flag_machine, ".translate_arity($arity).", 0, ${attr_size}, &ops);\n";
707         push(@obst_new_irop, $temp);
708         if ($is_fragile) {
709                 push(@obst_new_irop, "\tir_op_set_fragile_indices(op_${op}, n_${op}_mem, pn_${op}_X_regular, pn_${op}_X_except);\n");
710         }
711         push(@obst_new_irop, "\tset_op_tag(op_$op, $arch\_op_tag);\n");
712         if(defined($default_op_attr_type)) {
713                 push(@obst_new_irop, "\tattr = &attrs[iro_$op];\n");
714                 if(defined($n{op_attr_init})) {
715                         push(@obst_new_irop, "\t".$n{op_attr_init}."\n");
716                 }
717                 push(@obst_new_irop, "\tset_op_attr(op_$op, attr);\n");
718         }
719
720         push(@obst_enum_op, "\tiro_$op,\n");
721
722         $obst_header .= "\n";
723 }
724 push(@obst_enum_op, "\tiro_$arch\_last_generated,\n");
725 push(@obst_enum_op, "\tiro_$arch\_last = iro_$arch\_last_generated");
726 push(@obst_enum_op, " + $additional_opcodes") if (defined($additional_opcodes));
727 push(@obst_enum_op, "\n} $arch\_opcodes;\n\n");
728
729 # emit the code
730
731 open(OUT, ">$target_c") || die("Fatal error: Could not open $target_c, reason: $!\n");
732
733 print OUT "#include \"gen_$arch\_regalloc_if.h\"\n";
734 print OUT "#include \"irverify_t.h\"\n";
735 print OUT "\n";
736 print OUT @obst_cmp_attr;
737 print OUT "\n";
738 print OUT @obst_opvar;
739 print OUT "\n";
740 print OUT @obst_get_opvar;
741 print OUT "\n";
742
743 print OUT<<EOF;
744
745 static int $arch\_opcode_start = -1;
746 static int $arch\_opcode_end   = -1;
747
748 EOF
749
750 # build the FOURCC arguments from $arch
751
752 my ($a, $b, $c, $d) = ('\0', '\0', '\0', '\0');
753
754 if (length($arch) >= 1) {
755         $a = uc(substr($arch, 0, 1));
756 }
757
758 if (length($arch) >= 2) {
759         $b = uc(substr($arch, 1, 1));
760 }
761
762 if (length($arch) >= 3) {
763         $c = uc(substr($arch, 2, 1));
764 }
765
766 if (length($arch) >= 4) {
767         $d = uc(substr($arch, 3, 1));
768 }
769
770 print OUT<<ENDOFISIRN;
771
772 /** A tag for the $arch opcodes. Note that the address is used as a tag value, NOT the FOURCC code. */
773 #define $arch\_op_tag FOURCC('$a', '$b', '$c', '$d')
774
775 /** Return the opcode number of the first $arch opcode. */
776 int get_$arch\_opcode_first(void) {
777         return $arch\_opcode_start;
778 }
779
780 /** Return the opcode number of the last $arch opcode + 1. */
781 int get_$arch\_opcode_last(void) {
782         return $arch\_opcode_end;
783 }
784
785 /** Return 1 if the given opcode is a $arch machine op, 0 otherwise */
786 int is_$arch\_op(const ir_op *op) {
787         return get_op_tag(op) == $arch\_op_tag;
788 }
789
790 /** Return 1 if the given node is a $arch machine node, 0 otherwise */
791 int is_$arch\_irn(const ir_node *node) {
792         return is_$arch\_op(get_irn_op(node));
793 }
794
795 int get_$arch\_irn_opcode(const ir_node *node) {
796         if (is_$arch\_irn(node))
797                 return get_irn_opcode(node) - $arch\_opcode_start;
798         return -1;
799 }
800
801 ENDOFISIRN
802
803 print OUT <<END;
804 #ifdef BIT
805 #undef BIT
806 #endif
807 #define BIT(x)  (1 << (x))
808
809 END
810
811 print OUT @obst_limit_func;
812 print OUT "\n";
813
814 print OUT @obst_reg_reqs;
815 print OUT "\n";
816
817 print OUT<<ENDOFMAIN;
818 $obst_constructor
819
820 /**
821  * Creates the $arch specific Firm machine operations
822  * needed for the assembler irgs.
823  */
824 void $arch\_create_opcodes(const arch_irn_ops_t *be_ops) {
825         ir_op_ops  ops;
826         int        cur_opcode;
827         static int run_once = 0;
828 ENDOFMAIN
829
830         if (defined($default_op_attr_type)) {
831                 print OUT "\t$default_op_attr_type *attr, *attrs;\n";
832         }
833
834 print OUT<<ENDOFMAIN;
835
836         if (run_once)
837                 return;
838         run_once = 1;
839
840         cur_opcode = get_next_ir_opcodes(iro_$arch\_last);
841
842         $arch\_opcode_start = cur_opcode;
843 ENDOFMAIN
844
845         if (defined($default_op_attr_type)) {
846                 print OUT "\tattrs = XMALLOCNZ(${default_op_attr_type}, iro_${arch}_last);\n";
847         }
848
849 print OUT @obst_new_irop;
850 print OUT "\n";
851 print OUT "\t$arch\_register_additional_opcodes(cur_opcode);\n" if (defined($additional_opcodes));
852 print OUT "\t$arch\_opcode_end = cur_opcode + iro_$arch\_last";
853 print OUT " + $additional_opcodes" if (defined($additional_opcodes));
854 print OUT ";\n";
855 print OUT "}\n";
856
857 close(OUT);
858
859 open(OUT, ">$target_h") || die("Fatal error: Could not open $target_h, reason: $!\n");
860
861 my $creation_time = localtime(time());
862 my $tmp = uc($arch);
863
864 print OUT<<EOF;
865 /**
866  * \@file
867  * \@brief Function prototypes for the new opcode functions.
868  * \@note  DO NOT EDIT THIS FILE, your changes will be lost.
869  *        Edit $specfile instead.
870  *        created by: $0 $specfile $target_dir
871  * \@date  $creation_time
872  */
873 #ifndef FIRM_BE_${tmp}_GEN_${tmp}_NEW_NODES_H
874 #define FIRM_BE_${tmp}_GEN_${tmp}_NEW_NODES_H
875
876 EOF
877
878 print OUT @obst_enum_op;
879 print OUT <<EOF;
880 int is_${arch}_irn(const ir_node *node);
881 int is_${arch}_op(const ir_op *op);
882
883 int get_${arch}_opcode_first(void);
884 int get_${arch}_opcode_last(void);
885 int get_${arch}_irn_opcode(const ir_node *node);
886 ${obst_header}
887 ${obst_proj}
888
889 #endif
890 EOF
891
892 close(OUT);
893
894 ###
895 # Translates numeric arity into string constant.
896 ###
897 sub translate_arity {
898         my $arity = shift;
899
900         if ($arity =~ /^\d+$/) {
901                 if    ($arity == 0) {
902                         return "oparity_zero";
903                 }
904                 elsif ($arity == 1) {
905                         return "oparity_unary";
906                 }
907                 elsif ($arity == 2) {
908                         return "oparity_binary";
909                 }
910                 elsif ($arity == 3) {
911                         return "oparity_trinary";
912                 }
913                 else {
914                         return "oparity_any";
915                 }
916         } elsif ($arity == $ARITY_VARIABLE) {
917                 return "oparity_variable";
918         } elsif ($arity == $ARITY_DYNAMIC) {
919                 return "oparity_dynamic";
920         } else {
921                 die "Fatal error: Unknown arity $arity";
922         }
923 }
924
925 ###
926 # Return the list of pointers for the given execution units.
927 ###
928 sub gen_execunit_list_initializer {
929         my $units   = shift;
930         my $uc_arch = uc($arch);
931         my $ret     = "";
932         my $ret2    = "";
933         my %init;
934
935         foreach my $unit (@{ $units }) {
936                 if ($unit eq "DUMMY") {
937                         push(@{ $init{"DUMMY"} }, "\t\t&be_machine_execution_units_DUMMY[0]");
938                 }
939                 elsif (exists($cpu{"$unit"})) {
940                         # operation can be executed on all units of this type
941                         # -> add them all
942                         my $tp_name = "$arch\_execution_units_$unit";
943                         my $idx     = 0;
944                         foreach (@{ $cpu{"$unit"} }) {
945                                 next if ($idx++ == 0);  # skip first element (it's not a unit)
946                                 my $unit_name = "$uc_arch\_EXECUNIT_TP_$unit\_$_";
947                                 push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]");
948                         }
949                 }
950                 else {
951                         # operation can be executed only a certain unit
952                         # -> find corresponding unit type
953                         my $found = 0;
954 TP_SEARCH:      foreach my $cur_type (keys(%cpu)) {
955                                 foreach my $cur_unit (@{ $cpu{"$cur_type"} }) {
956                                         if ($unit eq $cur_unit) {
957                                                 my $tp_name   = "$arch\_execution_units_$cur_type";
958                                                 my $unit_name = "$uc_arch\_EXECUNIT_TP_$cur_type\_$unit";
959                                                 push(@{ $init{"$unit"} }, "\t\t&".$tp_name."[".$unit_name."]");
960                                                 $found = 1;
961                                                 last TP_SEARCH;
962                                         }
963                                 }
964                         }
965
966                         if (! $found) {
967                                 print STDERR "Invalid execution unit $unit specified!\n";
968                         }
969                 }
970         }
971
972         # prepare the 2-dim array init
973         foreach my $key (keys(%init)) {
974                 $ret .= "\tstatic const be_execution_unit_t *allowed_units_".$key."[] =\n";
975                 $ret .= "\t{\n";
976                 foreach (@{ $init{"$key"} }) {
977                         $ret .= "$_,\n";
978                 }
979                 $ret .= "\t\tNULL\n";
980                 $ret .= "\t};\n";
981                 $ret2 .= "\t\tallowed_units_$key,\n";
982         }
983         $ret2 .= "\t\tNULL\n";
984
985         $ret .= "\tstatic const be_execution_unit_t **exec_units[] =\n";
986         $ret .= "\t{\n";
987         $ret .= $ret2;
988         $ret .= "\t};\n";
989
990         return $ret;
991 }
992
993 sub mangle_requirements {
994         my $reqs  = shift;
995         my $class = shift;
996         my $flags = shift;
997
998         my @alternatives = split(/ /, $reqs);
999         for(my $idx = 0; $idx < scalar(@alternatives); $idx++) {
1000                 $alternatives[$idx] =~ s/!/not_/g;
1001         }
1002
1003         @alternatives = sort @alternatives;
1004
1005         my $name = $class."_".join('_', @alternatives);
1006         if (defined($flags)) {
1007                 $flags =~ s/\|/_/g;
1008                 $name .= "_$flags";
1009         }
1010
1011         return $name;
1012 }
1013
1014 ###
1015 # Determines whether $name is a specified register class or not.
1016 # @return 1 if name is register class, 0 otherwise
1017 ###
1018 sub is_reg_class {
1019     my $name = shift;
1020     return 1 if exists($reg_classes{"$name"});
1021     return 0;
1022 }
1023
1024 ###
1025 # Returns the register class for a given register.
1026 # @return class or undef
1027 ###
1028 sub get_reg_class {
1029     my $reg = shift;
1030     $reg = substr($reg, 1) if ($reg =~ /!.*/);
1031     return $reg2class{"$reg"}{"class"} if (exists($reg2class{"$reg"}));
1032     return undef;
1033 }
1034
1035 ###
1036 # Returns the index of a given register within its register class.
1037 # @return index or undef
1038 ###
1039 sub get_reg_index {
1040     my $reg = shift;
1041     return $reg2class{"$reg"}{"index"} if (exists($reg2class{"$reg"}));
1042     return undef;
1043 }
1044
1045 ###
1046 # Remember the register class for each index in the given requirements.
1047 # We need this information for requirements like "in_sX" or "out_dX"
1048 # @return array of classes corresponding to the requirement for each index
1049 ###
1050 sub build_inout_idx_class {
1051         my $n     = shift;
1052         my $op    = shift;
1053         my $is_in = shift;
1054         my @idx_class;
1055
1056         my $inout = ($is_in ? "in" : "out");
1057
1058         if (exists($n->{"reg_req"}{"$inout"})) {
1059                 my @reqs = @{ $n->{"reg_req"}{"$inout"} };
1060
1061                 for (my $idx = 0; $idx <= $#reqs; $idx++) {
1062                         my $class = undef;
1063                         my ($req,) = split(/:/, $reqs[$idx]);
1064
1065                         if ($req eq "none") {
1066                                 $class = "none";
1067                         } elsif (is_reg_class($req)) {
1068                                 $class = $req;
1069                         } else {
1070                                 my @regs = split(/ /, $req);
1071 GET_CLASS:              foreach my $reg (@regs) {
1072                                         if ($reg =~ /!?(in|out)\_r\d+/ || $reg =~ /!in/) {
1073                                                 $class = "UNKNOWN_CLASS";
1074                                         } else {
1075                                                 $class = get_reg_class($reg);
1076                                                 if (!defined $class) {
1077                                                         die("Fatal error: Could not get ".uc($inout)." register class for '$op' pos $idx (reg $reg) ... exiting.\n");
1078                                                 } else {
1079                                                         last GET_CLASS;
1080                                                 } # !defined class
1081                                         } # if (reg =~ ...
1082                                 } # foreach
1083                         } # if
1084
1085                         push(@idx_class, $class);
1086                 } # for
1087         } # if
1088
1089         return @idx_class;
1090 }
1091
1092 ###
1093 # Generates the function for a given $op and a given IN-index
1094 # which returns a subset of possible register from a register class
1095 # @return classname from which the subset is derived or undef and
1096 #         pos which corresponds to in/out reference position or undef
1097 ###
1098 sub build_subset_class_func {
1099         my $neg           = undef;
1100         my $class         = undef;
1101         my $has_limit     = 0;
1102         my $limit_name;
1103         my $same_pos      = 0;
1104         my $different_pos = 0;
1105         my $temp;
1106         my @obst_init;
1107         my @obst_limits;
1108         my @obst_ignore;
1109         my @limit_array;
1110         my $limit_reqs;   #used for name mangling
1111
1112         # build function header
1113         my $node  = shift;
1114         my $op    = shift;
1115         my $idx   = shift;
1116         my $is_in = shift;
1117         my @regs  = split(/ /, shift);
1118         my $flags = shift;
1119
1120         my @idx_class = build_inout_idx_class($node, $op, !$is_in);
1121
1122         # set/unset registers
1123 CHECK_REQS: foreach (@regs) {
1124                 if (!$is_in && /(!)?in_r(\d+)/) {
1125                         my $bit_pos = 1 << ($2 - 1);
1126                         if ($different_pos & $bit_pos) {
1127                                 if ($1) {
1128                                         print STDERR "duplicate !in constraint\n";
1129                                 } else {
1130                                         print STDERR "conflicting !in and in constraints\n";
1131                                 }
1132                                 return (undef, undef, undef, undef);
1133                         }
1134
1135                         if ($same_pos & $bit_pos) {
1136                                 if ($1) {
1137                                         print STDERR "conflicting !in and in constraints\n";
1138                                 } else {
1139                                         print STDERR "duplicate in constraint\n";
1140                                 }
1141                                 return (undef, undef, undef, undef);
1142                         }
1143
1144                         if ($1) {
1145                                 $different_pos |= $bit_pos;
1146                         } else {
1147                                 $same_pos      |= $bit_pos;
1148                         }
1149
1150                         $class = $idx_class[$2 - 1];
1151                         next CHECK_REQS;
1152                 }
1153
1154                 # check for negate
1155                 if (substr($_, 0, 1) eq "!") {
1156                         if (defined($neg) && $neg == 0) {
1157                                 # we have seen a positiv constraint as first one but this one is negative
1158                                 # this doesn't make sense
1159                                 print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n";
1160                                 return (undef, undef, undef, undef);
1161                         }
1162
1163                         if (!defined($neg)) {
1164                                 $has_limit = 1;
1165                         }
1166
1167                         $_   = substr($_, 1); # skip '!'
1168                         $neg = 1;
1169                 } else {
1170                         if (defined($neg) && $neg == 1) {
1171                                 # we have seen a negative constraint as first one but this one is positive
1172                                 # this doesn't make sense
1173                                 print STDERR "Mixed positive and negative constraints for the same slot are not allowed.\n";
1174                                 return (undef, undef, undef, undef);
1175                         }
1176
1177                         $has_limit = 1;
1178                         $neg = 0;
1179                 }
1180
1181                 # check if register belongs to one of the given classes
1182                 $temp = get_reg_class($_);
1183                 if (!defined($temp)) {
1184                         print STDERR "Unknown register '$_'!\n";
1185                         return (undef, undef, undef, undef);
1186                 }
1187
1188                 # set class
1189                 if (!defined($class)) {
1190                         $class = $temp;
1191                 } elsif ($class ne $temp) {
1192                         # all registers must belong to the same class
1193                         print STDERR "Registerclass mismatch. '$_' is not member of class '$class'.\n";
1194                         return (undef, undef, undef, undef);
1195                 }
1196
1197                 # calculate position inside the initializer bitfield (only 32 bits per
1198                 # element)
1199                 my $regidx = get_reg_index($_);
1200                 my $arrayp = $regidx / 32;
1201                 push(@{$limit_array[$arrayp]}, $_);
1202                 $limit_reqs .= "$_ ";
1203         }
1204
1205         # don't allow ignore regs in negative constraints
1206         if($neg) {
1207                 my @cur_class = @{ $reg_classes{"$class"} };
1208                 for (my $idx = 0; $idx <= $#cur_class; $idx++) {
1209                         if (defined($cur_class[$idx]{"type"}) && ($cur_class[$idx]{"type"} & 4)) {
1210                                 my $reg    = $cur_class[$idx]{"name"};
1211                                 my $regix  = get_reg_index($reg);
1212                                 my $arrayp = $regix / 32;
1213                                 push(@{$limit_array[$arrayp]}, $reg);
1214                                 $limit_reqs .= "$reg ";
1215                         }
1216                 }
1217         }
1218
1219         if ($has_limit == 1) {
1220                 $limit_name = "${arch}_limit_".mangle_requirements($limit_reqs, $class);
1221
1222                 if(defined($limit_bitsets{$limit_name})) {
1223                         $limit_name = $limit_bitsets{$limit_name};
1224                         return ($class, $limit_name, $same_pos, $different_pos);
1225                 }
1226
1227                 $limit_bitsets{$limit_name} = $limit_name;
1228
1229                 push(@obst_limit_func, "static const unsigned " . $limit_name . "[] = { ");
1230                 my $first = 1;
1231                 my $limitbitsetlen = $regclass2len{$class};
1232                 my $limitarraylen = ($limitbitsetlen+31) / 32;
1233                 for(my $i = 0; $i < $limitarraylen; $i++) {
1234
1235                         my $limitarraypart = $limit_array[$i];
1236                         if($first) {
1237                                 $first = 0;
1238                         } else {
1239                                 push(@obst_limit_func, ", ");
1240                         }
1241                         my $temp;
1242                         if($neg) {
1243                                 $temp = "0xFFFFFFFF";
1244                         }
1245                         foreach my $reg (@{$limitarraypart}) {
1246                                 if($neg) {
1247                                         $temp .= " & ~";
1248                                 } elsif(defined($temp)) {
1249                                         $temp .= " | ";
1250                                 }
1251                                 my $firstreg = uc($reg_classes{$class}[0]->{"name"});
1252                                 my $classuc = uc($class);
1253                                 my $reguc = uc($reg);
1254                                 $temp .= "BIT(REG_${classuc}_${reguc})";
1255                         }
1256                         if(defined($temp)) {
1257                                 push(@obst_limit_func, "${temp}");
1258                         } else {
1259                                 push(@obst_limit_func, "0");
1260                         }
1261                 }
1262                 push(@obst_limit_func, " };\n");
1263         }
1264
1265         return ($class, $limit_name, $same_pos, $different_pos);
1266 }
1267
1268 ###
1269 # Generate register requirements structure
1270 ###
1271 sub generate_requirements {
1272         my ($reqs, $flags) = split(/:/, shift);
1273         my $node  = shift;
1274         my $op    = shift;
1275         my $idx   = shift;
1276         my $is_in = shift;
1277         my $class = "";
1278         my $width = 1;
1279         my $result;
1280
1281         my @req_type_mask;
1282         if (defined($flags)) {
1283                 foreach my $f (split(/|/, $flags)) {
1284                         if ($f eq "I") {
1285                                 push(@req_type_mask, "arch_register_req_type_ignore");
1286                         } elsif ($f eq "S") {
1287                                 push(@req_type_mask, "arch_register_req_type_produces_sp");
1288                         } elsif ($f eq "a") {
1289                                 push(@req_type_mask, "arch_register_req_type_aligned");
1290                         } elsif ($f eq "2" or $f eq "4" or $f eq "8") {
1291                                 $width = int($f);
1292                         }
1293                 }
1294         }
1295
1296         if ($reqs eq "none") {
1297
1298                 $result = <<EOF;
1299 {
1300         arch_register_req_type_none,
1301         NULL,                         /* regclass */
1302         NULL,                         /* limit bitset */
1303         0,                            /* same pos */
1304         0,                            /* different pos */
1305         0                             /* width */
1306 };
1307
1308 EOF
1309         } elsif (is_reg_class($reqs)) {
1310                 push(@req_type_mask, "arch_register_req_type_normal");
1311                 my $reqtype = join(" | ", @req_type_mask);
1312                 $class  = $reqs;
1313                 $result = <<EOF;
1314 {
1315         ${reqtype},
1316         & ${arch}_reg_classes[CLASS_${arch}_${class}],
1317         NULL,        /* limit bitset */
1318         0,           /* same pos */
1319         0,           /* different pos */
1320         $width            /* width */
1321 };
1322
1323 EOF
1324
1325         } else {
1326                 my ($regclass, $limit_bitset, $same_pos, $different_pos)
1327                         = build_subset_class_func($node, $op, $idx, $is_in, $reqs, $flags);
1328
1329                 if (!defined($regclass)) {
1330                         die("Fatal error: Could not build subset for requirements '$reqs' of '$op' pos $idx ... exiting.\n");
1331                 }
1332
1333                 if (defined($limit_bitset) && $limit_bitset ne "NULL") {
1334                         push(@req_type_mask, "arch_register_req_type_limited");
1335                 }
1336                 if ($same_pos != 0) {
1337                         push(@req_type_mask, "arch_register_req_type_should_be_same");
1338                 }
1339                 if ($different_pos != 0) {
1340                         push(@req_type_mask, "arch_register_req_type_must_be_different");
1341                 }
1342                 my $reqtype = join(" | ", @req_type_mask);
1343
1344                 if(!defined($limit_bitset)) {
1345                         $limit_bitset = "NULL";
1346                 }
1347
1348                 $class  = $regclass;
1349                 $result = <<EOF;
1350 {
1351         ${reqtype},
1352         & ${arch}_reg_classes[CLASS_${arch}_${class}],
1353         ${limit_bitset},
1354         ${same_pos},        /* same pos */
1355         ${different_pos},       /* different pos */
1356         $width             /* width */
1357 };
1358
1359 EOF
1360         }
1361
1362         my $name = "${arch}_requirements_".mangle_requirements($reqs, $class, $flags);
1363         if(defined($requirements{$name})) {
1364                 return $name;
1365         }
1366         $requirements{$name} = $name;
1367         push(@obst_reg_reqs, <<EOF);
1368 static const arch_register_req_t ${name} = ${result}
1369 EOF
1370
1371         return $name;
1372 }