From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-x134.google.com (mail-lf1-x134.google.com [IPv6:2a00:1450:4864:20::134]) by sourceware.org (Postfix) with ESMTPS id 91F0C385734E for ; Tue, 21 Jun 2022 11:53:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 91F0C385734E Received: by mail-lf1-x134.google.com with SMTP id t25so21917104lfg.7 for ; Tue, 21 Jun 2022 04:53:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:sender:from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; bh=Ee73hrAvotbxU07t0Eu217uvh4gUr7W4KcXzmcNm3ro=; b=il6+zHj2LT61WvAGfU+xG3jE/wU7CwdBNP/eEc9w5MAtUCWlGHNT0DzJOF2x9gdbTW Pj0Z365049KKr+ddEODE/Ckj1FkcWfk2xAOn6Wpvq6bXp6azHkzpGIUVhb3uDCFZTyW5 P5wIEFExqxQlOl4YFmuB51tYJ5O1jCVTt5BvVeyZEUEC8roLvIhzXFrqhfmU4GqEiy90 gGljFJpoPNTiUX9g4CIuzB7hyLFE6Mn1d80CJzX9zk9X3ahoS6IgcjNIB45Gke6GM/vC 82gOiOy506qhaUfRrXE9zPW+GDHPNhNUbOhnztUBgVoflnUFAKMOQtZ6TYg88zQbv074 UqZA== X-Gm-Message-State: AJIora94waaBbLcLar44G7sT9/QHXQmSM6a9ftWetZBeaE+N9rx4nhYT cCSzrAcGqLvY5dvDvpMEdr1B5EqBKQc= X-Google-Smtp-Source: AGRyM1uq2UguZhqkyb5QxFJ/ztMiqQo3AQ+bPSrPqBWLjwDjHjri+XeNTzX27p86DA7Lvb3epWa9tw== X-Received: by 2002:a05:6512:110b:b0:478:fc31:ed31 with SMTP id l11-20020a056512110b00b00478fc31ed31mr16516435lfg.437.1655812382835; Tue, 21 Jun 2022 04:53:02 -0700 (PDT) Received: from localhost.localdomain (broadband-188-32-220-156.ip.moscow.rt.ru. [188.32.220.156]) by smtp.gmail.com with ESMTPSA id t7-20020a19dc07000000b00478fe3327aasm2128769lfg.217.2022.06.21.04.53.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 21 Jun 2022 04:53:02 -0700 (PDT) Sender: Dmitry Selyutin From: Dmitry Selyutin To: binutils@sourceware.org Cc: Alan Modra , Luke Kenneth Casson Leighton , Dmitry Selyutin Subject: [PATCH v2 0/5] ppc/svp64: support SVP64 and its first insns Date: Tue, 21 Jun 2022 14:51:10 +0300 Message-Id: <20220621115115.1068453-1-ghostmansd@gmail.com> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220617190820.452821-1-ghostmansd@gmail.com> References: <20220617190820.452821-1-ghostmansd@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2022 11:53:06 -0000 Changes since v1: - Aliased instruction fields now appear after the original ones. Dmitry Selyutin (5): ppc/svp64: support LibreSOC architecture ppc/svp64: support setvl instructions ppc/svp64: support svstep instructions ppc/svp64: support svshape instruction ppc/svp64: support svremap instruction gas/config/tc-ppc.c | 2 + gas/testsuite/gas/ppc/ppc.exp | 5 + gas/testsuite/gas/ppc/setvl.d | 2408 +++++++ gas/testsuite/gas/ppc/setvl.s | 2400 +++++++ gas/testsuite/gas/ppc/svremap.d | 10248 ++++++++++++++++++++++++++++++ gas/testsuite/gas/ppc/svremap.s | 10240 +++++++++++++++++++++++++++++ gas/testsuite/gas/ppc/svshape.d | 1736 +++++ gas/testsuite/gas/ppc/svshape.s | 1728 +++++ gas/testsuite/gas/ppc/svstep.d | 128 + gas/testsuite/gas/ppc/svstep.s | 120 + include/opcode/ppc.h | 3 + opcodes/ppc-dis.c | 5 + opcodes/ppc-opc.c | 159 + 13 files changed, 29182 insertions(+) create mode 100644 gas/testsuite/gas/ppc/setvl.d create mode 100644 gas/testsuite/gas/ppc/setvl.s create mode 100644 gas/testsuite/gas/ppc/svremap.d create mode 100644 gas/testsuite/gas/ppc/svremap.s create mode 100644 gas/testsuite/gas/ppc/svshape.d create mode 100644 gas/testsuite/gas/ppc/svshape.s create mode 100644 gas/testsuite/gas/ppc/svstep.d create mode 100644 gas/testsuite/gas/ppc/svstep.s -- 2.36.1