From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 99979 invoked by alias); 2 May 2017 17:35:18 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 99967 invoked by uid 89); 2 May 2017 17:35:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.0 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy=Hx-languages-length:1582 X-HELO: simark.ca Received: from simark.ca (HELO simark.ca) (158.69.221.121) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 02 May 2017 17:35:16 +0000 Received: by simark.ca (Postfix, from userid 33) id B8D851E4A5; Tue, 2 May 2017 13:35:17 -0400 (EDT) To: gdb-patches@sourceware.org Subject: Re: [PATCH 0/4] Remove VEC (CORE_ADDR) X-PHP-Originating-Script: 33:rcube.php MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 02 May 2017 17:35:00 -0000 From: Simon Marchi In-Reply-To: <20170416141430.2585-1-simon.marchi@polymtl.ca> References: <20170416141430.2585-1-simon.marchi@polymtl.ca> Message-ID: <48912106c99c3d8e5402b0f664735543@polymtl.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.2.5 X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00021.txt.bz2 On 2017-04-16 10:14, Simon Marchi wrote: > The starting point of this series was to try to remove the definition > of VEC > (CORE_ADDR) and fix what it breaks. > > The series has been through the buildbot. I see some failures on the > AArch32 > builder, but I see the same failures on previous builds, so I don't > think this > series is the cause. > > Simon Marchi (4): > Change field separator in gdbarch.sh > Change return type of gdbarch_software_single_step to > vector > Use std::vector in solib-target lm_info > Remove definition of VEC (CORE_ADDR) > > gdb/aarch64-tdep.c | 17 +- > gdb/alpha-tdep.c | 23 ++- > gdb/alpha-tdep.h | 3 +- > gdb/arch/arm-get-next-pcs.c | 89 +++++----- > gdb/arch/arm-get-next-pcs.h | 5 +- > gdb/arm-linux-tdep.c | 21 +-- > gdb/arm-tdep.c | 30 +--- > gdb/arm-tdep.h | 4 +- > gdb/breakpoint.c | 10 +- > gdb/common/gdb_vecs.h | 2 - > gdb/cris-tdep.c | 8 +- > gdb/gdbarch.c | 2 +- > gdb/gdbarch.h | 7 +- > gdb/gdbarch.sh | 385 > +++++++++++++++++++++--------------------- > gdb/gdbserver/linux-arm-low.c | 7 +- > gdb/gdbserver/linux-low.c | 9 +- > gdb/gdbserver/linux-low.h | 2 +- > gdb/mips-tdep.c | 57 ++++--- > gdb/mips-tdep.h | 3 +- > gdb/moxie-tdep.c | 26 ++- > gdb/nios2-tdep.c | 7 +- > gdb/ppc-tdep.h | 3 +- > gdb/rs6000-aix-tdep.c | 10 +- > gdb/rs6000-tdep.c | 15 +- > gdb/s390-linux-tdep.c | 15 +- > gdb/solib-target.c | 49 +++--- > gdb/sparc-tdep.c | 8 +- > gdb/spu-tdep.c | 9 +- > gdb/tic6x-tdep.c | 7 +- > 29 files changed, 390 insertions(+), 443 deletions(-) This is now pushed. Simon