This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 3/6] Set varobj->path_expr in varobj_get_path_expr


On 15-01-29 10:39 PM, Joel Brobecker wrote:
>> 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.
> 
> Nice little cleanup, IMO. Thanks for doing it.
> 
>> 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.
> 
> LGTM. Thank you!

Pushed, thanks!


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]