Fix crash with DW_FORM_implicit_const
[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 # 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 + ")$"
89 )
90
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*"
94
95
96 class Entry:
97 def __init__(
98 self, argtypes: List[str], return_type: str, style: str, default_arg: str
99 ):
100 self.argtypes = argtypes
101 self.return_type = return_type
102 self.style = style
103 self.default_arg = default_arg
104
105
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.:
131 #
132 # virtual std::vector<long_type_name>
133 # my_long_method_name ()
134 # TARGET_DEFAULT_IGNORE ();
135 #
136 # If we didn't preserve the space, then we'd end up with:
137 #
138 # virtual std::vector<long_type_name>my_long_method_name ()TARGET_DEFAULT_IGNORE ()
139 #
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(";")
143
144
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
163
164
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]
169 ):
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
193
194
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)
198
199
200 # Write out a delegation function.
201 def write_delegator(f: TextIO, name: str, return_type: str, argtypes: List[str]):
202 names = write_function_header(
203 f, False, "target_ops::" + name, return_type, argtypes
204 )
205 print(" ", file=f, end="")
206 if return_type != "void":
207 print("return ", file=f, end="")
208 print("this->beneath ()->" + name + " (", file=f, end="")
209 print(", ".join(names), file=f, end="")
210 print(");", file=f)
211 print("}\n", file=f)
212
213
214 # Write out a default function.
215 def write_tdefault(
216 f: TextIO,
217 content: str,
218 style: str,
219 name: str,
220 return_type: str,
221 argtypes: List[str],
222 ):
223 name = "dummy_target::" + name
224 names = write_function_header(f, False, name, return_type, argtypes)
225 if style == "FUNC":
226 print(" ", file=f, end="")
227 if return_type != "void":
228 print("return ", file=f, end="")
229 print(content + " (", file=f, end="")
230 names.insert(0, "this")
231 print(", ".join(names) + ");", file=f)
232 elif style == "RETURN":
233 print(" return " + content + ";", file=f)
234 elif style == "NORETURN":
235 print(" " + content + ";", file=f)
236 elif style == "IGNORE":
237 # Nothing.
238 pass
239 else:
240 raise RuntimeError("unrecognized style: " + style)
241 print("}\n", file=f)
242
243
244 def munge_type(typename: str):
245 m = re.search(TARGET_DEBUG_PRINTER, typename)
246 if m:
247 return m.group("arg")
248 typename = typename.rstrip()
249 typename = re.sub("[ ()<>:]", "_", typename)
250 typename = re.sub("[*]", "p", typename)
251 typename = re.sub("&", "r", typename)
252 # Identifiers with double underscores are reserved to the C++
253 # implementation.
254 typename = re.sub("_+", "_", typename)
255 # Avoid ending the function name with underscore, for
256 # cosmetics. Trailing underscores appear after munging types
257 # with template parameters, like e.g. "foo<int>".
258 typename = re.sub("_+$", "", typename)
259 return "target_debug_print_" + typename
260
261
262 # Write out a debug method.
263 def write_debugmethod(
264 f: TextIO, content: str, name: str, return_type: str, argtypes: List[str]
265 ):
266 debugname = "debug_target::" + name
267 names = write_function_header(f, False, debugname, return_type, argtypes)
268 if return_type != "void":
269 print(" " + return_type + " result;", file=f)
270 print(
271 ' gdb_printf (gdb_stdlog, "-> %s->'
272 + name
273 + ' (...)\\n", this->beneath ()->shortname ());',
274 file=f,
275 )
276
277 # Delegate to the beneath target.
278 print(" ", file=f, end="")
279 if return_type != "void":
280 print("result = ", file=f, end="")
281 print("this->beneath ()->" + name + " (", file=f, end="")
282 print(", ".join(names), file=f, end="")
283 print(");", file=f)
284
285 # Now print the arguments.
286 print(
287 ' gdb_printf (gdb_stdlog, "<- %s->'
288 + name
289 + ' (", this->beneath ()->shortname ());',
290 file=f,
291 )
292 for i in range(len(argtypes)):
293 if i > 0:
294 print(' gdb_puts (", ", gdb_stdlog);', file=f)
295 printer = munge_type(argtypes[i])
296 print(" " + printer + " (" + names[i] + ");", file=f)
297 if return_type != "void":
298 print(' gdb_puts (") = ", gdb_stdlog);', file=f)
299 printer = munge_type(return_type)
300 print(" " + printer + " (result);", file=f)
301 print(' gdb_puts ("\\n", gdb_stdlog);', file=f)
302 else:
303 print(' gdb_puts (")\\n", gdb_stdlog);', file=f)
304
305 if return_type != "void":
306 print(" return result;", file=f)
307
308 print("}\n", file=f)
309
310
311 def print_class(
312 f: TextIO,
313 class_name: str,
314 delegators: List[str],
315 entries: Dict[str, Entry],
316 ):
317 print("struct " + class_name + " : public target_ops", file=f)
318 print("{", file=f)
319 print(" const target_info &info () const override;", file=f)
320 print("", file=f)
321 print(" strata stratum () const override;", file=f)
322 print("", file=f)
323
324 for name in delegators:
325 print(" ", file=f, end="")
326 entry = entries[name]
327 write_declaration(f, name, entry.return_type, entry.argtypes)
328
329 print("};\n", file=f)
330
331
332 delegators: List[str] = []
333 entries: Dict[str, Entry] = {}
334
335 for current_line in scan_target_h():
336 # See comments in scan_target_h. Here we strip away the leading
337 # and trailing whitespace.
338 current_line = current_line.strip()
339 m = METHOD.match(current_line)
340 if not m:
341 continue
342 data = m.groupdict()
343 name = data["name"]
344 argtypes = parse_argtypes(data["args"])
345 return_type = data["return_type"].strip()
346 style = data["style"]
347 default_arg = data["default_arg"]
348 entries[name] = Entry(argtypes, return_type, style, default_arg)
349
350 delegators.append(name)
351
352 with open("target-delegates.c", "w") as f:
353 print(
354 gdbcopyright.copyright(
355 "make-target-delegates.py", "Boilerplate target methods for GDB"
356 ),
357 file=f,
358 )
359 print_class(f, "dummy_target", delegators, entries)
360 print_class(f, "debug_target", delegators, entries)
361
362 for name in delegators:
363 entry = entries[name]
364
365 write_delegator(f, name, entry.return_type, entry.argtypes)
366 write_tdefault(
367 f,
368 entry.default_arg,
369 entry.style,
370 name,
371 entry.return_type,
372 entry.argtypes,
373 )
374 write_debugmethod(
375 f,
376 entry.default_arg,
377 name,
378 entry.return_type,
379 entry.argtypes,
380 )