From patchwork Wed Aug 22 08:41:57 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alan Hayward X-Patchwork-Id: 29002 Received: (qmail 72005 invoked by alias); 22 Aug 2018 08:42:09 -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 71969 invoked by uid 89); 22 Aug 2018 08:42:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.0 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, MIME_BASE64_BLANKS, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy=H*RU:sk:mail-ve, Hx-spam-relays-external:sk:mail-ve X-HELO: EUR01-VE1-obe.outbound.protection.outlook.com Received: from mail-ve1eur01on0042.outbound.protection.outlook.com (HELO EUR01-VE1-obe.outbound.protection.outlook.com) (104.47.1.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 22 Aug 2018 08:42:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=91O00d8G7WcWo3RBfLsP8kgaYf91kHaCYp1MJpgYh0k=; b=Hh1yncmvt833wrNyjAnmcSVmRq9RZFQOPtArd3psYQEyAiPIU+QcqZqxCYmbZHJiKheL15dh5+pLHvHfTeR2nzUtMloO/lo7JDXw3Js9bqQWa9uX2a8hW8bgxTz8elbhonbnVU1xBYyxHd3FKFIsKVgy/QvjHlkLEORclzmdKio= Received: from DB6PR0802MB2133.eurprd08.prod.outlook.com (10.172.226.148) by DB6PR0802MB2325.eurprd08.prod.outlook.com (10.172.228.17) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.1080.13; Wed, 22 Aug 2018 08:41:57 +0000 Received: from DB6PR0802MB2133.eurprd08.prod.outlook.com ([fe80::6c67:c822:7f7d:d62d]) by DB6PR0802MB2133.eurprd08.prod.outlook.com ([fe80::6c67:c822:7f7d:d62d%7]) with mapi id 15.20.1059.023; Wed, 22 Aug 2018 08:41:57 +0000 From: Alan Hayward To: GDB Patches CC: nd Subject: [OBV/Pushed] Aarch64 SVE VG is Vector Granule Date: Wed, 22 Aug 2018 08:41:57 +0000 Message-ID: authentication-results: spf=none (sender IP is ) smtp.mailfrom=Alan.Hayward@arm.com; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) Content-ID: <3F5B497E26CF4C40AB4E912E89716FE0@eurprd08.prod.outlook.com> MIME-Version: 1.0 X-IsSubscribed: yes ...not Vector Gradient. See: DWARF for the ARMĀ® 64-bit Architecture (AArch64) with SVE support diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cfb0751907..070547fd55 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2018-08-21 Alan Hayward + + * arch/aarch64.h (aarch64_regnum): Update comment. + 2018-08-21 Alan Hayward * NEWS: Add SVE to 8.2 section. diff --git a/gdb/arch/aarch64.h b/gdb/arch/aarch64.h index e344a36770..d6b88e6d56 100644 --- a/gdb/arch/aarch64.h +++ b/gdb/arch/aarch64.h @@ -49,7 +49,7 @@ enum aarch64_regnum AARCH64_SVE_P15_REGNUM = AARCH64_SVE_P0_REGNUM + 15, /* Last SVE predicate register. */ AARCH64_SVE_FFR_REGNUM, /* SVE First Fault Register. */ - AARCH64_SVE_VG_REGNUM, /* SVE Vector Gradient. */ + AARCH64_SVE_VG_REGNUM, /* SVE Vector Granule. */ /* Other useful registers. */ AARCH64_LAST_X_ARG_REGNUM = AARCH64_X0_REGNUM + 7, @@ -71,7 +71,7 @@ enum aarch64_regnum The number of bytes in an SVE Z register. VQ : Vector Quotient. The number of 128bit chunks in an SVE Z register. - VG : Vector Gradient. + VG : Vector Granule. The number of 64bit chunks in an SVE Z register. */ #define sve_vg_from_vl(vl) ((vl) / 8)