* solib.c (solib_contains_address_p): New function.
(solib_name_from_address): Use it.
* printcmd.c (display_uses_solib_p): Use it.
* solib.h (solib_contains_address_p): Declare it.
+2009-03-09 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * solib.c (solib_contains_address_p): New function.
+ (solib_name_from_address): Use it.
+ * printcmd.c (display_uses_solib_p): Use it.
+ * solib.h (solib_contains_address_p): Declare it.
+
2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
* varobj.c (free_variable): Call value_free.
struct expression *const exp = d->exp;
if (d->block != NULL
- && solib_name_from_address (d->block->startaddr) == solib->so_name)
+ && solib_contains_address_p (solib, d->block->startaddr))
return 1;
for (i = 0; i < exp->nelts; )
SYMBOL_OBJ_SECTION (symbol);
if (block != NULL
- && solib_name_from_address (block->startaddr) == solib->so_name)
+ && solib_contains_address_p (solib, block->startaddr))
return 1;
if (section && section->objfile == solib->objfile)
}
}
+/* Return 1 if ADDRESS lies within SOLIB. */
+
+int
+solib_contains_address_p (const struct so_list *const solib,
+ CORE_ADDR address)
+{
+ struct section_table *p;
+
+ for (p = solib->sections; p < solib->sections_end; p++)
+ if (p->addr <= address && address < p->endaddr)
+ return 1;
+
+ return 0;
+}
+
/*
GLOBAL FUNCTION
struct so_list *so = 0; /* link map state variable */
for (so = so_list_head; so; so = so->next)
- {
- struct section_table *p;
-
- for (p = so->sections; p < so->sections_end; p++)
- {
- if (p->addr <= address && address < p->endaddr)
- return (so->so_name);
- }
- }
+ if (solib_contains_address_p (so, address))
+ return (so->so_name);
return (0);
}
extern char *solib_name_from_address (CORE_ADDR);
+/* Return 1 if ADDR lies within SOLIB. */
+
+extern int solib_contains_address_p (const struct so_list *, CORE_ADDR);
+
/* Return 1 if PC lies in the dynamic symbol resolution code of the
run time loader. */