From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 494 invoked by alias); 3 Feb 2015 01:32:33 -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 477 invoked by uid 89); 3 Feb 2015 01:32:32 -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-wi0-f176.google.com Received: from mail-wi0-f176.google.com (HELO mail-wi0-f176.google.com) (209.85.212.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 03 Feb 2015 01:32:31 +0000 Received: by mail-wi0-f176.google.com with SMTP id bs8so20947147wib.3 for ; Mon, 02 Feb 2015 17:32:28 -0800 (PST) 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=pPiNX4ftmSQEumE5PWyQ3jUFhIczVHkOerY6eBD0MKo=; b=N2sWlNPhFyngnugKEHFq+Gup79NaluFLgzEdsVbUFyWvm+ce6jmhloYJS8jbG9N+N1 3Che/G6Yzx2+1ToFVZuyIkM3Zi06EopkbFdXDH3e2DQf7VGB+umZhwAetOy0GT63FST7 3vc5eKcAkndHTQ1gils8Kds9n7fycARX5Fde53e/sb/I5gP2jcrp6+vM4//901REIGcX 5REqqAEeFFqNw5feJuvheB12RvYJAkwwnVV9y9r19bLDI4dT6Wt/JrVyGHVWSGrb49zL LXsKAlmS4cEGEGegjG8KcZG5gHMGY7zDoIFDTCNxBAWNhyMCAyI3Pp/svcKLTRgwBA/h 8UIQ== X-Gm-Message-State: ALoCoQmYFKqGjqFuA5gtz9KYj+wF9EZOA6WE6KssfW9uLmOQ326JONbYrRjA0ZIMIpFary9VyeqX X-Received: by 10.194.223.68 with SMTP id qs4mr11791135wjc.58.1422927148654; Mon, 02 Feb 2015 17:32:28 -0800 (PST) MIME-Version: 1.0 Received: by 10.194.30.99 with HTTP; Mon, 2 Feb 2015 17:31:58 -0800 (PST) In-Reply-To: <1422926216-15740-1-git-send-email-omair.javaid@linaro.org> References: <1422926216-15740-1-git-send-email-omair.javaid@linaro.org> From: Omair Javaid Date: Tue, 03 Feb 2015 01:32:00 -0000 Message-ID: Subject: Re: [PATCH v4 0/5] Process record and reverse debugging support on aarch64-linux To: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-02/txt/msg00042.txt.bz2 On 3 February 2015 at 06:16, Omair Javaid wrote: > This is another attempt to get these aarch64 record replay patches approved. > > These have been lingering since mid last year and I ll be very thankful if some of our maintainers can help me get them committed. > > I have added a couple of bug fixes which has improved the testsuite failure rate. > > Here are the fresh results from gdb.reverse testsuite ran on aarch64 hardware: > Remote & Native: # of expected passes 2319 # of unexpected failures 7 Forgot to add results in my previous email. > > Patch#1 NEWS entry about aarch64-linux record/replay support > has been previously posted and approved here: > https://sourceware.org/ml/gdb-patches/2014-06/msg00185.html > https://sourceware.org/ml/gdb-patches/2014-09/msg00611.html > > Patch#2 Implements aarch64 process record and reverse debugging support > has been discussed and updated in several iteration. Previous versions and > discussions can be found here: > https://sourceware.org/ml/gdb-patches/2014-10/msg00540.html > https://sourceware.org/ml/gdb-patches/2014-08/msg00662.html > > > Patch#3 Support for recording syscall on aarch64-linux > has been previously discussed and improved in this version too. > Previous discussions can be found here: > https://sourceware.org/ml/gdb-patches/2014-10/msg00541.html > > Patch#4 Support for recording aarch64 advanced SIMD instructions > has also been previously posted and discussed here: > https://sourceware.org/ml/gdb-patches/2014-10/msg00345.html > > Patch#5 Enables gdb.reverse testsuite for aarch64*-linux targets > is a pretty trivial patch to enable gdb testsuite. Its previously posted and discussed here: > https://sourceware.org/ml/gdb-patches/2014-06/msg00242.html > > Omair Javaid (5): > NEWS entry about aarch64-linux record/replay support > Implements aarch64 process record and reverse debugging support > Support for recording syscall on aarch64-linux > Support for recording aarch64 advanced SIMD instructions > Enables gdb.reverse testsuite for aarch64*-linux targets > > gdb/NEWS | 4 + > gdb/aarch64-linux-tdep.c | 917 ++++++++++++++++++++++++++++++++++++++++++++++ > gdb/aarch64-linux-tdep.h | 266 ++++++++++++++ > gdb/aarch64-tdep.c | 815 ++++++++++++++++++++++++++++++++++++++++ > gdb/aarch64-tdep.h | 6 + > gdb/configure.tgt | 2 +- > gdb/linux-record.h | 2 + > gdb/testsuite/lib/gdb.exp | 2 + > 8 files changed, 2013 insertions(+), 1 deletion(-) > > -- > 1.9.1 >