From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 117438 invoked by alias); 2 May 2017 14:40:24 -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 117425 invoked by uid 89); 2 May 2017 14:40:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-spam-relays-external:74.125.82.67, H*RU:74.125.82.67, Hx-languages-length:828 X-HELO: mail-wm0-f67.google.com Received: from mail-wm0-f67.google.com (HELO mail-wm0-f67.google.com) (74.125.82.67) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 02 May 2017 14:40:22 +0000 Received: by mail-wm0-f67.google.com with SMTP id d79so5119282wmi.2 for ; Tue, 02 May 2017 07:40:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=IdehKADbUI25c4MPhBjulWvt8LPPiElE6uEGDerkR70=; b=KauoYFVf4sVSX90Bqw1PwYWe4a0BMpTeJ5tJVF4Lu+4jqDXdMuKkmPNneDs1Wn3vg4 b+vcJMxOR2EVp3S17B4SCFc68x6rJJYjlXQa81FrHdscDYg/phq2vNRwmLH5Dbr0DFvi cj3LUhwSdLommkjk7JRROngpG3BNOcXrEi3L3SSYuaxmP/EPF0fn7s/NeFBTr0IR0Q2N wv7N4azheozsDZ5HeIof4mKjqpABcxluPRd/hvTddKntrj8WFrtcwjpwGJwsYC74KZQn cFrD8QIIM+wFpQiUD2Pnhrrp3MXKt0pSTJRgnG+REgvujVxwE+3Dxx3OO6+Lh0OxTsKU ryPg== X-Gm-Message-State: AN3rC/7H1rcOtbd2x9AP47e8zdNSep+kaH+f+tWKEALhAyZ17qdzOx7m uU4D6zSBGDxsqA== X-Received: by 10.28.199.198 with SMTP id x189mr3220512wmf.95.1493736022894; Tue, 02 May 2017 07:40:22 -0700 (PDT) Received: from E107787-LIN ([194.214.185.158]) by smtp.gmail.com with ESMTPSA id y190sm1354622wmy.15.2017.05.02.07.40.21 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 02 May 2017 07:40:21 -0700 (PDT) From: Yao Qi To: Stafford Horne Cc: GDB patches , Openrisc , Franck Jullien Subject: Re: [PATCH v6 1/5] tdesc: handle arbitrary strings in tdesc_register_in_reggroup_p References: Date: Tue, 02 May 2017 14:40:00 -0000 In-Reply-To: (Stafford Horne's message of "Mon, 24 Apr 2017 21:52:50 +0900") Message-ID: <86r307725n.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00011.txt.bz2 Stafford Horne writes: > tdesc_register_in_reggroup_p in now able to handle arbitrary > groups. This is useful when groups are created while the > target descriptor file is received from the remote. > > This can be the case of a soft core target processor where > registers/groups can change. > > gdb/ChangeLog: > > 2013-02-15 Franck Jullien > > * target-descriptions.c (tdesc_register_in_reggroup_p): Support > arbitrary strings. I am not sure what do you want to change and why do you need this change? I didn't see it in the previous version. If you want to control what registers are displayed, you can follow the way nds32 used, see nds32-tdep.c:nds32_register_reggroup_p. --=20 Yao (=E9=BD=90=E5=B0=A7)