[gdb/build] Support reference return type in make-target-delegates.py
[binutils-gdb.git] / gdb / make-target-delegates.py
blob5e766e3573188b8a2f04e34443b68d16c935548e
1 #!/usr/bin/env python3
3 # Copyright (C) 2013-2023 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/>.
20 # Usage:
21 # make-target-delegates.py
23 import re
24 from typing import Dict, List, TextIO
26 import gdbcopyright
28 # The line we search for in target.h that marks where we should start
29 # looking for methods.
30 TRIGGER = re.compile(r"^struct target_ops$")
31 # The end of the methods part.
32 ENDER = re.compile(r"^\s*};$")
34 # Match a C symbol.
35 SYMBOL = "[a-zA-Z_][a-zA-Z0-9_]*"
36 # Match the name part of a method in struct target_ops.
37 NAME_PART = r"(?P<name>" + SYMBOL + r")\s"
38 # Match the arguments to a method.
39 ARGS_PART = r"(?P<args>\(.*\))"
40 # We strip the indentation so here we only need the caret.
41 INTRO_PART = r"^"
43 POINTER_PART = r"\s*(\*|\&)?\s*"
45 # Match a C++ symbol, including scope operators and template
46 # parameters. E.g., 'std::vector<something>'.
47 CP_SYMBOL = r"[a-zA-Z_][a-zA-Z0-9_<>:]*"
48 # Match the return type when it is "ordinary".
49 SIMPLE_RETURN_PART = r"((struct|class|enum|union)\s+)?" + CP_SYMBOL
51 # Match a return type.
52 RETURN_PART = r"((const|volatile)\s+)?(" + SIMPLE_RETURN_PART + ")" + POINTER_PART
54 # Match "virtual".
55 VIRTUAL_PART = r"virtual\s"
57 # Match the TARGET_DEFAULT_* attribute for a method.
58 TARGET_DEFAULT_PART = r"TARGET_DEFAULT_(?P<style>[A-Z_]+)\s*\((?P<default_arg>.*)\)"
60 # Match the arguments and trailing attribute of a method definition.
61 # Note we don't match the trailing ";".
62 METHOD_TRAILER = r"\s*" + TARGET_DEFAULT_PART + "$"
64 # Match an entire method definition.
65 METHOD = re.compile(
66 INTRO_PART
67 + VIRTUAL_PART
68 + "(?P<return_type>"
69 + RETURN_PART
70 + ")"
71 + NAME_PART
72 + ARGS_PART
73 + METHOD_TRAILER
76 # Regular expression used to dissect argument types.
77 ARGTYPES = re.compile(
78 "^("
79 + r"(?P<E>enum\s+"
80 + SYMBOL
81 + r"\s*)("
82 + SYMBOL
83 + ")?"
84 + r"|(?P<T>.*(enum\s+)?"
85 + SYMBOL
86 + r".*(\s|\*|&))"
87 + SYMBOL
88 + ")$"
91 # Match TARGET_DEBUG_PRINTER in an argument type.
92 # This must match the whole "sub-expression" including the parens.
93 TARGET_DEBUG_PRINTER = r"\s*TARGET_DEBUG_PRINTER\s*\((?P<arg>[^)]*)\)\s*"
96 class Entry:
97 def __init__(
98 self, argtypes: List[str], return_type: str, style: str, default_arg: str
100 self.argtypes = argtypes
101 self.return_type = return_type
102 self.style = style
103 self.default_arg = default_arg
106 def scan_target_h():
107 found_trigger = False
108 all_the_text = ""
109 with open("target.h", "r") as target_h:
110 for line in target_h:
111 line = line.strip()
112 if not found_trigger:
113 if TRIGGER.match(line):
114 found_trigger = True
115 elif "{" in line:
116 # Skip the open brace.
117 pass
118 elif ENDER.match(line):
119 break
120 else:
121 # Strip // comments.
122 line = re.split("//", line)[0]
123 all_the_text = all_the_text + " " + line
124 if not found_trigger:
125 raise RuntimeError("Could not find trigger line")
126 # Now strip out the C comments.
127 all_the_text = re.sub(r"/\*(.*?)\*/", "", all_the_text)
128 # Replace sequences whitespace with a single space character.
129 # We need the space because the method may have been split
130 # between multiple lines, like e.g.:
132 # virtual std::vector<long_type_name>
133 # my_long_method_name ()
134 # TARGET_DEFAULT_IGNORE ();
136 # If we didn't preserve the space, then we'd end up with:
138 # virtual std::vector<long_type_name>my_long_method_name ()TARGET_DEFAULT_IGNORE ()
140 # ... which wouldn't later be parsed correctly.
141 all_the_text = re.sub(r"\s+", " ", all_the_text)
142 return all_the_text.split(";")
145 # Parse arguments into a list.
146 def parse_argtypes(typestr: str):
147 # Remove the outer parens.
148 typestr = re.sub(r"^\((.*)\)$", r"\1", typestr)
149 result: list[str] = []
150 for item in re.split(r",\s*", typestr):
151 if item == "void" or item == "":
152 continue
153 m = ARGTYPES.match(item)
154 if m:
155 if m.group("E"):
156 onetype = m.group("E")
157 else:
158 onetype = m.group("T")
159 else:
160 onetype = item
161 result.append(onetype.strip())
162 return result
165 # Write function header given name, return type, and argtypes.
166 # Returns a list of actual argument names.
167 def write_function_header(
168 f: TextIO, decl: bool, name: str, return_type: str, argtypes: List[str]
170 print(return_type, file=f, end="")
171 if decl:
172 if not return_type.endswith("*"):
173 print(" ", file=f, end="")
174 else:
175 print("", file=f)
176 print(name + " (", file=f, end="")
177 argdecls: list[str] = []
178 actuals: list[str] = []
179 for i in range(len(argtypes)):
180 val = re.sub(TARGET_DEBUG_PRINTER, "", argtypes[i])
181 if not val.endswith("*") and not val.endswith("&"):
182 val = val + " "
183 vname = "arg" + str(i)
184 val = val + vname
185 argdecls.append(val)
186 actuals.append(vname)
187 print(", ".join(argdecls) + ")", file=f, end="")
188 if decl:
189 print(" override;", file=f)
190 else:
191 print("\n{", file=f)
192 return actuals
195 # Write out a declaration.
196 def write_declaration(f: TextIO, name: str, return_type: str, argtypes: List[str]):
197 write_function_header(f, True, name, return_type, argtypes)
200 # Write out a delegation function.
201 def write_delegator(f: TextIO, name: str, return_type: str, argtypes: List[str]):
202 print("", file=f)
203 names = write_function_header(
204 f, False, "target_ops::" + name, return_type, argtypes
206 print(" ", file=f, end="")
207 if return_type != "void":
208 print("return ", file=f, end="")
209 print("this->beneath ()->" + name + " (", file=f, end="")
210 print(", ".join(names), file=f, end="")
211 print(");", file=f)
212 print("}", file=f)
215 # Write out a default function.
216 def write_tdefault(
217 f: TextIO,
218 content: str,
219 style: str,
220 name: str,
221 return_type: str,
222 argtypes: List[str],
224 print("", file=f)
225 name = "dummy_target::" + name
226 names = write_function_header(f, False, name, return_type, argtypes)
227 if style == "FUNC":
228 print(" ", file=f, end="")
229 if return_type != "void":
230 print("return ", file=f, end="")
231 print(content + " (", file=f, end="")
232 names.insert(0, "this")
233 print(", ".join(names) + ");", file=f)
234 elif style == "RETURN":
235 print(" return " + content + ";", file=f)
236 elif style == "NORETURN":
237 print(" " + content + ";", file=f)
238 elif style == "IGNORE":
239 # Nothing.
240 pass
241 else:
242 raise RuntimeError("unrecognized style: " + style)
243 print("}", file=f)
246 def munge_type(typename: str):
247 m = re.search(TARGET_DEBUG_PRINTER, typename)
248 if m:
249 return m.group("arg")
250 typename = typename.rstrip()
251 typename = re.sub("[ ()<>:]", "_", typename)
252 typename = re.sub("[*]", "p", typename)
253 typename = re.sub("&", "r", typename)
254 # Identifiers with double underscores are reserved to the C++
255 # implementation.
256 typename = re.sub("_+", "_", typename)
257 # Avoid ending the function name with underscore, for
258 # cosmetics. Trailing underscores appear after munging types
259 # with template parameters, like e.g. "foo<int>".
260 typename = re.sub("_+$", "", typename)
261 return "target_debug_print_" + typename
264 # Write out a debug method.
265 def write_debugmethod(
266 f: TextIO, content: str, name: str, return_type: str, argtypes: List[str]
268 print("", file=f)
269 debugname = "debug_target::" + name
270 names = write_function_header(f, False, debugname, return_type, argtypes)
271 print(
272 ' gdb_printf (gdb_stdlog, "-> %s->'
273 + name
274 + ' (...)\\n", this->beneath ()->shortname ());',
275 file=f,
278 # Delegate to the beneath target.
279 if return_type != "void":
280 print(" " + return_type + " result", file=f)
281 print(" = ", file=f, end="")
282 else:
283 print(" ", file=f, end="")
284 print("this->beneath ()->" + name + " (", file=f, end="")
285 print(", ".join(names), file=f, end="")
286 print(");", file=f)
288 # Now print the arguments.
289 print(
290 ' gdb_printf (gdb_stdlog, "<- %s->'
291 + name
292 + ' (", this->beneath ()->shortname ());',
293 file=f,
295 for i in range(len(argtypes)):
296 if i > 0:
297 print(' gdb_puts (", ", gdb_stdlog);', file=f)
298 printer = munge_type(argtypes[i])
299 print(" " + printer + " (" + names[i] + ");", file=f)
300 if return_type != "void":
301 print(' gdb_puts (") = ", gdb_stdlog);', file=f)
302 printer = munge_type(return_type)
303 print(" " + printer + " (result);", file=f)
304 print(' gdb_puts ("\\n", gdb_stdlog);', file=f)
305 else:
306 print(' gdb_puts (")\\n", gdb_stdlog);', file=f)
308 if return_type != "void":
309 print(" return result;", file=f)
311 print("}", file=f)
314 def print_class(
315 f: TextIO,
316 class_name: str,
317 delegators: List[str],
318 entries: Dict[str, Entry],
320 print("", file=f)
321 print("struct " + class_name + " : public target_ops", file=f)
322 print("{", file=f)
323 print(" const target_info &info () const override;", file=f)
324 print("", file=f)
325 print(" strata stratum () const override;", file=f)
326 print("", file=f)
328 for name in delegators:
329 print(" ", file=f, end="")
330 entry = entries[name]
331 write_declaration(f, name, entry.return_type, entry.argtypes)
333 print("};", file=f)
336 delegators: List[str] = []
337 entries: Dict[str, Entry] = {}
339 for current_line in scan_target_h():
340 # See comments in scan_target_h. Here we strip away the leading
341 # and trailing whitespace.
342 current_line = current_line.strip()
343 m = METHOD.match(current_line)
344 if not m:
345 continue
346 data = m.groupdict()
347 name = data["name"]
348 argtypes = parse_argtypes(data["args"])
349 return_type = data["return_type"].strip()
350 style = data["style"]
351 default_arg = data["default_arg"]
352 entries[name] = Entry(argtypes, return_type, style, default_arg)
354 delegators.append(name)
356 with open("target-delegates.c", "w") as f:
357 print(
358 gdbcopyright.copyright(
359 "make-target-delegates.py", "Boilerplate target methods for GDB"
361 file=f,
363 print_class(f, "dummy_target", delegators, entries)
364 print_class(f, "debug_target", delegators, entries)
366 for name in delegators:
367 entry = entries[name]
369 write_delegator(f, name, entry.return_type, entry.argtypes)
370 write_tdefault(
372 entry.default_arg,
373 entry.style,
374 name,
375 entry.return_type,
376 entry.argtypes,
378 write_debugmethod(
380 entry.default_arg,
381 name,
382 entry.return_type,
383 entry.argtypes,