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] testsuite/gdb.dwarf2: Fix for dw2-dos-drive failure on ARM


Please don't top post.

On 09/19/2013 04:23 PM, Omair Javaid wrote:
> Thanks everyone for the feedback.
> 
> I am getting following problem with 1byte text section in the dw2-dos-drive.exp
> 
> (gdb) PASS: gdb.dwarf2/dw2-dos-drive.exp: set breakpoint pending off
> break 'z:file.c':func
> Cannot access memory at address 0x0
> 
> When I change this to 4bytes the problem gets fixed. That is why I
> thought this could be an unaligned illegal memory access but I accept
> that the above comments verify that its not a alignment issue.
> 
> Can anyone help me figure out what could be the cause of this problem?

Breakpoint instructions on ARM are 4-byte wide.  It sounds like
GDB is trying to read the memory at the breakpoint's address, and
that fails (that error message comes from GDB, not the program).
AFAICS, the test doesn't execute the compiled object's code, so
GDB will try to read memory from the binary's sections.  As the
section is only 1 byte long, and probably no other section is allocated
contiguously, that'll fail...  To confirm, debug GDB under GDB,
and put a break on throw_it or some such.  Then work up the stack
to see where that is thrown, and why.

-- 
Pedro Alves


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