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 2/4] Implements aarch64 process record and reverse debugging support


Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com> writes:

> noticed this commit (99afc8) introduced this issue when checking for uninitialized vars:
>

Sorry for breaking the build.

> gcc -g -O2 -mminimal-toc  -I. -I../../gdb -I../../gdb/common -I../../gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../gdb/../include/opcode -I../../gdb/../opcodes/.. -I../../gdb/../readline/.. -I../../gdb/../zlib -I../bfd -I../../gdb/../bfd -I../../gdb/../include -I../libdecnumber -I../../gdb/../libdecnumber  -I../../gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o aarch64-tdep.o -MT aarch64-tdep.o -MMD -MP -MF .deps/aarch64-tdep.Tpo ../../gdb/aarch64-tdep.c
> ../../gdb/aarch64-tdep.c: In function âaarch64_process_recordâ:
> ../../gdb/aarch64-tdep.c:2823:23: error: ârecord_buf[0]â may be used uninitialized in this function [-Werror=maybe-uninitialized]
>                  memcpy(&REGS[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
>                        ^
> ../../gdb/aarch64-tdep.c:3529:12: note: ârecord_buf[0]â was declared here
>    uint32_t record_buf[2];
>             ^
>
> The simple patch below intends to fix this. Ok?

This build error reveals some logic error inside function
aarch64_record_data_proc_simd_fp on decoding instructions.  I'll take a look.

What is your gcc version?  I use gcc-4.9 and gcc-5, but unable to
reproduce this compilation error.

-- 
Yao (éå)


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