From: Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
To: Yao Qi <qiyaoltc@gmail.com>, Pedro Alves <palves@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH 2/4] Implements aarch64 process record and reverse debugging support
Date: Tue, 26 May 2015 20:00:00 -0000 [thread overview]
Message-ID: <5564D0E9.3000402@linux.vnet.ibm.com> (raw)
In-Reply-To: <86h9qzr2g2.fsf@gmail.com>
On 05/26/2015 08:41 AM, Yao Qi wrote:
> Pedro Alves <palves@redhat.com> writes:
>
>> Off by one?
>>
> Oh, good catch. It should be:
>
> * linux-record.h (struct linux_record_tdep) <arg7>: New field.
>
>> Looked fine to me otherwise (I just skimmed it; didn't really look at
>> anything aarch64 specific in detail).
>
> Thanks for looking at them... I'll push them in.
>
Hi,
noticed this commit (99afc8) introduced this issue when checking for uninitialized vars:
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(®S[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?
Thanks,
--
Edjunior
2015-05-26 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
* aarch64-tdep.c: (aarch64_record_data_proc_simd_fp) Avoid uninitialized
variable warning.
diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c
index 8597497..73a7f99 100644
--- a/gdb/aarch64-tdep.c
+++ b/gdb/aarch64-tdep.c
@@ -3526,7 +3526,7 @@ aarch64_record_data_proc_simd_fp (insn_decode_record *aarch64_insn_r)
uint8_t insn_bit21, opcode, rmode, reg_rd;
uint8_t insn_bits24_27, insn_bits28_31, insn_bits10_11, insn_bits12_15;
uint8_t insn_bits11_14;
- uint32_t record_buf[2];
+ uint32_t record_buf[2] = { 0, 0 };
insn_bits24_27 = bits (aarch64_insn_r->aarch64_insn, 24, 27);
insn_bits28_31 = bits (aarch64_insn_r->aarch64_insn, 28, 31);
next prev parent reply other threads:[~2015-05-26 20:00 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-19 13:22 [PATCH 0/4 V6] Process record and reverse debugging support on aarch64-linux Yao Qi
2015-05-19 13:22 ` [PATCH 2/4] Implements aarch64 process record and reverse debugging support Yao Qi
2015-05-21 20:23 ` Pedro Alves
2015-05-26 11:41 ` Yao Qi
2015-05-26 20:00 ` Edjunior Barbosa Machado [this message]
2015-05-27 8:21 ` Yao Qi
2015-05-27 9:23 ` Yao Qi
2015-05-27 10:22 ` Yao Qi
2015-05-27 14:12 ` Edjunior Barbosa Machado
2015-05-27 15:05 ` Yao Qi
[not found] ` <5565E8BE.4060506@linux.vnet.ibm.com>
2015-05-27 16:18 ` Yao Qi
2015-05-19 13:22 ` [PATCH 1/4] NEWS entry about aarch64-linux record/replay support Yao Qi
2015-05-19 13:23 ` [PATCH 4/4] New gdb.reverse test case for aarch64 instructions Yao Qi
2015-05-21 20:22 ` Pedro Alves
2015-05-26 11:26 ` Yao Qi
2015-05-19 13:23 ` [PATCH 3/4] Enables gdb.reverse testsuite for aarch64*-linux targets Yao Qi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5564D0E9.3000402@linux.vnet.ibm.com \
--to=emachado@linux.vnet.ibm.com \
--cc=gdb-patches@sourceware.org \
--cc=palves@redhat.com \
--cc=qiyaoltc@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox