This is the mail archive of the gdb@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: Is it possible to access shadowed variables?


Marc Khouzam wrote:

> Hi,
> 
> I'm trying to figure out a way to deal with shadowed
> variables in Eclipse.  But I can't find a way to
> access them from GDB.
> 
> If I'm at line 3 of:
> 
> int a = 1; //line 1
> {
>   bool a = true; // line 3
> }
> 
> The only thing I found is to use
> -stack-list-locals 2
> which will show me both variables with their types
> and both their values.
> 
> -stack-list-locals 2
> ^done,locals=[{name="a",type="bool",value="true"},
>               {name="a",type="int",value="1"}]
> 
> Anything else I can do to tell GDB I want access to
> some shadowed variable?
> 
> Note that floating variable objects don't help
> (I think) because I'm already at line 3 by the
> time I create the varObject, so it will point
> to the inner-most variable.
> 
> Thanks for any suggestions.

There are no suggestions, I'm afraid. This requires the
ability to create varobj, or evaluate the expression, in
specific "block", or at specific line. I don't know any
way to do this in FSF GDB. Apple version had a way to
specify either address or line -- don't remember exactly.

- Volodya



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