mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
c765fdb902
defs.h includes utils.h, and utils.h includes exceptions.h. All GDB .c files include defs.h as their first line, so no file other than utils.h needs to include exceptions.h. This commit removes all such inclusions. gdb/ChangeLog: * ada-lang.c: Do not include exceptions.h. * ada-valprint.c: Likewise. * amd64-tdep.c: Likewise. * auto-load.c: Likewise. * block.c: Likewise. * break-catch-throw.c: Likewise. * breakpoint.c: Likewise. * btrace.c: Likewise. * c-lang.c: Likewise. * cli/cli-cmds.c: Likewise. * cli/cli-interp.c: Likewise. * cli/cli-script.c: Likewise. * completer.c: Likewise. * corefile.c: Likewise. * corelow.c: Likewise. * cp-abi.c: Likewise. * cp-support.c: Likewise. * cp-valprint.c: Likewise. * darwin-nat.c: Likewise. * dwarf2-frame-tailcall.c: Likewise. * dwarf2-frame.c: Likewise. * dwarf2loc.c: Likewise. * dwarf2read.c: Likewise. * eval.c: Likewise. * event-loop.c: Likewise. * event-top.c: Likewise. * f-valprint.c: Likewise. * frame-unwind.c: Likewise. * frame.c: Likewise. * gdbtypes.c: Likewise. * gnu-v2-abi.c: Likewise. * gnu-v3-abi.c: Likewise. * guile/scm-auto-load.c: Likewise. * guile/scm-breakpoint.c: Likewise. * guile/scm-cmd.c: Likewise. * guile/scm-frame.c: Likewise. * guile/scm-lazy-string.c: Likewise. * guile/scm-param.c: Likewise. * guile/scm-symbol.c: Likewise. * guile/scm-type.c: Likewise. * hppa-hpux-tdep.c: Likewise. * i386-tdep.c: Likewise. * inf-loop.c: Likewise. * infcall.c: Likewise. * infcmd.c: Likewise. * infrun.c: Likewise. * interps.c: Likewise. * interps.h: Likewise. * jit.c: Likewise. * linespec.c: Likewise. * linux-nat.c: Likewise. * linux-thread-db.c: Likewise. * m32r-rom.c: Likewise. * main.c: Likewise. * memory-map.c: Likewise. * mi/mi-cmd-break.c: Likewise. * mi/mi-cmd-stack.c: Likewise. * mi/mi-interp.c: Likewise. * mi/mi-main.c: Likewise. * monitor.c: Likewise. * nto-procfs.c: Likewise. * objc-lang.c: Likewise. * p-valprint.c: Likewise. * parse.c: Likewise. * ppc-linux-tdep.c: Likewise. * printcmd.c: Likewise. * probe.c: Likewise. * python/py-auto-load.c: Likewise. * python/py-breakpoint.c: Likewise. * python/py-cmd.c: Likewise. * python/py-finishbreakpoint.c: Likewise. * python/py-frame.c: Likewise. * python/py-framefilter.c: Likewise. * python/py-function.c: Likewise. * python/py-gdb-readline.c: Likewise. * python/py-inferior.c: Likewise. * python/py-infthread.c: Likewise. * python/py-lazy-string.c: Likewise. * python/py-linetable.c: Likewise. * python/py-param.c: Likewise. * python/py-prettyprint.c: Likewise. * python/py-symbol.c: Likewise. * python/py-type.c: Likewise. * python/py-value.c: Likewise. * python/python-internal.h: Likewise. * python/python.c: Likewise. * record-btrace.c: Likewise. * record-full.c: Likewise. * regcache.c: Likewise. * remote-fileio.c: Likewise. * remote-mips.c: Likewise. * remote.c: Likewise. * rs6000-aix-tdep.c: Likewise. * rs6000-nat.c: Likewise. * skip.c: Likewise. * solib-darwin.c: Likewise. * solib-dsbt.c: Likewise. * solib-frv.c: Likewise. * solib-ia64-hpux.c: Likewise. * solib-spu.c: Likewise. * solib-svr4.c: Likewise. * solib.c: Likewise. * spu-tdep.c: Likewise. * stack.c: Likewise. * stap-probe.c: Likewise. * symfile-mem.c: Likewise. * symmisc.c: Likewise. * target.c: Likewise. * thread.c: Likewise. * top.c: Likewise. * tracepoint.c: Likewise. * tui/tui-interp.c: Likewise. * typeprint.c: Likewise. * utils.c: Likewise. * valarith.c: Likewise. * valops.c: Likewise. * valprint.c: Likewise. * value.c: Likewise. * varobj.c: Likewise. * windows-nat.c: Likewise. * xml-support.c: Likewise.
195 lines
5.6 KiB
C
195 lines
5.6 KiB
C
/* Routines for handling XML memory maps provided by target.
|
|
|
|
Copyright (C) 2006-2014 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "defs.h"
|
|
#include "memory-map.h"
|
|
|
|
#if !defined(HAVE_LIBEXPAT)
|
|
|
|
VEC(mem_region_s) *
|
|
parse_memory_map (const char *memory_map)
|
|
{
|
|
static int have_warned;
|
|
|
|
if (!have_warned)
|
|
{
|
|
have_warned = 1;
|
|
warning (_("Can not parse XML memory map; XML support was disabled "
|
|
"at compile time"));
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#else /* HAVE_LIBEXPAT */
|
|
|
|
#include "xml-support.h"
|
|
|
|
/* Internal parsing data passed to all XML callbacks. */
|
|
struct memory_map_parsing_data
|
|
{
|
|
VEC(mem_region_s) **memory_map;
|
|
char property_name[32];
|
|
};
|
|
|
|
/* Handle the start of a <memory> element. */
|
|
|
|
static void
|
|
memory_map_start_memory (struct gdb_xml_parser *parser,
|
|
const struct gdb_xml_element *element,
|
|
void *user_data, VEC(gdb_xml_value_s) *attributes)
|
|
{
|
|
struct memory_map_parsing_data *data = user_data;
|
|
struct mem_region *r = VEC_safe_push (mem_region_s, *data->memory_map, NULL);
|
|
ULONGEST *start_p, *length_p, *type_p;
|
|
|
|
start_p = xml_find_attribute (attributes, "start")->value;
|
|
length_p = xml_find_attribute (attributes, "length")->value;
|
|
type_p = xml_find_attribute (attributes, "type")->value;
|
|
|
|
mem_region_init (r);
|
|
r->lo = *start_p;
|
|
r->hi = r->lo + *length_p;
|
|
r->attrib.mode = *type_p;
|
|
r->attrib.blocksize = -1;
|
|
}
|
|
|
|
/* Handle the end of a <memory> element. Verify that any necessary
|
|
children were present. */
|
|
|
|
static void
|
|
memory_map_end_memory (struct gdb_xml_parser *parser,
|
|
const struct gdb_xml_element *element,
|
|
void *user_data, const char *body_text)
|
|
{
|
|
struct memory_map_parsing_data *data = user_data;
|
|
struct mem_region *r = VEC_last (mem_region_s, *data->memory_map);
|
|
|
|
if (r->attrib.mode == MEM_FLASH && r->attrib.blocksize == -1)
|
|
gdb_xml_error (parser, _("Flash block size is not set"));
|
|
}
|
|
|
|
/* Handle the start of a <property> element by saving the name
|
|
attribute for later. */
|
|
|
|
static void
|
|
memory_map_start_property (struct gdb_xml_parser *parser,
|
|
const struct gdb_xml_element *element,
|
|
void *user_data, VEC(gdb_xml_value_s) *attributes)
|
|
{
|
|
struct memory_map_parsing_data *data = user_data;
|
|
char *name;
|
|
|
|
name = xml_find_attribute (attributes, "name")->value;
|
|
snprintf (data->property_name, sizeof (data->property_name), "%s", name);
|
|
}
|
|
|
|
/* Handle the end of a <property> element and its value. */
|
|
|
|
static void
|
|
memory_map_end_property (struct gdb_xml_parser *parser,
|
|
const struct gdb_xml_element *element,
|
|
void *user_data, const char *body_text)
|
|
{
|
|
struct memory_map_parsing_data *data = user_data;
|
|
char *name = data->property_name;
|
|
|
|
if (strcmp (name, "blocksize") == 0)
|
|
{
|
|
struct mem_region *r = VEC_last (mem_region_s, *data->memory_map);
|
|
|
|
r->attrib.blocksize = gdb_xml_parse_ulongest (parser, body_text);
|
|
}
|
|
else
|
|
gdb_xml_debug (parser, _("Unknown property \"%s\""), name);
|
|
}
|
|
|
|
/* Discard the constructed memory map (if an error occurs). */
|
|
|
|
static void
|
|
clear_result (void *p)
|
|
{
|
|
VEC(mem_region_s) **result = p;
|
|
VEC_free (mem_region_s, *result);
|
|
*result = NULL;
|
|
}
|
|
|
|
/* The allowed elements and attributes for an XML memory map. */
|
|
|
|
const struct gdb_xml_attribute property_attributes[] = {
|
|
{ "name", GDB_XML_AF_NONE, NULL, NULL },
|
|
{ NULL, GDB_XML_AF_NONE, NULL, NULL }
|
|
};
|
|
|
|
const struct gdb_xml_element memory_children[] = {
|
|
{ "property", property_attributes, NULL,
|
|
GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
|
|
memory_map_start_property, memory_map_end_property },
|
|
{ NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
|
|
};
|
|
|
|
const struct gdb_xml_enum memory_type_enum[] = {
|
|
{ "ram", MEM_RW },
|
|
{ "rom", MEM_RO },
|
|
{ "flash", MEM_FLASH },
|
|
{ NULL, 0 }
|
|
};
|
|
|
|
const struct gdb_xml_attribute memory_attributes[] = {
|
|
{ "start", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
|
|
{ "length", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
|
|
{ "type", GDB_XML_AF_NONE, gdb_xml_parse_attr_enum, &memory_type_enum },
|
|
{ NULL, GDB_XML_AF_NONE, NULL, NULL }
|
|
};
|
|
|
|
const struct gdb_xml_element memory_map_children[] = {
|
|
{ "memory", memory_attributes, memory_children, GDB_XML_EF_REPEATABLE,
|
|
memory_map_start_memory, memory_map_end_memory },
|
|
{ NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
|
|
};
|
|
|
|
const struct gdb_xml_element memory_map_elements[] = {
|
|
{ "memory-map", NULL, memory_map_children, GDB_XML_EF_NONE,
|
|
NULL, NULL },
|
|
{ NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
|
|
};
|
|
|
|
VEC(mem_region_s) *
|
|
parse_memory_map (const char *memory_map)
|
|
{
|
|
VEC(mem_region_s) *result = NULL;
|
|
struct cleanup *back_to;
|
|
struct memory_map_parsing_data data = { NULL };
|
|
|
|
data.memory_map = &result;
|
|
back_to = make_cleanup (clear_result, &result);
|
|
if (gdb_xml_parse_quick (_("target memory map"), NULL, memory_map_elements,
|
|
memory_map, &data) == 0)
|
|
{
|
|
/* Parsed successfully, keep the result. */
|
|
discard_cleanups (back_to);
|
|
return result;
|
|
}
|
|
|
|
do_cleanups (back_to);
|
|
return NULL;
|
|
}
|
|
|
|
#endif /* HAVE_LIBEXPAT */
|