From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26393 invoked by alias); 27 Aug 2014 09:05:55 -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 26380 invoked by uid 89); 27 Aug 2014 09:05:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oa0-f51.google.com Received: from mail-oa0-f51.google.com (HELO mail-oa0-f51.google.com) (209.85.219.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 27 Aug 2014 09:05:53 +0000 Received: by mail-oa0-f51.google.com with SMTP id o6so12820894oag.38 for ; Wed, 27 Aug 2014 02:05:51 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type; bh=tjxNf9OxHbYSrvyfSdorf404seDrHYTQML65XchjdYs=; b=jiSIz07uVGJY91qCGsvVnOk0Ogl3MI0IGsgORUBUi2MDZnvf2ePsrcvoZm1b5xdCB8 PYGL80JrNZWe65ckvgCe5HZI5XL0+7RDCBuCTIQePxJ+2kSUtlwHPU1n7GsxvVLJ3B/o uZIUF8dr2+Q6fcwUgYT5rcLn/cmrUYu9BbsoQhsUy1dLKGxqjM6WqpRGQxbBrnmP5dn5 PUGKvKHsqcSsWUnqRyMmlfSuCxWGdx8ytOboEZEiaeJuO+2iqduucDmG94Ut2s0Uox64 gnShiXROgctDv7IK+QFL18Peul48ZO3EgLj64hbKCewRxDZKaGHG3NB5B26nTudUZNBj SfFw== X-Gm-Message-State: ALoCoQnKo/kuSVEoU/WE7b3dsbTW6d5tWlbupz7p9AbBr241G8s7cEInX9uN3dMq6gHEp6I7vQiQ X-Received: by 10.182.119.230 with SMTP id kx6mr8131176obb.72.1409130351280; Wed, 27 Aug 2014 02:05:51 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.140.40 with HTTP; Wed, 27 Aug 2014 02:05:31 -0700 (PDT) In-Reply-To: <1407935535-27978-1-git-send-email-omair.javaid@linaro.org> References: <1407935535-27978-1-git-send-email-omair.javaid@linaro.org> From: Omair Javaid Date: Wed, 27 Aug 2014 09:05:00 -0000 Message-ID: Subject: Re: [PATCH v3 0/6] ARM process record/replay improvements To: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-08/txt/msg00550.txt.bz2 On 13 August 2014 18:12, Omair Javaid wrote: > This set of patches is an update to a previously posted patch set here: > version 1) https://www.sourceware.org/ml/gdb-patches/2013-11/msg00749.html > version 2) https://sourceware.org/ml/gdb-patches/2014-02/msg00703.html > > New series splits the previous patch by feature and also makes appropriate > changes required to accomodate recently committed changes in arm process record > code. > > This patch series further improves arm process record instruction coverage and > fixes a few more testsuite failures in gdb.record. > > This patch set has been tested with latest gdb trunk on ARM and x86_64 targets with no regressions. > > All gdb.reverse tests now pass on arm targets. > > Omair Javaid (6): > Implements support for recording arm/thumb mode coprocessor > instructions > Implements support for recording thumb2 ASIMD struct ld/st insn > Implement support for recording VFP data processing instructions > Implement support for recording extension register ld/st insn > Implement support for recording vector data transfer instructions > Fix reverse-step and reverse-next over undebuggable solib code > > gdb/arm-tdep.c | 784 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- > gdb/infrun.c | 5 +- > 2 files changed, 776 insertions(+), 13 deletions(-) > > -- > 1.9.1 > Ping! Any more comments on this patch series?