From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 72149 invoked by alias); 5 Sep 2017 09:04: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 72083 invoked by uid 89); 5 Sep 2017 09:04:33 -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=H*r:sk:static. X-HELO: mail-io0-f178.google.com Received: from mail-io0-f178.google.com (HELO mail-io0-f178.google.com) (209.85.223.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Sep 2017 09:04:23 +0000 Received: by mail-io0-f178.google.com with SMTP id i200so12903174ioa.2 for ; Tue, 05 Sep 2017 02:04:23 -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:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=Wdp84xtlXrit+1vRUe0JUI1UyAB4SuKSxJ7fOK4M2WU=; b=LwXyHGvcs2gxxVZ5O24LSUQH0AvW8tg7i9fwvk+DVfN7QFT1uuTiohAI5IsDR1+1B5 121eQUYNhFxyl0PZLUd8NYCT6CMfcCUw4Lsu07+pdkTpvm7hvDD+rAX7gmANgwT7TnfA 2On1YoT61F5rgj2Vdbnk/Dr7Czibns5DMDji27A17iw8xMQfbagMACZVbfqzKxpP0iN7 tWTblSidVj7GcpxIkut02/tS7XCRTM4jmavTgB+bQlvDSnK1kWGNcsJIS9JsinJX3GTh Vr9/wdZYVTFQkCgUhUZtBav1YshBTOQMPYSZd1BOeJ/F+l72VoF8HnHSnMN6fk/XR8Vg 9ZGA== X-Gm-Message-State: AHPjjUiBio4arXDElqVOZxL2UQf5ayV0Aq2MDilrN/6obhi1NLefTaZZ E1wBll9yfBJVI/dC X-Google-Smtp-Source: ADKCNb5iw/6viCKEBZjLBBW8OZxs0F0XGf42PLOoakktsLq3JKkvG0hv4FBhOuJAr8RAIOq4233YFQ== X-Received: by 10.107.97.12 with SMTP id v12mr3072151iob.148.1504602261614; Tue, 05 Sep 2017 02:04:21 -0700 (PDT) Received: from E107787-LIN (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id r186sm23538itb.40.2017.09.05.02.04.20 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 05 Sep 2017 02:04:21 -0700 (PDT) From: Yao Qi To: gdb-patches@sourceware.org Subject: Re: [PATCH 00/22 v4] Make GDB builtin target descriptions more flexible References: <1503329347-26711-1-git-send-email-yao.qi@linaro.org> Date: Tue, 05 Sep 2017 09:04:00 -0000 In-Reply-To: <1503329347-26711-1-git-send-email-yao.qi@linaro.org> (Yao Qi's message of "Mon, 21 Aug 2017 16:28:45 +0100") Message-ID: <86wp5dh5yn.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-09/txt/msg00077.txt.bz2 Yao Qi writes: > This patch series is to change GDB and GDBserver builtin target > descriptions more flexible, by removing pre-generated ones. Nowadays, > GDB builtin target descriptions are created from initialize_tdesc_* > functions in features/*.c files, while GDBserver builtin target > descriptions are generated from regformats/*.dat files. Instead, > with these patches applied, these builtin target descriptions can be > got lazily and dynamically. I regression tested them again yesterday and pushed them in. I'll start to convert other target descriptions. --=20 Yao (=E9=BD=90=E5=B0=A7)