3 # Copyright (C) 2013-2018 Free Software Foundation, Inc.
5 # This file is part of GDB.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 # make-target-delegates target.h > target-delegates.c
24 # The line we search for in target.h that marks where we should start
25 # looking for methods.
26 $TRIGGER = qr
,^struct target_ops
$,;
27 # The end of the methods part.
31 $SYMBOL = qr
,[a
-zA
-Z_
][a
-zA
-Z0
-9_
]*,;
32 # Match the name part of a method in struct target_ops.
33 $NAME_PART = qr
,\
(\
*(?
<name
>${SYMBOL
}+)\
)\s
,;
34 # Match the arguments to a method.
35 $ARGS_PART = qr
,(?
<args
>\
(.*\
)),;
36 # We strip the indentation so here we only need the caret.
39 # Match the return type when it is "ordinary".
40 $SIMPLE_RETURN_PART = qr
,[^\
(]+,;
41 # Match the return type when it is a VEC.
42 $VEC_RETURN_PART = qr
,VEC\s
*\
([^\
)]+\
)[^\
(]*,;
44 # Match the TARGET_DEFAULT_* attribute for a method.
45 $TARGET_DEFAULT_PART = qr
,TARGET_DEFAULT_
(?
<style
>[A
-Z_
]+)\s
*\
((?
<default_arg
>.*)\
),;
47 # Match the arguments and trailing attribute of a method definition.
48 # Note we don't match the trailing ";".
49 $METHOD_TRAILER = qr
,\s
*${TARGET_DEFAULT_PART
}$,;
51 # Match an entire method definition.
52 $METHOD = ($INTRO_PART . "(?<return_type>" . $SIMPLE_RETURN_PART
53 . "|" . $VEC_RETURN_PART . ")"
54 . $NAME_PART . $ARGS_PART
57 # Match TARGET_DEBUG_PRINTER in an argument type.
58 # This must match the whole "sub-expression" including the parens.
59 # Reference $1 must refer to the function argument.
60 $TARGET_DEBUG_PRINTER = qr
,\s
*TARGET_DEBUG_PRINTER\s
*\
(([^)]*)\
)\s
*,;
71 # Read from the input files until we find the trigger line.
76 return if m/$TRIGGER/;
79 die "could not find trigger line\n";
82 # Scan target.h and return a list of possible target_ops method entries.
84 my $all_the_text = '';
89 # Skip the open brace.
93 # Just in case somebody ever uses C99.
100 # Now strip out the C comments.
101 $all_the_text =~ s
,/\*(.*?)\*/,,g
;
103 return split (/;/, $all_the_text);
106 # Parse arguments into a list.
107 sub parse_argtypes
($) {
110 $typestr =~ s/^\((.*)\)$/\1/;
112 my (@typelist) = split (/,\s*/, $typestr);
113 my (@result, $iter, $onetype);
115 foreach $iter (@typelist) {
116 if ($iter =~ m/^(enum\s+${SYMBOL}\s*)(${SYMBOL})?$/) {
118 } elsif ($iter =~ m/^(.*(enum\s+)?${SYMBOL}.*(\s|\*|&))${SYMBOL}+$/) {
120 } elsif ($iter eq 'void') {
125 push @result, trim
($onetype);
133 $name =~ s/to_/delegate_/;
137 # Write function header given name, return type, and argtypes.
138 # Returns a list of actual argument names.
139 sub write_function_header
($$@
) {
140 my ($name, $return_type, @argtypes) = @_;
142 print "static " . $return_type . "\n";
149 foreach $iter (@argtypes) {
152 $val =~ s/$TARGET_DEBUG_PRINTER//;
154 if ($iter !~ m
,(\
*|&)$,) {
160 # Just a random nicety.
167 push @argdecls, $val;
168 push @actuals, $vname;
172 print join (', ', @argdecls) . ")\n";
178 # Write out a delegation function.
179 sub write_delegator
($$@
) {
180 my ($name, $return_type, @argtypes) = @_;
182 my (@names) = write_function_header
(dname
($name), $return_type,
185 print " $names[0] = $names[0]->beneath;\n";
187 if ($return_type ne 'void') {
190 print "$names[0]->" . $name . " (";
191 print join (', ', @names);
198 $name =~ s/to_/tdefault_/;
202 # Write out a default function.
203 sub write_tdefault
($$$$@
) {
204 my ($content, $style, $name, $return_type, @argtypes) = @_;
206 if ($style eq 'FUNC') {
210 write_function_header
(tdname
($name), $return_type, @argtypes);
212 if ($style eq 'RETURN') {
213 print " return $content;\n";
214 } elsif ($style eq 'NORETURN') {
215 print " $content;\n";
216 } elsif ($style eq 'IGNORE') {
219 die "unrecognized style: $style\n";
224 return tdname
($name);
231 if ($typename =~ m/$TARGET_DEBUG_PRINTER/) {
234 ($result = $typename) =~ s/\s+$//;
235 $result =~ s/[ ()<>:]/_/g;
236 $result =~ s/[*]/p/g;
239 # Identifers with double underscores are reserved to the C++
243 # Avoid ending the function name with underscore, for
244 # cosmetics. Trailing underscores appear after munging types
245 # with template parameters, like e.g. "foo<int>".
248 $result = 'target_debug_print_' . $result;
254 # Write out a debug method.
255 sub write_debugmethod
($$$$@
) {
256 my ($content, $style, $name, $return_type, @argtypes) = @_;
258 my ($debugname) = $name;
259 $debugname =~ s/to_/debug_/;
260 my ($targetname) = $name;
261 $targetname =~ s/to_/target_/;
263 my (@names) = write_function_header
($debugname, $return_type, @argtypes);
265 if ($return_type ne 'void') {
266 print " $return_type result;\n";
269 print " fprintf_unfiltered (gdb_stdlog, \"-> %s->$name (...)\\n\", debug_target.to_shortname);\n";
271 # Delegate to the beneath target.
273 if ($return_type ne 'void') {
276 print "debug_target." . $name . " (";
278 @names2[0] = "&debug_target";
279 print join (', ', @names2);
282 # Now print the arguments.
283 print " fprintf_unfiltered (gdb_stdlog, \"<- %s->$name (\", debug_target.to_shortname);\n";
284 for my $i (0 .. $#argtypes) {
285 print " fputs_unfiltered (\", \", gdb_stdlog);\n" if $i > 0;
286 my $printer = munge_type
($argtypes[$i]);
287 print " $printer ($names2[$i]);\n";
289 if ($return_type ne 'void') {
290 print " fputs_unfiltered (\") = \", gdb_stdlog);\n";
291 my $printer = munge_type
($return_type);
292 print " $printer (result);\n";
293 print " fputs_unfiltered (\"\\n\", gdb_stdlog);\n";
295 print " fputs_unfiltered (\")\\n\", gdb_stdlog);\n";
298 if ($return_type ne 'void') {
299 print " return result;\n";
307 print "/* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */\n";
308 print "/* vi:set ro: */\n\n";
309 print "/* To regenerate this file, run:*/\n";
310 print "/* make-target-delegates target.h > target-delegates.c */\n";
312 @lines = scan_target_h
();
315 %tdefault_names = ();
318 foreach $current_line (@lines) {
319 next unless $current_line =~ m/$METHOD/;
322 $current_line = $+{args
};
323 $return_type = trim
($+{return_type
});
324 $current_args = $+{args
};
325 $tdefault = $+{default_arg
};
328 @argtypes = parse_argtypes
($current_args);
330 # The first argument must be "this" to be delegatable.
331 if ($argtypes[0] =~ /\s*struct\s+target_ops\s*\*\s*/) {
332 write_delegator
($name, $return_type, @argtypes);
334 push @delegators, $name;
336 $tdefault_names{$name} = write_tdefault
($tdefault, $style,
340 $debug_names{$name} = write_debugmethod
($tdefault, $style,
346 # Now the delegation code.
347 print "static void\ninstall_delegators (struct target_ops *ops)\n{\n";
349 for $iter (@delegators) {
350 print " if (ops->" . $iter . " == NULL)\n";
351 print " ops->" . $iter . " = " . dname
($iter) . ";\n";
355 # Now the default method code.
356 print "static void\ninstall_dummy_methods (struct target_ops *ops)\n{\n";
358 for $iter (@delegators) {
359 print " ops->" . $iter . " = " . $tdefault_names{$iter} . ";\n";
363 # The debug method code.
364 print "static void\ninit_debug_target (struct target_ops *ops)\n{\n";
365 for $iter (@delegators) {
366 print " ops->" . $iter . " = " . $debug_names{$iter} . ";\n";
This page took 0.041729 seconds and 4 git commands to generate.