c1cc615262
This completes the constification of the struct varobj pointers in the
lang_varobj_ops interface partially done in
b09e2c591f
. As suggested by Pedro,
varobj_get_path_expr casts away the const to assign the "mutable" struct
member.
gdb/ChangeLog:
* ada-varobj.c (ada_name_of_child): Constify parent.
(ada_path_expr_of_child): Same.
(ada_value_of_child): Same.
(ada_type_of_child): Same.
* c-varobj.c (c_is_path_expr_parent): Same.
(c_describe_child): Same.
(c_name_of_child): Same.
(c_value_of_child): Same.
(c_type_of_child): Same.
(cplus_number_of_children): Same.
(cplus_describe_child): Constify var.
(cplus_name_of_child): Constify parent.
(cplus_value_of_child): Same.
(cplus_type_of_child): Same.
* jv-varobj.c (java_name_of_child): Same.
(java_value_of_child): Same.
(java_type_of_child): Same.
* varobj.c (value_of_child): Same.
(varobj_default_is_path_expr_parent): Constify var, parent and return
value.
(varobj_get_path_expr): Constify var, modify path_expr through
mutable_var.
(install_new_value): Constify parent.
(value_of_child): Constify parent.
* varobj.h (struct varobj): Constify parent.
(struct lang_varobj_ops): Constify name_of_child, value_of_child and
type_of_child.
(varobj_get_path_expr): Constify var.
(varobj_get_path_expr_parent): Constify var and return value.
108 lines
2.4 KiB
C
108 lines
2.4 KiB
C
/* varobj support for Java.
|
|
|
|
Copyright (C) 1999-2015 Free Software Foundation, Inc.
|
|
|
|
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 "varobj.h"
|
|
|
|
/* Java */
|
|
|
|
static int
|
|
java_number_of_children (const struct varobj *var)
|
|
{
|
|
return cplus_varobj_ops.number_of_children (var);
|
|
}
|
|
|
|
static char *
|
|
java_name_of_variable (const struct varobj *parent)
|
|
{
|
|
char *p, *name;
|
|
|
|
name = cplus_varobj_ops.name_of_variable (parent);
|
|
/* If the name has "-" in it, it is because we
|
|
needed to escape periods in the name... */
|
|
p = name;
|
|
|
|
while (*p != '\000')
|
|
{
|
|
if (*p == '-')
|
|
*p = '.';
|
|
p++;
|
|
}
|
|
|
|
return name;
|
|
}
|
|
|
|
static char *
|
|
java_name_of_child (const struct varobj *parent, int index)
|
|
{
|
|
char *name, *p;
|
|
|
|
name = cplus_varobj_ops.name_of_child (parent, index);
|
|
/* Escape any periods in the name... */
|
|
p = name;
|
|
|
|
while (*p != '\000')
|
|
{
|
|
if (*p == '.')
|
|
*p = '-';
|
|
p++;
|
|
}
|
|
|
|
return name;
|
|
}
|
|
|
|
static char *
|
|
java_path_expr_of_child (const struct varobj *child)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static struct value *
|
|
java_value_of_child (const struct varobj *parent, int index)
|
|
{
|
|
return cplus_varobj_ops.value_of_child (parent, index);
|
|
}
|
|
|
|
static struct type *
|
|
java_type_of_child (const struct varobj *parent, int index)
|
|
{
|
|
return cplus_varobj_ops.type_of_child (parent, index);
|
|
}
|
|
|
|
static char *
|
|
java_value_of_variable (const struct varobj *var,
|
|
enum varobj_display_formats format)
|
|
{
|
|
return cplus_varobj_ops.value_of_variable (var, format);
|
|
}
|
|
|
|
/* varobj operations for java. */
|
|
|
|
const struct lang_varobj_ops java_varobj_ops =
|
|
{
|
|
java_number_of_children,
|
|
java_name_of_variable,
|
|
java_name_of_child,
|
|
java_path_expr_of_child,
|
|
java_value_of_child,
|
|
java_type_of_child,
|
|
java_value_of_variable,
|
|
varobj_default_value_is_changeable_p,
|
|
NULL, /* value_has_mutated */
|
|
varobj_default_is_path_expr_parent
|
|
};
|