+2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * dll.h: Include <list>.
+ (struct dll_info): Add constructor.
+ <entry>: Remove field.
+ (all_dlls): Change type to std::list<dll_info>.
+ * dll.c: Include <algorithm>.
+ (get_dll): Remove macro.
+ (all_dlls): Change type to std::list<dll_info *>.
+ (free_one_dll): Remove.
+ (match_dll): Likewise.
+ (loaded_dll): Adjust.
+ (unloaded_dll): Adjust to all_dlls type change, use
+ std::find_if. Inline code from match_dll.
+ (clear_dlls): Adjust to all_dlls type change.
+ * server.c (emit_dll_description): Remove.
+ (handle_qxfer_libraries): Adjust to all_dlls type change,
+ integrate emit_dll_description's functionality.
+
2017-10-12 Simon Marchi <simon.marchi@ericsson.com>
* linux-low.h (struct linux_target_ops) <delete_process>: New
#include "server.h"
#include "dll.h"
-#define get_dll(inf) ((struct dll_info *)(inf))
+#include <algorithm>
/* An "unspecified" CORE_ADDR, for match_dll. */
#define UNSPECIFIED_CORE_ADDR (~(CORE_ADDR) 0)
-struct inferior_list all_dlls;
+std::list<dll_info> all_dlls;
int dlls_changed;
-static void
-free_one_dll (struct inferior_list_entry *inf)
-{
- struct dll_info *dll = get_dll (inf);
- if (dll->name != NULL)
- free (dll->name);
- free (dll);
-}
-
-/* Find a DLL with the same name and/or base address. A NULL name in
- the key is ignored; so is an all-ones base address. */
-
-static int
-match_dll (struct inferior_list_entry *inf, void *arg)
-{
- struct dll_info *iter = (struct dll_info *) inf;
- struct dll_info *key = (struct dll_info *) arg;
-
- if (key->base_addr != UNSPECIFIED_CORE_ADDR
- && iter->base_addr == key->base_addr)
- return 1;
- else if (key->name != NULL
- && iter->name != NULL
- && strcmp (key->name, iter->name) == 0)
- return 1;
-
- return 0;
-}
-
/* Record a newly loaded DLL at BASE_ADDR. */
void
loaded_dll (const char *name, CORE_ADDR base_addr)
{
- struct dll_info *new_dll = XCNEW (struct dll_info);
-
- new_dll->entry.id = minus_one_ptid;
-
- new_dll->name = xstrdup (name);
- new_dll->base_addr = base_addr;
-
- add_inferior_to_list (&all_dlls, &new_dll->entry);
+ all_dlls.emplace_back (name != NULL ? name : "", base_addr);
dlls_changed = 1;
}
void
unloaded_dll (const char *name, CORE_ADDR base_addr)
{
- struct dll_info *dll;
- struct dll_info key_dll;
+ auto pred = [&] (const dll_info &dll)
+ {
+ if (base_addr != UNSPECIFIED_CORE_ADDR
+ && base_addr == dll.base_addr)
+ return true;
+
+ if (name != NULL && dll.name == name)
+ return true;
- /* Be careful not to put the key DLL in any list. */
- key_dll.name = (char *) name;
- key_dll.base_addr = base_addr;
+ return false;
+ };
- dll = (struct dll_info *) find_inferior (&all_dlls, match_dll, &key_dll);
+ auto iter = std::find_if (all_dlls.begin (), all_dlls.end (), pred);
- if (dll == NULL)
+ if (iter == all_dlls.end ())
/* For some inferiors we might get unloaded_dll events without having
a corresponding loaded_dll. In that case, the dll cannot be found
in ALL_DLL, and there is nothing further for us to do.
{
/* DLL has been found so remove the entry and free associated
resources. */
- remove_inferior (&all_dlls, &dll->entry);
- free_one_dll (&dll->entry);
+ all_dlls.erase (iter);
dlls_changed = 1;
}
}
void
clear_dlls (void)
{
- for_each_inferior (&all_dlls, free_one_dll);
- clear_inferior_list (&all_dlls);
+ all_dlls.clear ();
}
return len;
}
-/* Worker routine for handle_qxfer_libraries.
- Emit the XML to describe the library in INF. */
-
-static void
-emit_dll_description (struct inferior_list_entry *inf, void *arg)
-{
- struct dll_info *dll = (struct dll_info *) inf;
- std::string *document = (std::string *) arg;
- std::string name = xml_escape_text (dll->name);
-
- *document += string_printf
- (" <library name=\"%s\"><segment address=\"0x%lx\"/></library>\n",
- name.c_str (), (long) dll->base_addr);
-}
-
/* Handle qXfer:libraries:read. */
static int
std::string document = "<library-list version=\"1.0\">\n";
- for_each_inferior_with_data (&all_dlls, emit_dll_description, &document);
+ for (const dll_info &dll : all_dlls)
+ document += string_printf
+ (" <library name=\"%s\"><segment address=\"0x%lx\"/></library>\n",
+ dll.name.c_str (), (long) dll.base_addr);
document += "</library-list>\n";