blob: 46d6c001408b1cb6c06319696f7452fc00d84b93 [file] [log] [blame]
Alex Bennéebcbc36a2023-03-02 18:57:59 -08001#!/usr/bin/env python3
2# coding: utf-8
3#
4# Probe gdb for supported architectures.
5#
6# This is required to support testing of the gdbstub as its hard to
7# handle errors gracefully during the test. Instead this script when
8# passed a GDB binary will probe its architecture support and return a
9# string of supported arches, stripped of guff.
10#
11# Copyright 2023 Linaro Ltd
12#
13# Author: Alex Bennée <alex.bennee@linaro.org>
14#
15# This work is licensed under the terms of the GNU GPL, version 2 or later.
16# See the COPYING file in the top-level directory.
17#
18# SPDX-License-Identifier: GPL-2.0-or-later
19
20import argparse
21import re
22from subprocess import check_output, STDOUT
23
24# mappings from gdb arch to QEMU target
25mappings = {
26 "alpha" : "alpha",
27 "aarch64" : ["aarch64", "aarch64_be"],
28 "armv7": "arm",
29 "armv8-a" : ["aarch64", "aarch64_be"],
30 "avr" : "avr",
31 "cris" : "cris",
32 # no hexagon in upstream gdb
33 "hppa1.0" : "hppa",
34 "i386" : "i386",
35 "i386:x86-64" : "x86_64",
36 "Loongarch64" : "loongarch64",
37 "m68k" : "m68k",
38 "MicroBlaze" : "microblaze",
39 "mips:isa64" : ["mips64", "mips64el"],
Alex Bennéebcbc36a2023-03-02 18:57:59 -080040 "or1k" : "or1k",
41 "powerpc:common" : "ppc",
42 "powerpc:common64" : ["ppc64", "ppc64le"],
43 "riscv:rv32" : "riscv32",
44 "riscv:rv64" : "riscv64",
45 "s390:64-bit" : "s390x",
46 "sh4" : ["sh4", "sh4eb"],
47 "sparc": "sparc",
48 "sparc:v8plus": "sparc32plus",
49 "sparc:v9a" : "sparc64",
50 # no tricore in upstream gdb
51 "xtensa" : ["xtensa", "xtensaeb"]
52}
53
54def do_probe(gdb):
55 gdb_out = check_output([gdb,
56 "-ex", "set architecture",
57 "-ex", "quit"], stderr=STDOUT)
58
59 m = re.search(r"Valid arguments are (.*)",
60 gdb_out.decode("utf-8"))
61
62 valid_arches = set()
63
64 if m.group(1):
65 for arch in m.group(1).split(", "):
66 if arch in mappings:
67 mapping = mappings[arch]
68 if isinstance(mapping, str):
69 valid_arches.add(mapping)
70 else:
71 for entry in mapping:
72 valid_arches.add(entry)
73
74 return valid_arches
75
76def main() -> None:
77 parser = argparse.ArgumentParser(description='Probe GDB Architectures')
78 parser.add_argument('gdb', help='Path to GDB binary.')
79
80 args = parser.parse_args()
81
82 supported = do_probe(args.gdb)
83
84 print(" ".join(supported))
85
86if __name__ == '__main__':
87 main()