diff options
Diffstat (limited to 'gdb/memory-map.c')
-rw-r--r-- | gdb/memory-map.c | 51 |
1 files changed, 18 insertions, 33 deletions
diff --git a/gdb/memory-map.c b/gdb/memory-map.c index ff05394..9582ceb 100644 --- a/gdb/memory-map.c +++ b/gdb/memory-map.c @@ -22,7 +22,7 @@ #if !defined(HAVE_LIBEXPAT) -VEC(mem_region_s) * +std::vector<mem_region> parse_memory_map (const char *memory_map) { static int have_warned; @@ -34,7 +34,7 @@ parse_memory_map (const char *memory_map) "at compile time")); } - return NULL; + return std::vector<mem_region> (); } #else /* HAVE_LIBEXPAT */ @@ -44,7 +44,11 @@ parse_memory_map (const char *memory_map) /* Internal parsing data passed to all XML callbacks. */ struct memory_map_parsing_data { - VEC(mem_region_s) **memory_map; + memory_map_parsing_data (std::vector<mem_region> *memory_map_) + : memory_map (memory_map_) + {} + + std::vector<mem_region> *memory_map; std::string property_name; }; @@ -58,7 +62,6 @@ memory_map_start_memory (struct gdb_xml_parser *parser, { struct memory_map_parsing_data *data = (struct memory_map_parsing_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 @@ -68,11 +71,8 @@ memory_map_start_memory (struct gdb_xml_parser *parser, type_p = (ULONGEST *) xml_find_attribute (attributes, "type")->value; - mem_region_init (r); - r->lo = *start_p; - r->hi = r->lo + *length_p; - r->attrib.mode = (enum mem_access_mode) *type_p; - r->attrib.blocksize = -1; + data->memory_map->emplace_back (*start_p, *length_p, + (enum mem_access_mode) *type_p); } /* Handle the end of a <memory> element. Verify that any necessary @@ -85,9 +85,9 @@ memory_map_end_memory (struct gdb_xml_parser *parser, { struct memory_map_parsing_data *data = (struct memory_map_parsing_data *) user_data; - struct mem_region *r = VEC_last (mem_region_s, *data->memory_map); + const mem_region &r = data->memory_map->back (); - if (r->attrib.mode == MEM_FLASH && r->attrib.blocksize == -1) + if (r.attrib.mode == MEM_FLASH && r.attrib.blocksize == -1) gdb_xml_error (parser, _("Flash block size is not set")); } @@ -119,25 +119,15 @@ memory_map_end_property (struct gdb_xml_parser *parser, if (data->property_name == "blocksize") { - struct mem_region *r = VEC_last (mem_region_s, *data->memory_map); + mem_region &r = data->memory_map->back (); - r->attrib.blocksize = gdb_xml_parse_ulongest (parser, body_text); + r.attrib.blocksize = gdb_xml_parse_ulongest (parser, body_text); } else gdb_xml_debug (parser, _("Unknown property \"%s\""), data->property_name.c_str ()); } -/* Discard the constructed memory map (if an error occurs). */ - -static void -clear_result (void *p) -{ - VEC(mem_region_s) **result = (VEC(mem_region_s) **) 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[] = { @@ -178,25 +168,20 @@ const struct gdb_xml_element memory_map_elements[] = { { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } }; -VEC(mem_region_s) * +std::vector<mem_region> parse_memory_map (const char *memory_map) { - VEC(mem_region_s) *result = NULL; - struct cleanup *back_to; - struct memory_map_parsing_data data = { NULL }; + std::vector<mem_region> ret; + memory_map_parsing_data data (&ret); - 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; + return ret; } - do_cleanups (back_to); - return NULL; + return std::vector<mem_region> (); } #endif /* HAVE_LIBEXPAT */ |