From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28359 invoked by alias); 5 Jun 2014 17:09:25 -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 28338 invoked by uid 89); 5 Jun 2014 17:09:24 -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-f41.google.com Received: from mail-oa0-f41.google.com (HELO mail-oa0-f41.google.com) (209.85.219.41) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 05 Jun 2014 17:09:20 +0000 Received: by mail-oa0-f41.google.com with SMTP id m1so1474435oag.14 for ; Thu, 05 Jun 2014 10:09:18 -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:cc:content-type; bh=MyyfvzBjfIflfstT3rty3yAAhJPks/LaNpZx3fwpAVo=; b=Z2rBeGi9qQ7DNEyNueoNcdoZ1ZAqIPn+3Z9TOl74FXmyzXKcVJ11cZ9dpndzZpsRzu M+PRqga4/Rd8r2j8NEiJzPM2oPAXa9LgPaymmZUB5PZ5rU1wBz+gmfrODMgJQX5cLpJz DPfIZfArGY/zdaBGB2fy6VW0OjSzRcZQ5fXqmrk1jRnn8M4d2/zax7Y5MwDkraZDis9N I98Awmn49jTv3huEwrw0rMF+9yIIIiba7f+Qyi8QxWpyB1TwYfzcz8vJ7+oLzAgxz5T0 kMD7JiQXl0bBZeNLT6oNOH2mQHZZqZW/rCY+PIj+SWbjk/t5j3UnT9Y/ZztGJ4rO68o3 UWYA== X-Gm-Message-State: ALoCoQlNhia4w7YFwcqI5yQ46FFTSW4sQE186t0uiXmvm1HELUgu8P9zjeEhX8CzMZq2M/isez2a X-Received: by 10.182.219.166 with SMTP id pp6mr22020260obc.65.1401988158337; Thu, 05 Jun 2014 10:09:18 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.211.36 with HTTP; Thu, 5 Jun 2014 10:08:58 -0700 (PDT) In-Reply-To: <87y4xc4n2c.fsf@br87z6lw.de.ibm.com> References: <1401898871-2270-1-git-send-email-omair.javaid@linaro.org> <1401898871-2270-3-git-send-email-omair.javaid@linaro.org> <87y4xc4n2c.fsf@br87z6lw.de.ibm.com> From: Omair Javaid Date: Thu, 05 Jun 2014 17:09:00 -0000 Message-ID: Subject: Re: [PATCH 2/7] Fixes for aarch64-linux gdb core file support To: Andreas Arnez Cc: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00276.txt.bz2 On 4 June 2014 22:11, Andreas Arnez wrote: > On Wed, Jun 04 2014, Omair Javaid wrote: > >> This patch fixes aarch64 linux core file support by adding/updating >> aarch64-linux supply/collect methods for aarch64 register set. > > Have you looked at that patch? > > https://sourceware.org/ml/gdb-patches/2014-05/msg00637.html > > Apart from 'core_regset_sections', I believe it provides the same > functionality as this patch, right? > Agreed!. I wrote this patch when I started work on aarch64 record replay in april and corefile support wasnt working. I guess once regset rework patches gets pushed then we may have to rework this patch to extract corefile related changes only. Thanks Andreas for bringing this up.