From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from loongson.cn (mail.loongson.cn [114.242.206.163]) by sourceware.org (Postfix) with ESMTP id BCA813858407 for ; Thu, 20 Jan 2022 00:50:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BCA813858407 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=loongson.cn Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=loongson.cn Received: from localhost.localdomain (unknown [111.18.94.40]) by mail.loongson.cn (Coremail) with SMTP id AQAAf9AxuuDIsehhEaoBAA--.6238S3; Thu, 20 Jan 2022 08:50:21 +0800 (CST) From: Tiezhu Yang To: gdb-patches@sourceware.org, Tom Tromey , Andrew Burgess Subject: [PATCH v2 1/5] gdb: LoongArch: Add initial target description support Date: Thu, 20 Jan 2022 08:50:07 +0800 Message-Id: <20220120005011.4531-2-yangtiezhu@loongson.cn> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20220120005011.4531-1-yangtiezhu@loongson.cn> References: <20220120005011.4531-1-yangtiezhu@loongson.cn> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CM-TRANSID: AQAAf9AxuuDIsehhEaoBAA--.6238S3 X-Coremail-Antispam: 1UD129KBjvAXoWfWF4UtFy8GFWfJrWxuFyDWrg_yoW8urWUCo Z3WFWaqF1fCrZ5CF1Svrn8GFW0qr17AFs3Wa47WFyqkFs7Ja1rGF10grnFyFyftrs5ua4U A3yIy3s7CrZrZa1rn29KB7ZKAUJUUUUU529EdanIXcx71UUUUU7v73VFW2AGmfu7bjvjm3 AaLaJ3UjIYCTnIWjp_UUUYk7k0a2IF6w4kM7kC6x804xWl14x267AKxVW8JVW5JwAFc2x0 x2IEx4CE42xK8VAvwI8IcIk0rVWrJVCq3wAFIxvE14AKwVWUJVWUGwA2048vs2IY020E87 I2jVAFwI0_Jr4l82xGYIkIc2x26xkF7I0E14v26r1Y6r1xM28lY4IEw2IIxxk0rwA2F7IY 1VAKz4vEj48ve4kI8wA2z4x0Y4vE2Ix0cI8IcVAFwI0_Gr0_Xr1l84ACjcxK6xIIjxv20x vEc7CjxVAFwI0_Gr0_Cr1l84ACjcxK6I8E87Iv67AKxVWxJr0_GcWl84ACjcxK6I8E87Iv 6xkF7I0E14v26F4UJVW0owAS0I0E0xvYzxvE52x082IY62kv0487Mc02F40EFcxC0VAKzV Aqx4xG6I80ewAv7VC0I7IYx2IY67AKxVWUJVWUGwAv7VC2z280aVAFwI0_Jr0_Gr1lOx8S 6xCaFVCjc4AY6r1j6r4UM4x0Y48IcxkI7VAKI48JMxAIw28IcxkI7VAKI48JMxC20s026x CaFVCjc4AY6r1j6r4UMI8I3I0E5I8CrVAFwI0_Jr0_Jr4lx2IqxVCjr7xvwVAFwI0_JrI_ JrWlx4CE17CEb7AF67AKxVWUXVWUAwCIc40Y0x0EwIxGrwCI42IY6xIIjxv20xvE14v26r 1j6r1xMIIF0xvE2Ix0cI8IcVCY1x0267AKxVWUJVW8JwCI42IY6xAIw20EY4v20xvaj40_ Jr0_JF4lIxAIcVC2z280aVAFwI0_Jr0_Gr1lIxAIcVC2z280aVCY1x0267AKxVWUJVW8Jb IYCTnIWIevJa73UjIFyTuYvjxUgjYLDUUUU X-CM-SenderInfo: p1dqw3xlh2x3gn0dqz5rrqw2lrqou0/ X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, KAM_SHORT, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2022 00:50:28 -0000 This commit adds initial target description support for LoongArch. Signed-off-by: Zhensong Liu Signed-off-by: Qing zhang Signed-off-by: Youling Tang Signed-off-by: Tiezhu Yang --- gdb/arch/loongarch.c | 88 +++++++++++++++++++++++++++++++ gdb/arch/loongarch.h | 73 +++++++++++++++++++++++++ gdb/doc/gdb.texinfo | 10 ++++ gdb/features/loongarch/base32.c | 47 +++++++++++++++++ gdb/features/loongarch/base32.xml | 44 ++++++++++++++++ gdb/features/loongarch/base64.c | 47 +++++++++++++++++ gdb/features/loongarch/base64.xml | 44 ++++++++++++++++ 7 files changed, 353 insertions(+) create mode 100644 gdb/arch/loongarch.c create mode 100644 gdb/arch/loongarch.h create mode 100644 gdb/features/loongarch/base32.c create mode 100644 gdb/features/loongarch/base32.xml create mode 100644 gdb/features/loongarch/base64.c create mode 100644 gdb/features/loongarch/base64.xml diff --git a/gdb/arch/loongarch.c b/gdb/arch/loongarch.c new file mode 100644 index 00000000000..934f6e489c5 --- /dev/null +++ b/gdb/arch/loongarch.c @@ -0,0 +1,88 @@ +/* Copyright (C) 2022 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#include "gdbsupport/common-defs.h" +#include "loongarch.h" +#include +#include + +/* Target description features. */ + +#include "../features/loongarch/base32.c" +#include "../features/loongarch/base64.c" + +static target_desc_up +loongarch_create_target_description (const struct loongarch_gdbarch_features features) +{ + /* Now we should create a new target description. */ + target_desc_up tdesc = allocate_target_description (); + + std::string arch_name = "loongarch"; + + if (features.xlen == 4) + arch_name.append ("32"); + else if (features.xlen == 8) + arch_name.append ("64"); + + set_tdesc_architecture (tdesc.get (), arch_name.c_str ()); + + long regnum = 0; + + /* For now we only support creating 32-bit or 64-bit x-registers. */ + if (features.xlen == 4) + regnum = create_feature_loongarch_base32 (tdesc.get (), regnum); + else if (features.xlen == 8) + regnum = create_feature_loongarch_base64 (tdesc.get (), regnum); + + return tdesc; +} + +/* Wrapper used by std::unordered_map to generate hash for feature set. */ +struct loongarch_gdbarch_features_hasher +{ + std::size_t + operator() (const loongarch_gdbarch_features &features) const noexcept + { + return features.hash (); + } +}; + +/* Cache of previously seen target descriptions, indexed by the feature set + that created them. */ +static std::unordered_map loongarch_tdesc_cache; + +const target_desc * +loongarch_lookup_target_description (const struct loongarch_gdbarch_features features) +{ + /* Lookup in the cache. If we find it then return the pointer out of + the target_desc_up (which is a unique_ptr). This is safe as the + loongarch_tdesc_cache will exist until GDB exits. */ + const auto it = loongarch_tdesc_cache.find (features); + if (it != loongarch_tdesc_cache.end ()) + return it->second.get (); + + target_desc_up tdesc (loongarch_create_target_description (features)); + + /* Add to the cache, and return a pointer borrowed from the + target_desc_up. This is safe as the cache (and the pointers + contained within it) are not deleted until GDB exits. */ + target_desc *ptr = tdesc.get (); + loongarch_tdesc_cache.emplace (features, std::move (tdesc)); + return ptr; +} diff --git a/gdb/arch/loongarch.h b/gdb/arch/loongarch.h new file mode 100644 index 00000000000..9e10df967d1 --- /dev/null +++ b/gdb/arch/loongarch.h @@ -0,0 +1,73 @@ +/* Common target-dependent functionality for LoongArch + + Copyright (C) 2022 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef ARCH_LOONGARCH_H +#define ARCH_LOONGARCH_H + +#include "gdbsupport/tdesc.h" + +/* The set of LoongArch architectural features that we track that impact how + we configure the actual gdbarch instance. We hold one of these in the + gdbarch_tdep structure, and use it to distinguish between different + LoongArch gdbarch instances. + + The information in here ideally comes from the target description, + however, if the target doesn't provide a target description then we will + create a default target description by first populating one of these + based on what we know about the binary being executed, and using that to + drive default target description creation. */ + +struct loongarch_gdbarch_features +{ + /* The size of the x-registers in bytes. This is either 4 (loongarch32) + or 8 (loongarch64). No other value is valid. Initialise to the invalid + 0 value so we can spot if one of these is used uninitialised. */ + int xlen = 0; + + /* Equality operator. */ + bool operator== (const struct loongarch_gdbarch_features &rhs) const + { + return (xlen == rhs.xlen); + } + + /* Inequality operator. */ + bool operator!= (const struct loongarch_gdbarch_features &rhs) const + { + return !((*this) == rhs); + } + + /* Used by std::unordered_map to hash feature sets. */ + std::size_t hash () const noexcept + { + std::size_t val = (xlen & 0x1f) << 5; + return val; + } +}; + +/* Lookup an already existing target description matching FEATURES, or + create a new target description if this is the first time we have seen + FEATURES. For the same FEATURES the same target_desc is always + returned. This is important when trying to lookup gdbarch objects as + GDBARCH_LIST_LOOKUP_BY_INFO performs a pointer comparison on target + descriptions to find candidate gdbarch objects. */ + +const target_desc *loongarch_lookup_target_description + (const struct loongarch_gdbarch_features features); + +#endif /* ARCH_LOONGARCH_H */ diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index fe81687a66c..2ef0368127b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -46223,6 +46223,7 @@ registers using the capitalization used in the description. * ARC Features:: * ARM Features:: * i386 Features:: +* LoongArch Features:: * MicroBlaze Features:: * MIPS Features:: * M68K Features:: @@ -46451,6 +46452,15 @@ The @samp{org.gnu.gdb.i386.pkeys} feature is optional. It should describe a single register, @samp{pkru}. It is a 32-bit register valid for i386 and amd64. +@node LoongArch Features +@subsection LoongArch Features +@cindex target descriptions, LoongArch Features + +The @samp{org.gnu.gdb.loongarch.base} feature is required for LoongArch +targets. It should contain the registers @samp{r0} through @samp{r31}, +@samp{pc}, and @samp{badv}. Either the architectural names (@samp{r0}, +@samp{r1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra}, etc). + @node MicroBlaze Features @subsection MicroBlaze Features @cindex target descriptions, MicroBlaze features diff --git a/gdb/features/loongarch/base32.c b/gdb/features/loongarch/base32.c new file mode 100644 index 00000000000..7105c152aed --- /dev/null +++ b/gdb/features/loongarch/base32.c @@ -0,0 +1,47 @@ +/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro: + Original: base32.xml */ + +#include "gdbsupport/tdesc.h" + +static int +create_feature_loongarch_base32 (struct target_desc *result, long regnum) +{ + struct tdesc_feature *feature; + + feature = tdesc_create_feature (result, "org.gnu.gdb.loongarch.base"); + tdesc_create_reg (feature, "r0", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r1", regnum++, 1, "general", 32, "code_ptr"); + tdesc_create_reg (feature, "r2", regnum++, 1, "general", 32, "data_ptr"); + tdesc_create_reg (feature, "r3", regnum++, 1, "general", 32, "data_ptr"); + tdesc_create_reg (feature, "r4", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r5", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r6", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r7", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r8", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r9", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r10", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r11", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r12", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r13", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r14", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r15", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r16", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r17", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r18", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r19", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r20", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r21", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r22", regnum++, 1, "general", 32, "data_ptr"); + tdesc_create_reg (feature, "r23", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r24", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r25", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r26", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r27", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r28", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r29", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r30", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "r31", regnum++, 1, "general", 32, "uint32"); + tdesc_create_reg (feature, "pc", regnum++, 1, "general", 32, "code_ptr"); + tdesc_create_reg (feature, "badv", regnum++, 1, "general", 32, "code_ptr"); + return regnum; +} diff --git a/gdb/features/loongarch/base32.xml b/gdb/features/loongarch/base32.xml new file mode 100644 index 00000000000..5b00f8a8d37 --- /dev/null +++ b/gdb/features/loongarch/base32.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gdb/features/loongarch/base64.c b/gdb/features/loongarch/base64.c new file mode 100644 index 00000000000..63eee024554 --- /dev/null +++ b/gdb/features/loongarch/base64.c @@ -0,0 +1,47 @@ +/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro: + Original: base64.xml */ + +#include "gdbsupport/tdesc.h" + +static int +create_feature_loongarch_base64 (struct target_desc *result, long regnum) +{ + struct tdesc_feature *feature; + + feature = tdesc_create_feature (result, "org.gnu.gdb.loongarch.base"); + tdesc_create_reg (feature, "r0", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r1", regnum++, 1, "general", 64, "code_ptr"); + tdesc_create_reg (feature, "r2", regnum++, 1, "general", 64, "data_ptr"); + tdesc_create_reg (feature, "r3", regnum++, 1, "general", 64, "data_ptr"); + tdesc_create_reg (feature, "r4", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r5", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r6", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r7", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r8", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r9", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r10", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r11", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r12", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r13", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r14", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r15", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r16", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r17", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r18", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r19", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r20", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r21", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r22", regnum++, 1, "general", 64, "data_ptr"); + tdesc_create_reg (feature, "r23", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r24", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r25", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r26", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r27", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r28", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r29", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r30", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "r31", regnum++, 1, "general", 64, "uint64"); + tdesc_create_reg (feature, "pc", regnum++, 1, "general", 64, "code_ptr"); + tdesc_create_reg (feature, "badv", regnum++, 1, "general", 64, "code_ptr"); + return regnum; +} diff --git a/gdb/features/loongarch/base64.xml b/gdb/features/loongarch/base64.xml new file mode 100644 index 00000000000..bef91e50dd7 --- /dev/null +++ b/gdb/features/loongarch/base64.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.27.0