diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-01-30 14:43:59 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-01-30 14:43:59 -0500 |
commit | 2568868e69f710e470c8698a34010daf36500a30 (patch) | |
tree | 221125e4d45d545ec01147f49d9add13733e302e /gdb/varobj.c | |
parent | ca83fa81892ab61870295cb5397c59daff1a55e0 (diff) | |
download | gdb-2568868e69f710e470c8698a34010daf36500a30.zip gdb-2568868e69f710e470c8698a34010daf36500a30.tar.gz gdb-2568868e69f710e470c8698a34010daf36500a30.tar.bz2 |
Set varobj->path_expr in varobj_get_path_expr
It seems like different languages are doing this differently (e.g.
C and Ada). For C, var->path_expr is set inside c_path_expr_of_child.
The next time the value is requested, is it therefore not recomputed.
Ada does not set this field, but just returns the value. Since the field
is never set, the value is recomputed every time it is requested.
This patch makes it so that path_expr_of_child's only job is to compute
the path expression, not save/cache the value. The field is set by the
varobj common code.
gdb/ChangeLog:
* varobj.c (varobj_get_path_expr): Set var->path_expr.
* c-varobj.c (c_path_expr_of_child): Set local var instead of
child->path_expr.
(cplus_path_expr_of_child): Same.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index 6c9257d..28d388e 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -1034,16 +1034,17 @@ varobj_get_path_expr_parent (struct varobj *var) char * varobj_get_path_expr (struct varobj *var) { - if (var->path_expr != NULL) - return var->path_expr; - else + if (var->path_expr == NULL) { /* For root varobjs, we initialize path_expr when creating varobj, so here it should be child varobj. */ gdb_assert (!is_root_p (var)); - return (*var->root->lang_ops->path_expr_of_child) (var); + + var->path_expr = (*var->root->lang_ops->path_expr_of_child) (var); } + + return var->path_expr; } const struct language_defn * |