gdb: refactor make-target-delegates.py's ARGTYPES
[binutils-gdb.git] / gdb / make-target-delegates.py
1 #!/usr/bin/env python3
2
3 # Copyright (C) 2013-2023 Free Software Foundation, Inc.
4 #
5 # This file is part of GDB.
6 #
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.
11 #
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.
16 #
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/>.
19
20 # Usage:
21 # make-target-delegates.py
22
23 import re
24 from typing import Dict, List, TextIO
25
26 import gdbcopyright
27
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*};$")
33
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"^"
42
43 POINTER_PART = r"\s*(\*|\&)?\s*"
44
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
50
51 # Match a return type.
52 RETURN_PART = r"((const|volatile)\s+)?(" + SIMPLE_RETURN_PART + ")" + POINTER_PART
53
54 # Match "virtual".
55 VIRTUAL_PART = r"virtual\s"
56
57 # Match the TARGET_DEFAULT_* attribute for a method.
58 TARGET_DEFAULT_PART = r"TARGET_DEFAULT_(?P<style>[A-Z_]+)\s*\((?P<default_arg>.*)\)"
59
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 + "$"
63
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
74 )
75
76 # Space-separated symbols.
77 CP_SYMBOLS = CP_SYMBOL + r"(\s+" + CP_SYMBOL + r")*"
78
79 # Regular expression used to dissect argument types.
80 ARGTYPES = re.compile(
81 "^("
82 + r"(?P<E>enum\s+"
83 + SYMBOL
84 + r")"
85 + r"|(?P<T>"
86 + CP_SYMBOLS
87 + r"(\s|\*|&)+)"
88 + SYMBOL
89 + ")$"
90 )
91
92 # Match TARGET_DEBUG_PRINTER in an argument type.
93 # This must match the whole "sub-expression" including the parens.
94 TARGET_DEBUG_PRINTER = r"\s*TARGET_DEBUG_PRINTER\s*\((?P<arg>[^)]*)\)\s*"
95
96
97 class Entry:
98 def __init__(
99 self, argtypes: List[str], return_type: str, style: str, default_arg: str
100 ):
101 self.argtypes = argtypes
102 self.return_type = return_type
103 self.style = style
104 self.default_arg = default_arg
105
106
107 def scan_target_h():
108 found_trigger = False
109 all_the_text = ""
110 with open("target.h", "r") as target_h:
111 for line in target_h:
112 line = line.strip()
113 if not found_trigger:
114 if TRIGGER.match(line):
115 found_trigger = True
116 elif "{" in line:
117 # Skip the open brace.
118 pass
119 elif ENDER.match(line):
120 break
121 else:
122 # Strip // comments.
123 line = re.split("//", line)[0]
124 all_the_text = all_the_text + " " + line
125 if not found_trigger:
126 raise RuntimeError("Could not find trigger line")
127 # Now strip out the C comments.
128 all_the_text = re.sub(r"/\*(.*?)\*/", "", all_the_text)
129 # Replace sequences whitespace with a single space character.
130 # We need the space because the method may have been split
131 # between multiple lines, like e.g.:
132 #
133 # virtual std::vector<long_type_name>
134 # my_long_method_name ()
135 # TARGET_DEFAULT_IGNORE ();
136 #
137 # If we didn't preserve the space, then we'd end up with:
138 #
139 # virtual std::vector<long_type_name>my_long_method_name ()TARGET_DEFAULT_IGNORE ()
140 #
141 # ... which wouldn't later be parsed correctly.
142 all_the_text = re.sub(r"\s+", " ", all_the_text)
143 return all_the_text.split(";")
144
145
146 # Parse arguments into a list.
147 def parse_argtypes(typestr: str):
148 # Remove the outer parens.
149 typestr = re.sub(r"^\((.*)\)$", r"\1", typestr)
150 result: list[str] = []
151 for item in re.split(r",\s*", typestr):
152 if item == "void" or item == "":
153 continue
154 m = ARGTYPES.match(item)
155 if m:
156 if m.group("E"):
157 onetype = m.group("E")
158 else:
159 onetype = m.group("T")
160 else:
161 onetype = item
162 result.append(onetype.strip())
163 return result
164
165
166 # Write function header given name, return type, and argtypes.
167 # Returns a list of actual argument names.
168 def write_function_header(
169 f: TextIO, decl: bool, name: str, return_type: str, argtypes: List[str]
170 ):
171 print(return_type, file=f, end="")
172 if decl:
173 if not return_type.endswith("*"):
174 print(" ", file=f, end="")
175 else:
176 print("", file=f)
177 print(name + " (", file=f, end="")
178 argdecls: list[str] = []
179 actuals: list[str] = []
180 for i in range(len(argtypes)):
181 val = re.sub(TARGET_DEBUG_PRINTER, "", argtypes[i])
182 if not val.endswith("*") and not val.endswith("&"):
183 val = val + " "
184 vname = "arg" + str(i)
185 val = val + vname
186 argdecls.append(val)
187 actuals.append(vname)
188 print(", ".join(argdecls) + ")", file=f, end="")
189 if decl:
190 print(" override;", file=f)
191 else:
192 print("\n{", file=f)
193 return actuals
194
195
196 # Write out a declaration.
197 def write_declaration(f: TextIO, name: str, return_type: str, argtypes: List[str]):
198 write_function_header(f, True, name, return_type, argtypes)
199
200
201 # Write out a delegation function.
202 def write_delegator(f: TextIO, name: str, return_type: str, argtypes: List[str]):
203 print("", file=f)
204 names = write_function_header(
205 f, False, "target_ops::" + name, return_type, argtypes
206 )
207 print(" ", file=f, end="")
208 if return_type != "void":
209 print("return ", file=f, end="")
210 print("this->beneath ()->" + name + " (", file=f, end="")
211 print(", ".join(names), file=f, end="")
212 print(");", file=f)
213 print("}", file=f)
214
215
216 # Write out a default function.
217 def write_tdefault(
218 f: TextIO,
219 content: str,
220 style: str,
221 name: str,
222 return_type: str,
223 argtypes: List[str],
224 ):
225 print("", file=f)
226 name = "dummy_target::" + name
227 names = write_function_header(f, False, name, return_type, argtypes)
228 if style == "FUNC":
229 print(" ", file=f, end="")
230 if return_type != "void":
231 print("return ", file=f, end="")
232 print(content + " (", file=f, end="")
233 names.insert(0, "this")
234 print(", ".join(names) + ");", file=f)
235 elif style == "RETURN":
236 print(" return " + content + ";", file=f)
237 elif style == "NORETURN":
238 print(" " + content + ";", file=f)
239 elif style == "IGNORE":
240 # Nothing.
241 pass
242 else:
243 raise RuntimeError("unrecognized style: " + style)
244 print("}", file=f)
245
246
247 def munge_type(typename: str):
248 m = re.search(TARGET_DEBUG_PRINTER, typename)
249 if m:
250 return m.group("arg")
251 typename = typename.rstrip()
252 # There's no reason to have these keywords in the name, and their
253 # presence makes it harder to change styles.
254 typename = re.sub("\\b(struct|enum|class|union) ", "", typename)
255 typename = re.sub("[ ()<>:]", "_", typename)
256 typename = re.sub("[*]", "p", typename)
257 typename = re.sub("&", "r", typename)
258 # Identifiers with double underscores are reserved to the C++
259 # implementation.
260 typename = re.sub("_+", "_", typename)
261 # Avoid ending the function name with underscore, for
262 # cosmetics. Trailing underscores appear after munging types
263 # with template parameters, like e.g. "foo<int>".
264 typename = re.sub("_+$", "", typename)
265 return "target_debug_print_" + typename
266
267
268 # Write out a debug method.
269 def write_debugmethod(
270 f: TextIO, content: str, name: str, return_type: str, argtypes: List[str]
271 ):
272 print("", file=f)
273 debugname = "debug_target::" + name
274 names = write_function_header(f, False, debugname, return_type, argtypes)
275 print(
276 ' gdb_printf (gdb_stdlog, "-> %s->'
277 + name
278 + ' (...)\\n", this->beneath ()->shortname ());',
279 file=f,
280 )
281
282 # Delegate to the beneath target.
283 if return_type != "void":
284 print(" " + return_type + " result", file=f)
285 print(" = ", file=f, end="")
286 else:
287 print(" ", file=f, end="")
288 print("this->beneath ()->" + name + " (", file=f, end="")
289 print(", ".join(names), file=f, end="")
290 print(");", file=f)
291
292 # Now print the arguments.
293 print(
294 ' gdb_printf (gdb_stdlog, "<- %s->'
295 + name
296 + ' (", this->beneath ()->shortname ());',
297 file=f,
298 )
299 for i in range(len(argtypes)):
300 if i > 0:
301 print(' gdb_puts (", ", gdb_stdlog);', file=f)
302 printer = munge_type(argtypes[i])
303 print(" " + printer + " (" + names[i] + ");", file=f)
304 if return_type != "void":
305 print(' gdb_puts (") = ", gdb_stdlog);', file=f)
306 printer = munge_type(return_type)
307 print(" " + printer + " (result);", file=f)
308 print(' gdb_puts ("\\n", gdb_stdlog);', file=f)
309 else:
310 print(' gdb_puts (")\\n", gdb_stdlog);', file=f)
311
312 if return_type != "void":
313 print(" return result;", file=f)
314
315 print("}", file=f)
316
317
318 def print_class(
319 f: TextIO,
320 class_name: str,
321 delegators: List[str],
322 entries: Dict[str, Entry],
323 ):
324 print("", file=f)
325 print("struct " + class_name + " : public target_ops", file=f)
326 print("{", file=f)
327 print(" const target_info &info () const override;", file=f)
328 print("", file=f)
329 print(" strata stratum () const override;", file=f)
330 print("", file=f)
331
332 for name in delegators:
333 print(" ", file=f, end="")
334 entry = entries[name]
335 write_declaration(f, name, entry.return_type, entry.argtypes)
336
337 print("};", file=f)
338
339
340 delegators: List[str] = []
341 entries: Dict[str, Entry] = {}
342
343 for current_line in scan_target_h():
344 # See comments in scan_target_h. Here we strip away the leading
345 # and trailing whitespace.
346 current_line = current_line.strip()
347 m = METHOD.match(current_line)
348 if not m:
349 continue
350 data = m.groupdict()
351 name = data["name"]
352 argtypes = parse_argtypes(data["args"])
353 return_type = data["return_type"].strip()
354 style = data["style"]
355 default_arg = data["default_arg"]
356 entries[name] = Entry(argtypes, return_type, style, default_arg)
357
358 delegators.append(name)
359
360 with open("target-delegates.c", "w") as f:
361 print(
362 gdbcopyright.copyright(
363 "make-target-delegates.py", "Boilerplate target methods for GDB"
364 ),
365 file=f,
366 )
367 print_class(f, "dummy_target", delegators, entries)
368 print_class(f, "debug_target", delegators, entries)
369
370 for name in delegators:
371 entry = entries[name]
372
373 write_delegator(f, name, entry.return_type, entry.argtypes)
374 write_tdefault(
375 f,
376 entry.default_arg,
377 entry.style,
378 name,
379 entry.return_type,
380 entry.argtypes,
381 )
382 write_debugmethod(
383 f,
384 entry.default_arg,
385 name,
386 entry.return_type,
387 entry.argtypes,
388 )