From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26447 invoked by alias); 2 Sep 2014 13:36: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 26421 invoked by uid 89); 2 Sep 2014 13:36:51 -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,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-vc0-f178.google.com Received: from mail-vc0-f178.google.com (HELO mail-vc0-f178.google.com) (209.85.220.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 02 Sep 2014 13:36:49 +0000 Received: by mail-vc0-f178.google.com with SMTP id la4so6859257vcb.23 for ; Tue, 02 Sep 2014 06:36:47 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.52.83.227 with SMTP id t3mr25522875vdy.20.1409665007133; Tue, 02 Sep 2014 06:36:47 -0700 (PDT) Received: by 10.52.253.33 with HTTP; Tue, 2 Sep 2014 06:36:47 -0700 (PDT) In-Reply-To: <1408690493-5243-1-git-send-email-catalin.udma@freescale.com> References: <1408690493-5243-1-git-send-email-catalin.udma@freescale.com> Date: Tue, 02 Sep 2014 13:36:00 -0000 Message-ID: Subject: Re: [PATCH v2] aarch64/gdbserver: fix floating point registers display From: Marcus Shawcroft To: Catalin Udma Cc: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00049.txt.bz2 On 22 August 2014 07:54, Catalin Udma wrote: > When using aarch64 gdb with gdbserver, floating point registers are > not correctly displayed, as below: > (gdb) info registers fpsr fpcr > fpsr > fpcr > > To fix these problems, the missing fpsr and fpcr registers are added > when floating point registers are read/write > > gdb/gdbserver/ > 2014-08-12 Catalin Udma > > * linux-aarch64-low.c (AARCH64_FPSR_REGNO): New define. > (AARCH64_FPCR_REGNO): Likewise. > (AARCH64_NUM_REGS): Update to include fpsr/fpcr registers. > (aarch64_fill_fpregset): Add missing fpsr/fpcr registers. > (aarch64_store_fpregset): Likewise. Does this version of the patch assume that https://sourceware.org/ml/gdb-patches/2013-12/msg00720.html has been reverted? Cheers /Marcus