From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5980 invoked by alias); 23 Jun 2014 10:41:07 -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 5960 invoked by uid 89); 23 Jun 2014 10:41:06 -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-f172.google.com Received: from mail-wi0-f172.google.com (HELO mail-wi0-f172.google.com) (209.85.212.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 23 Jun 2014 10:40:36 +0000 Received: by mail-wi0-f172.google.com with SMTP id hi2so3965340wib.17 for ; Mon, 23 Jun 2014 03:40:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=8HYv65W3WWlfoG4XgEV64B7kGV6DmHjOBroeXwgOZvI=; b=F/C+dlfI96/vKk1bHGgy9/m7SKDS04phju4tjLrgsxYNv5GZqF0DUT+gX6Oe/Okncj VrBOvUS0gw4lcoKHBTEYHel0li6aCDZ6/7HXtVAxg6Wy4GojQg4V/+0nfF+B0TqmNXM3 SDXKPJaPsjCAb4C8MmSxRhpQF3/KG9PwkVOfdA0mmYq7kINTyLZvs01cKn1aRirUvb+c hxhFZz1eaYJ60qqmH9k6RK6htUJNDfMUa34blkC1CE1ss+Td2LwlKkLQ4x3DF/w40Re7 S3OPnzcEVAX+3DdHT/THVSHe0rPj2GD43JvBSlnTBSJVL1inaZW14lni999d0wqnxkj5 BvbQ== X-Gm-Message-State: ALoCoQnzlI5G+ush+4Y08uox4fWFqEsQJw7T97R93ZG0K9Mtgo262byUxhw8rrX0kz2UjKw+QuXD X-Received: by 10.194.175.106 with SMTP id bz10mr3966692wjc.96.1403520031155; Mon, 23 Jun 2014 03:40:31 -0700 (PDT) Received: from [192.168.1.2] ([182.185.161.168]) by mx.google.com with ESMTPSA id wp6sm25270973wjb.9.2014.06.23.03.40.28 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 23 Jun 2014 03:40:30 -0700 (PDT) Message-ID: <53A8041A.50207@linaro.org> Date: Mon, 23 Jun 2014 10:41:00 -0000 From: Omair Javaid User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Omair Javaid CC: gdb-patches@sourceware.org Subject: Re: [PATCH 0/7] Process record and reverse debugging support on aarch64-linux References: <1401898871-2270-1-git-send-email-omair.javaid@linaro.org> In-Reply-To: <1401898871-2270-1-git-send-email-omair.javaid@linaro.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00804.txt.bz2 On Wed 04 Jun 2014 09:21:04 PM PKT, Omair Javaid wrote: > Hi, > This patch series adds gdb process record-replay and reverse debugging > support for aarch64*-linux* targets. > > These patches have been tested on aarch64 foundation model as well as hardware > board in native and remote configurations. > > gdb.reverse Testsuite Results > > (AARCH64-Native Configuration) > gdb.reverse testsuite: 2273 Pass 51 failures > > (AARCH64-Remote Configuration) > gdb.reverse testsuite: 2273 Pass 51 failures > > Omair Javaid (7): > NEWS entry about aarch64-linux record/replay support > Fixes aarch64-linux gdb core file support > Enable gdb process record on aarch64-linux targets > Implements aarch64 process record and reverse debugging support > Support for recording syscall on aarch64-linux > support for recording aarch64 advance simd instructions > Enables gdb.reverse testsuite for aarch64*-linux targets > > gdb/NEWS | 4 + > gdb/aarch64-linux-nat.c | 4 +- > gdb/aarch64-linux-tdep.c | 1018 +++++++++++++++++++++++++++++++++++++++++++-- > gdb/aarch64-linux-tdep.h | 288 ++++++++++++- > gdb/aarch64-tdep.c | 753 +++++++++++++++++++++++++++++++++ > gdb/aarch64-tdep.h | 68 +++ > gdb/configure.tgt | 2 +- > gdb/testsuite/lib/gdb.exp | 8 +- > 8 files changed, 2106 insertions(+), 39 deletions(-) > Ping! Are there any further comments to these patches?