Commit | Line | Data |
---|---|---|
23181151 DJ |
1 | /* XML target description support for GDB. |
2 | ||
42a4f53d | 3 | Copyright (C) 2006-2019 Free Software Foundation, Inc. |
23181151 DJ |
4 | |
5 | Contributed by CodeSourcery. | |
6 | ||
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
23181151 DJ |
12 | (at your option) any later version. |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
23181151 | 21 | |
bd8a901f PA |
22 | #ifndef XML_TDESC_H |
23 | #define XML_TDESC_H | |
24 | ||
268a13a5 | 25 | #include "gdbsupport/gdb_optional.h" |
bd8a901f PA |
26 | #include <string> |
27 | ||
23181151 DJ |
28 | struct target_ops; |
29 | struct target_desc; | |
30 | ||
31 | /* Read an XML target description from FILENAME. Parse it, and return | |
32 | the parsed description. */ | |
33 | ||
34 | const struct target_desc *file_read_description_xml (const char *filename); | |
35 | ||
36 | /* Read an XML target description using OPS. Parse it, and return the | |
37 | parsed description. */ | |
38 | ||
39 | const struct target_desc *target_read_description_xml (struct target_ops *); | |
18d3cec5 | 40 | |
bd8a901f PA |
41 | /* Fetches an XML target description using OPS, processing includes, |
42 | but not parsing it. Used to dump whole tdesc as a single XML file. | |
43 | Returns the description on success, and a disengaged optional | |
44 | otherwise. */ | |
45 | gdb::optional<std::string> target_fetch_description_xml (target_ops *ops); | |
46 | ||
e98577a9 AH |
47 | /* Take an xml string, parse it, and return the parsed description. Does not |
48 | handle a string containing includes. */ | |
49 | ||
50 | const struct target_desc *string_read_description_xml (const char *xml); | |
51 | ||
bd8a901f | 52 | #endif /* XML_TDESC_H */ |
18d3cec5 | 53 |