From patchwork Mon Oct 16 08:16:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 23599 Received: (qmail 122065 invoked by alias); 16 Oct 2017 08:16:31 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 122041 invoked by uid 89); 16 Oct 2017 08:16:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.6 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=ham version=3.3.2 spammy=a13, A13, WHICH, HX-Received:Mon X-HELO: mail-wm0-f47.google.com Received: from mail-wm0-f47.google.com (HELO mail-wm0-f47.google.com) (74.125.82.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 16 Oct 2017 08:16:28 +0000 Received: by mail-wm0-f47.google.com with SMTP id q132so490135wmd.2 for ; Mon, 16 Oct 2017 01:16:19 -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:date:message-id; bh=ic97KBYhhLPBYJWvsgaceWjNmg1koEXhXqexwc04U78=; b=DAKr/cymt9eijhrHuQDIK/Hos5VTIQeVKeyWj4eFGbJAouGNE/EB64flt6jmWSkaiB XTUI2IXkEqCj3PlcA2GHAgKMa3ZgYDY5nyDcHEdXAHUidyyLnlKhW8RTQhnIjWNJj9rh Nnt1mUYggrGNXHKpC6kqTtrgosptMGnw+QlxuJ2YJoEyMEyiMpb8FCYUT8gqxMfElF1r o2E/NY7OjxZkwzZlGyA46tEcY90aeKf78p5p4GoKHtr/MUysB9d5hHut+ceQXhcRH0MA xEcXP5naGMmOGu9Khjs/30T8dd+QxvC3cNfNPOpq4ygOk2ySK6qc+ApwJxAkoXG4eQ7L FlKQ== X-Gm-Message-State: AMCzsaVpxYQztYF8xFQ0sV8idHURIY1xkT7YuOXbVd0lrYQ8K7EiG28j 9+Y8bstjCsYgUqoqWtKPBqKemw== X-Google-Smtp-Source: AOwi7QAAvCmRFjn6i7YiC2UyAq699PBcAiuqNm51gnRMH2NPwCOGJV4rl37bZkn4JMan4eBvb0tcRw== X-Received: by 10.223.171.69 with SMTP id r5mr7432282wrc.112.1508141777404; Mon, 16 Oct 2017 01:16:17 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id u96sm11962876wrc.68.2017.10.16.01.16.16 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 16 Oct 2017 01:16:16 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH OBV] Remove regformats/tic6x-{c62x,c64x,c64xp}.dat Date: Mon, 16 Oct 2017 09:16:10 +0100 Message-Id: <1508141770-26640-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes tic6x-uclinux GDBserver uses linux target descriptions, instead of these non-linux target descriptions. So we can remove these *.dat files. gdb: 2017-10-16 Yao Qi * features/Makefile (WHICH): Remove tic6x-c64xp, tic6x-c64x tic6x-c62x. * regformats/tic6x-c62x.dat: Remove. * regformats/tic6x-c64x.dat: Remove. * regformats/tic6x-c64xp.dat: Remove. --- gdb/ChangeLog | 8 +++++ gdb/features/Makefile | 1 - gdb/regformats/tic6x-c62x.dat | 39 ---------------------- gdb/regformats/tic6x-c64x.dat | 71 ---------------------------------------- gdb/regformats/tic6x-c64xp.dat | 74 ------------------------------------------ 5 files changed, 8 insertions(+), 185 deletions(-) delete mode 100644 gdb/regformats/tic6x-c62x.dat delete mode 100644 gdb/regformats/tic6x-c64x.dat delete mode 100644 gdb/regformats/tic6x-c64xp.dat diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4ad642a..2d7a978 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2017-10-16 Yao Qi + + * features/Makefile (WHICH): Remove tic6x-c64xp, tic6x-c64x + tic6x-c62x. + * regformats/tic6x-c62x.dat: Remove. + * regformats/tic6x-c64x.dat: Remove. + * regformats/tic6x-c64xp.dat: Remove. + 2017-10-15 Simon Marchi * tracepoint.c (parse_traceframe_info): Return a unique_ptr diff --git a/gdb/features/Makefile b/gdb/features/Makefile index fb9e8dd..a2d39aa 100644 --- a/gdb/features/Makefile +++ b/gdb/features/Makefile @@ -79,7 +79,6 @@ WHICH = aarch64 \ s390-te-linux64 s390x-te-linux64 s390-vx-linux64 s390x-vx-linux64 \ s390-tevx-linux64 s390x-tevx-linux64 \ s390-gs-linux64 s390x-gs-linux64 \ - tic6x-c64xp tic6x-c64x tic6x-c62x \ tic6x-c64xp-linux tic6x-c64x-linux tic6x-c62x-linux # Record which registers should be sent to GDB by default after stop. diff --git a/gdb/regformats/tic6x-c62x.dat b/gdb/regformats/tic6x-c62x.dat deleted file mode 100644 index 0b62f0c..0000000 --- a/gdb/regformats/tic6x-c62x.dat +++ /dev/null @@ -1,39 +0,0 @@ -# THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi :set ro: -# Generated from: tic6x-c62x.xml -name:tic6x_c62x -xmltarget:tic6x-c62x.xml -expedite:A15,PC -32:A0 -32:A1 -32:A2 -32:A3 -32:A4 -32:A5 -32:A6 -32:A7 -32:A8 -32:A9 -32:A10 -32:A11 -32:A12 -32:A13 -32:A14 -32:A15 -32:B0 -32:B1 -32:B2 -32:B3 -32:B4 -32:B5 -32:B6 -32:B7 -32:B8 -32:B9 -32:B10 -32:B11 -32:B12 -32:B13 -32:B14 -32:B15 -32:CSR -32:PC diff --git a/gdb/regformats/tic6x-c64x.dat b/gdb/regformats/tic6x-c64x.dat deleted file mode 100644 index e862a39..0000000 --- a/gdb/regformats/tic6x-c64x.dat +++ /dev/null @@ -1,71 +0,0 @@ -# THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi :set ro: -# Generated from: tic6x-c64x.xml -name:tic6x_c64x -xmltarget:tic6x-c64x.xml -expedite:A15,PC -32:A0 -32:A1 -32:A2 -32:A3 -32:A4 -32:A5 -32:A6 -32:A7 -32:A8 -32:A9 -32:A10 -32:A11 -32:A12 -32:A13 -32:A14 -32:A15 -32:B0 -32:B1 -32:B2 -32:B3 -32:B4 -32:B5 -32:B6 -32:B7 -32:B8 -32:B9 -32:B10 -32:B11 -32:B12 -32:B13 -32:B14 -32:B15 -32:CSR -32:PC -32:A16 -32:A17 -32:A18 -32:A19 -32:A20 -32:A21 -32:A22 -32:A23 -32:A24 -32:A25 -32:A26 -32:A27 -32:A28 -32:A29 -32:A30 -32:A31 -32:B16 -32:B17 -32:B18 -32:B19 -32:B20 -32:B21 -32:B22 -32:B23 -32:B24 -32:B25 -32:B26 -32:B27 -32:B28 -32:B29 -32:B30 -32:B31 diff --git a/gdb/regformats/tic6x-c64xp.dat b/gdb/regformats/tic6x-c64xp.dat deleted file mode 100644 index f37b5ea..0000000 --- a/gdb/regformats/tic6x-c64xp.dat +++ /dev/null @@ -1,74 +0,0 @@ -# THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi :set ro: -# Generated from: tic6x-c64xp.xml -name:tic6x_c64xp -xmltarget:tic6x-c64xp.xml -expedite:A15,PC -32:A0 -32:A1 -32:A2 -32:A3 -32:A4 -32:A5 -32:A6 -32:A7 -32:A8 -32:A9 -32:A10 -32:A11 -32:A12 -32:A13 -32:A14 -32:A15 -32:B0 -32:B1 -32:B2 -32:B3 -32:B4 -32:B5 -32:B6 -32:B7 -32:B8 -32:B9 -32:B10 -32:B11 -32:B12 -32:B13 -32:B14 -32:B15 -32:CSR -32:PC -32:A16 -32:A17 -32:A18 -32:A19 -32:A20 -32:A21 -32:A22 -32:A23 -32:A24 -32:A25 -32:A26 -32:A27 -32:A28 -32:A29 -32:A30 -32:A31 -32:B16 -32:B17 -32:B18 -32:B19 -32:B20 -32:B21 -32:B22 -32:B23 -32:B24 -32:B25 -32:B26 -32:B27 -32:B28 -32:B29 -32:B30 -32:B31 -32:TSR -32:ILC -32:RILC